Interaction logic for NumericUpDownTextBox.xaml
Inheritance: System.Windows.Controls.TextBox
示例#1
0
 public ButtonsProperties(NumericUpDownTextBox textBox)
 {
     parent = textBox;
 }
 public ButtonsProperties(NumericUpDownTextBox textBox)
 {
     parent = textBox;
 }
示例#3
0
 private static void ButtonPropertyChangedCallback(DependencyObject d, DependencyPropertyChangedEventArgs e)
 {
     NumericUpDownTextBox target = (NumericUpDownTextBox)d;
     target.ButtonsViewModel.NotifyPropertyChanged(e.Property.ToString());
 }