0

ボタンを含むツールバーがあり、一部のボタンにはコンテンツの画像しかなく、他のボタンにはテキストしかありません。Button Image の width プロパティを、派生した ToolBar クラスのカスタム プロパティにバインドしようとしています。動作することもありますが、次のエラーで失敗することもあります。

System.Windows.Data エラー: 4 : 参照 'RelativeSource FindAncestor、AncestorType='NuiWpfCore.Controls.ToolBar'、AncestorLevel='1'' でバインディングのソースが見つかりません。BindingExpression:Path=IconSize; DataItem=null; ターゲット要素は '画像' (名前 = ''); ターゲット プロパティは 'Width' (タイプ 'Double') です

失敗している要素バインディングを含む xaml を次に示します。DataTemplate は、インラインで作成された DataTemplateSelector から返されます。

<pres:ToolBar x:Class="NuiWpfCore.Controls.ToolBar"
         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:pres="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
         xmlns:core="clr-namespace:NuiWpfCore"
         xmlns:ctrls="clr-namespace:NuiWpfCore.Controls"
         xmlns:select="clr-namespace:NuiWpfCore.Selectors"
         xmlns:converters="clr-namespace:NuiWpfCore.Converters"
         xmlns:diag="clr-namespace:System.Diagnostics;assembly=WindowsBase">

    <ToolBar.Resources>
        <ResourceDictionary>
            <ResourceDictionary.MergedDictionaries>
                <ResourceDictionary Source="pack://application:,,,/NuiWpfCore;component/Controls/MenuBarTemplate.xaml" />
            </ResourceDictionary.MergedDictionaries>
            <converters:ListPairToStringConverter x:Key="ListPairToStringConverter" />
            <converters:IconMetaDataToImageConverter x:Key="IconMetaDataToImageConverter" />
            <converters:IconMetaDataToImageConverterParameter x:Key="IconToImageConverterParameter"
                ConvertToImage="False" Width="16" Height="16" />
        </ResourceDictionary>
    </ToolBar.Resources>

    <ToolBar.ItemTemplateSelector>
        <select:ToolBarItemDataTemplateSelector>

            <!-- other DataTemplates omitted for brevity -->

            <select:ToolBarItemDataTemplateSelector.IconCommand>
                <DataTemplate DataType="{x:Type core:PropertyElement}">
                    <Button IsEnabled="{Binding Path=CanEdit}" Command="{Binding}">
                        <Button.Content>
                            <Image 
                                Width="{Binding Path=IconSize, 
                                    RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type ctrls:ToolBar}} }" 
                                Height="{Binding Path=Width,
                                    RelativeSource={RelativeSource Self}}" 
                                Source="{Binding Path=MetaData, 
                                Converter={StaticResource IconMetaDataToImageConverter},
                                ConverterParameter={StaticResource IconToImageConverterParameter}}"/>
                        </Button.Content>
                    </Button>
                </DataTemplate>
            </select:ToolBarItemDataTemplateSelector.IconCommand>

            <!-- other DataTemplates omitted for brevity -->

        </select:ToolBarItemDataTemplateSelector>
    </ToolBar.ItemTemplateSelector>
</pres:ToolBar>

バインディングの Source プロパティを持つ ToolBar クラスを次に示します。

public partial class ToolBar : System.Windows.Controls.ToolBar, Views.IView
{
    public ToolBar() : base()
    {
        InitializeComponent();
        IconSize = 32;
    }

    public int IconSize { get; set; }
}

この ToolBar クラスは、ToolBarTray で使用される場合と使用されない場合がありますが、特定のシナリオではどちらの場合もバインド検索が失敗します。

なぜこれが失敗するのかについて誰か考えがありますか?

4

2 に答える 2

0

DataTemplate は、ビジュアル ツリーの一部ではない DataTemplateSelector 宣言内で定義されているように見えるため、Binding がその場所で評価されている場合、そこから上に移動することはできません。テンプレートが実際に適用されている場所はどこですか?

于 2011-07-14T19:01:50.180 に答える
0

IconSizeToolBar を継承されたプロパティにすることを検討しましたか?

 public static readonly DependencyProperty IconSizeProperty = 
    DependencyProperty.RegisterAttached( "IconSize", typeof(double), typeof(ToolBar ),
        new FrameworkPropertyMetadata(32, FrameworkPropertyMetadataOptions.Inherits));

public static double GetIconSize(DependencyObject target)
{
    return (double)target.GetValue(IconSizeProperty);

}

public static void SetIconSize(DependencyObject target, double value)
{
    target.SetValue(IconSizeProperty, value);
}

次に、次のように IconSize にアクセスできます

<Button.Content>
                <Image 
                    Width="{Binding RelativeSource={RelativeSource Self}, ctrls::ToolBar.IconSize}" 
                    Height="{Binding Path=Width,RelativeSource={RelativeSource Self}}" 
                    Source="{Binding Path=MetaData, 
                    Converter={StaticResource IconMetaDataToImageConverter},
                    ConverterParameter={StaticResource IconToImageConverterParameter}}"/>

最初に、ツールバーに設定する必要があります。これにより、ツリーの下にある他のすべての要素がこのプロパティにアクセスできるようになります。

申し訳ありませんが、100% 正しいとは限りません。しかし、値継承の全体的な考え方は、これを解決する良い方法です。

于 2011-07-14T18:58:38.560 に答える