动态绑定到资源的“路径”

时间:2013-03-26 09:57:02

标签: c# wpf data-binding dynamicresource

首先是我开始的代码:

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

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

  

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

由于imageSource值在运行时期间发生变化,因此我必须将StaticResource更改为DynamicResource。但属性Source不是依赖属性,因此以下代码将引发运行时错误:

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

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

SmallImageSource="{DynamicResource imageSource}"

这会再次引发运行时错误,因为imageSource的类型为ImageSmallImageSource期望值为ImageSource的类型。

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

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

在考虑如何继续下去的过程中,我想到幸运的是,我可以将ImageSource rigmarole移动到IValueConverter。在我的RibbonMenuButton的给定数据上下文中,我有一个具有适当值的字符串值,该值实际上也是我ImageSource的来源。

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


imageSourceDrawingImage msdn page上的XAML示例非常相似。

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

1 个答案:

答案 0 :(得分:1)

您可以尝试将“imageResource”定义为ImageSource而不是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>