5

我在我的 xaml 中定义了一个资源:

<core:WidgetBase xmlns:sdk="http://schemas.microsoft.com/winfx/2006/xaml/presentation/sdk"  x:Class="....Silverlight.LiquidityConstraintsView"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:core="clr-namespace:...Silverlight;assembly=....Silverlight"
    xmlns:local="clr-namespace:....Silverlight"
    mc:Ignorable="d">

    <core:WidgetBase.Resources>
        <SolidColorBrush x:Key="..." />
    </core:WidgetBase.Resources>
...

我正在尝试从代码中设置它:

void _administrationClient_GetByFilterModuleSettingCompleted(object sender, GetByFilterModuleSettingCompletedEventArgs e)
{
        this.Resources["..."] = new SolidColorBrush(Colors.Red);
}

但我得到错误:

该方法或操作未实现。

堆栈跟踪 :

   at System.Windows.ResourceDictionary.set_Item(Object key, Object value)
   at ....Silverlight.LiquidityConstraintsView._administrationClient_GetByFilterModuleSettingCompleted(Object sender, GetByFilterModuleSettingCompletedEventArgs e)
   at ....Service.AdministrationServiceClient.OnGetByFilterModuleSettingCompleted(Object state)

当我向服务器发送请求以获取颜色时,会发生这种情况,然后当它返回时,我尝试将该颜色设置为资源,即使我尝试将其设置为红色,它也会失败。

如果它有帮助,我设置它的方法是从 WCF 调用到服务器的异步回调方法。

4

3 回答 3

7

如果您查看ResourceDictionaryReflector 中的 setter(用于 Silverlight),您会看到它抛出一个NotImplementedException,因此这在 Silverlight 中不起作用。

您可以尝试删除资源并重新添加它,但这是在黑暗中拍摄。

于 2013-09-04T14:19:30.943 回答
3

"This indexer implementation specifically blocks a "set" usage. If you attempt to set a value using the indexer, an exception is thrown. You must remove and re-add to the ResourceDictionary in order to change a key-value pair."

http://msdn.microsoft.com/en-us/library/ms601221(v=vs.95).aspx

于 2013-09-04T14:23:47.507 回答
0

如果您在新的 WPF 应用程序中尝试,此操作将按预期工作:

<Window.Resources>
    <SolidColorBrush x:Key="Brush" Color="Aqua" />
</Window.Resources>

public MainWindow()
{
    this.Resources["Brush"] = new SolidColorBrush(Colors.Green);
    InitializeComponent(); 
}

因此,我向您建议,您的问题出在其他地方。

更新>>>

完全避免这个问题并简单地使用public你的属性MainWindow.xaml.cs怎么样?

MainWindow.xaml.cs

public SolidColorBrush Brush { get; set; }

然后在您的应用程序中的任何位置,您都应该能够像这样访问此属性:

((MainWindow)App.Current.MainWindow).Brush = new SolidColorBrush(Colors.Red);
于 2013-09-04T14:04:57.180 回答