6

首先是我开始的代码:

<ribbon:RibbonMenuButton IsEnabled="{Binding ForegroundIsConfigurable}"
          SmallImageSource="{Binding Source={StaticResource imageSource},
                             Path=Source,
                             UpdateSourceTrigger=OnPropertyChanged}">

虽然此绑定正在编译并运行良好,但我不满意的原因是imageSource运行时发生了变化。

StaticResource 标记扩展:通过查找对已定义资源的引用,为任何 XAML 属性特性提供值。该资源的查找行为类似于加载时查找,它将查找先前从当前 XAML 页面的标记以及其他应用程序源中加载的资源,并将该资源值生成为运行中的属性值- 时间对象。

由于imageSource值在运行时发生变化,我不得不更改StaticResourceDynamicResource. 但该属性Source不是依赖属性,因此以下代码将引发运行时错误:

SmallImageSource="{Binding Source={DynamicResource imageSource},
                   Path=Source,
                   UpdateSourceTrigger=LostFocus}

出于这个原因,我需要将动态资源直接绑定到SmallImageSource,这是一个依赖属性:

SmallImageSource="{DynamicResource imageSource}"

这将再次引发运行时错误,因为imageSource类型为Image. SmallImageSource期望值是ImageSource.

现在有人可能会建议将数据上下文设置为我的动态资源并适当地绑定属性。如果我这样做,我会杀死IsEnabled具有另一个DataContext.

据我所知,MultiBinding这也不是一个解决方案,因为这提供了一种将属性绑定到多个源的机制,但不提供针对不同上下文和源的绑定不同属性。

在考虑如何继续时,我想到幸运的是我可以将ImageSource繁琐的内容移入IValueConverter. 在我的给定数据上下文中,我RibbonMenuButton有一个具有适当值的字符串值,这实际上也是我的ImageSource.

无论如何,我仍然想知道如果我没有其他方法,我将如何解决问题,即如果两个来源都在不同的数据上下文中。有什么我没有看到的吗?如何通过覆盖DataContext动态资源的属性的绑定来确保不杀死其他绑定?


这与DrawingImage msdn 页面imageSource上的 XAML 示例非常相似。

<Image x:Key="imageSource">
  <Image.Source>
    <DrawingImage>
...
4

1 回答 1

1

您可以尝试将“imageResource”定义为 anImageSource而不是Image. 这对我有用。

<r:RibbonWindow
    x:Class="WpfApplication1.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:r="clr-namespace:Microsoft.Windows.Controls.Ribbon;assembly=RibbonControlsLibrary"
    xmlns:pc="clr-namespace:System.Windows.Media;assembly=PresentationCore">
    <Grid>
        <Grid.Resources>
            <pc:ImageSource x:Key="imageSource">your_image.png</pc:ImageSource>
        </Grid.Resources>
        <r:Ribbon>
            <r:RibbonMenuButton
                IsEnabled="{Binding ForegroundIsConfigurable}"
                SmallImageSource="{DynamicResource imageSource}">
            </r:RibbonMenuButton>
        </r:Ribbon>
    </Grid>
</r:RibbonWindow>

此外,您可以使用 ElementName 绑定设置 RibbonMenuButton 的 DataContext 而无需覆盖 IsEnabled,如下所示。

<r:RibbonWindow x:Class="WpfApplication1.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        xmlns:r="clr-namespace:Microsoft.Windows.Controls.Ribbon;assembly=RibbonControlsLibrary"
        Title="MainWindow" Height="350" Width="525">

    <Grid x:Name="root">

        <Grid.Resources>
            <Image x:Key="imageSource" Source="{Binding myImageSource}"/>
        </Grid.Resources>

        <r:Ribbon>
            <r:RibbonMenuButton DataContext="{DynamicResource imageSource}"
                IsEnabled="{Binding ElementName=Root, Path=DataContext.ForegroundIsConfigurable}"
                SmallImageSource="{Binding Source}"/>
        </r:Ribbon>
    </Grid>
</r:RibbonWindow>
于 2013-03-26T20:14:22.047 回答