1

次のような xaml ビューがあります。

<Tv:TvPanel
xmlns:Tv="...">
<Tv:TvPanel.Resources>
    <Tv:Parameters x:Key="parameterList">
    <Tv:ParameterDefinition ParameterName="MyParam" InitialValue="123abc">
        <Tv:ValueBinding Value="{Binding ElementName=myTextBox, Path=Text}"/>
    </Tv:ParameterDefinition>
</Tv:Parameters>
<Tv:TvXmlDataProvider x:Key="dataProvider" 
                          Source="http://server/myXml.xml"                     
                          Parameters="{StaticResource parameterList}"/>
</Tv:TvPanel.Resources>
<Tv:TvPage DataContext="{StaticResource dataProvider}" >

    <Tv:TvText      x:Name="myTextBox"
                    Tv:TvPage.Left="360" Tv:TvPage.Top="10"
                    Height="30" Width="200"/>

    <Tv:TvButton    Tv:TvPage.Left="560" Tv:TvPage.Top="10"
                    Content="Search"/>

/*その他のコード*/

一部の標準 wpf コントロール (キャンバス、ラベルなど) を拡張するすべてのコントロール。

クラス Parameters、ParameterDefinition、および ValueBinding は次のようになります。

    [ContentProperty("ParameterDefinitions")]
public class Parameters
{
    private readonly List<ParameterDefinition> parameterDefinitions = new List<ParameterDefinition>();
    public List<ParameterDefinition> ParameterDefinitions { get { return parameterDefinitions; } }


}

[ContentProperty("ValueBindings")]
public class ParameterDefinition : DependencyObject
{

    public static DependencyProperty ParameterNameProperty = DependencyProperty.Register("ParameterName", typeof (string), typeof (ParameterDefinition), new PropertyMetadata(""));

    public string ParameterName
    {
        get { return (string) this.GetValue(ParameterNameProperty); }
        set{ this.SetValue(ParameterNameProperty, value);}
    }

    public static DependencyProperty InitialValueProperty = DependencyProperty.Register("InitialValue", typeof(object), typeof(ParameterDefinition), new PropertyMetadata(new object()));
    public object InitialValue
    {
        get { return this.GetValue(InitialValueProperty); }
        set { this.SetValue(InitialValueProperty, value); }
    }

    private readonly List<ValueBinding> valueBindings = new List<ValueBinding>();
    public List<ValueBinding> ValueBindings { get { return this.valueBindings; } }

}

public class ValueBinding : DependencyObject
{
    public static DependencyProperty ValueProperty = DependencyProperty.Register("Value", typeof(string), typeof(ValueBinding), new PropertyMetadata(""));

    public string Value
    {
        get { return (string)this.GetValue(ValueProperty); }
        set { this.SetValue(ValueProperty, value); }
    }
}

問題は、データバインディング

Value="{Binding ElementName=myTextBox, Path=Text}"

ValueBinding では機能しません (値は設定されず、常にデフォルト値を持ちます (値を変更するためのアクションが実行されます))。データプロバイダーの StaticResource バインディングは完全に機能し、UIElements の下の要素間のバインディングも完全に機能します。コンパイルされ、resourcedictionary の elementname のスコープに問題はないようです。私は何を取りこぼしたか?

Edit1: VS-Console の出力について言及するのを忘れていました:

System.Windows.Data Error: 2 : Cannot find governing FrameworkElement or FrameworkContentElement for target element. BindingExpression:Path=Text; DataItem=null; target element is 'ValueBinding' (HashCode=14342221); target property is 'Value' (type 'String')

TvPanel では、DataContext がこれに設定されています。

DependencyObject ==>同じ問題ではなく、Freezableから派生させようとしました。

私もこの方法でバインドしようとしました:

        <Tv:ValueBinding>
            <Tv:ValueBinding.Value>
                <Binding ElementName="SearchText" Path="Text"/>
            </Tv:ValueBinding.Value>
        </Tv:ValueBinding>

しかし違いはありません。

4

1 に答える 1

1

クラスはから派生する必要があると思います。Freezableそうしないと、継承コンテキストがありDataContextません。継承されず、バインディングが機能しません。詳細については、この記事を参照してください。

于 2009-12-17T09:42:16.123 に答える