6

我有自己的 UserControl,aLabeledTextBox是 aLabel和 a..well,的组合TextBox。此控件有两个属性:Caption将绑定到 的标题Label,以及Value将绑定到TextTextBox

代码:

public class LabeledTextBox : Control
{
    static LabeledTextBox()
    {
        DefaultStyleKeyProperty.OverrideMetadata(typeof(LabeledTextBox), new FrameworkPropertyMetadata(typeof(LabeledTextBox)));
    }

    public string Caption
    {
        get { return (string)GetValue(CaptionProperty); }
        set { SetValue(CaptionProperty, value); }
    }

    // Using a DependencyProperty as the backing store for Caption.  This enables animation, styling, binding, etc...
    public static readonly DependencyProperty CaptionProperty =
        DependencyProperty.Register("Caption", typeof(string), typeof(LabeledTextBox), new UIPropertyMetadata(""));


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

    // Using a DependencyProperty as the backing store for Value.  This enables animation, styling, binding, etc...
    public static readonly DependencyProperty ValueProperty =
        DependencyProperty.Register("Value", typeof(string), typeof(LabeledTextBox), new UIPropertyMetadata(""));


}

XAML:

<Style TargetType="{x:Type local:LabeledTextBox}">
    <Setter Property="Template">
        <Setter.Value>
            <ControlTemplate TargetType="{x:Type local:LabeledTextBox}">
                <Grid>
                    <Grid>

                    <Grid.RowDefinitions>
                        <RowDefinition />
                        <RowDefinition />
                    </Grid.RowDefinitions>

                    <Label Grid.Row="0" Content="{TemplateBinding Caption}" />
                    <TextBox  Name="Box" Margin="3,0,3,3" Grid.Row="1" Text="{Binding Value, RelativeSource={RelativeSource TemplatedParent}, Mode=TwoWay}" />

                    </Grid>
                </Grid>
            </ControlTemplate>
        </Setter.Value>
    </Setter>
</Style>

用法:

<uc:LabeledTextBox Caption="Code:" Value="{Binding ExpenseCode}"  />

最初我以为我在这里找到了答案:WPF TemplateBinding vs RelativeSource TemplatedParent

TemplateBinding这详细说明了和之间的区别RelativeSource TemplatedParent。我已经相应地更改了我的代码,但仍然感觉我错过了一步。OneWay 绑定确实有效,我的文本框绑定到 Value 属性,但更改不会注册。

我怎样才能让它工作?

4

2 回答 2

7

在此处更改模式。

<uc:LabeledTextBox Caption="Code:" Value="{Binding ExpenseCode,Mode=TwoWay}"  /> 

它对我有用

于 2012-04-20T10:04:31.793 回答
5

以防万一有人遇到这个问题:

另一种方法(可能更优雅)是以某种方式声明用户控件的依赖属性,使其默认为双向绑定(例如,框架 TextBox 默认情况下)。

这可以通过以下方式实现(取自这个 Stackoverflow 问题的答案):

    public DependencyProperty SomeProperty =
        DependencyProperty.Register("Some", typeof(bool), typeof(Window1),
            new FrameworkPropertyMetadata(default(bool),
                FrameworkPropertyMetadataOptions.BindsTwoWayByDefault));

这里的关键是使用FrameworkPropertyMetadata.

于 2014-01-17T20:21:09.417 回答