修改ObjectDataProvider

时间:2014-08-06 16:38:31

标签: c# wpf xaml user-controls objectdataprovider

我有一个应用程序,我正在使用ObjectDataProvider(App.xaml):

<Application x:Class="Example.App"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         xmlns:src="clr-namespace:Example.Settings"
         StartupUri="MainWindow.xaml"
         Startup="Application_Startup"
         DispatcherUnhandledException="ApplicationDispatcherUnhandledException">
<Application.Resources>
    <ObjectDataProvider x:Key="odpSettings" ObjectType="{x:Type src:AppSettings}"/>
</Application.Resources>

我的课程是:

class AppSettings : INotifyPropertyChanged
{
    public AppSettings()
    {

    }

    Color itemColor = Colors.Crimson;

public Color ItemColor
    {
        get
        {
            return itemColor;
        }
        set
        {
            if (itemColor == value)
                return;

            itemColor = value;

            this.OnPropertyChanged("ItemColor");
        }
    }

public event PropertyChangedEventHandler PropertyChanged;

    protected void OnPropertyChanged(string propertyName)
    {
        if (this.PropertyChanged != null)
        {
            this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
        }
    }   

}

然后我有一个userControl我正在使用那种颜色,例如:

<Border Background="{Binding Source={StaticResource odpSettings}, 
                             Path=ItemColor,Mode=TwoWay}" />

我将UserControl添加到我的MainWindow,我有一个ColorPicker控件,我想修改UserControl的Border Background颜色并选择ColorPicker颜色。

我试过这样的事情:

AppSettings objSettings = new AppSettings();
objSettings.ItemColor = colorPicker.SelectedColor;

当我使用ColorPicker更改颜色时,UserControl中的颜色不会改变,我想这是因为我正在创建AppSettings类的新实例。

有没有办法完成我想要做的事情?

提前致谢。

阿尔贝托

1 个答案:

答案 0 :(得分:0)

感谢您的评论,我使用了下一个代码:

AppSettings objSettings = (AppSettings)((ObjectDataProvider)Application.Current.FindResource("odpSettings")).ObjectInstance;

这样我就可以访问和修改属性ItemColor的值。

我还将属性类型更改为SolidColorBrush。

objSettings.ItemColor = new SolidColorBrush(colorPicker.SelectedColor);