public static readonly DependencyProperty ExtraTextProperty;
static MainPage()
{
ExtraTextProperty = DependencyProperty.Register("ExtraText", typeof(TextBox), typeof(MainPage), null);
}
public TextBox ExtraText
{
get { return (TextBox)GetValue(ExtraTextProperty); }
set { SetValue(ExtraTextProperty, value); }
}
No comments:
Post a Comment