0

我在 Silverlight 应用程序中有两个包含文本框 (1) 的用户控件,当我开始在其中一个文本框中写入时,如何同步这些文本框。

4

1 回答 1

0

在每个控件中创建一个更改文本框值的依赖属性,然后将控件绑定到另一个控件的值。

例子

           public static readonly DependencyProperty InnerTextProperty= 
                 DependencyProperty.Register(
    "InnerText", typeof(string),
        new PropertyMetadata(false, OnTextInput) );
public bool InnerText
{
    get { return (bool)GetValue(InnerTextProperty); }
    set { SetValue(InnerTextProperty, value); }
}

private static void OnTextInput(DependencyObject obj, DependencyPropertyChangedEventArgs e)
{
    YourControl c = obj as YourControl
    if(c != null)
    {
        c._innerTextBox.Text = e.Value;
    }

}
于 2013-02-21T14:23:33.100 回答