Ejemplo n.º 1
0
        public TextBoxFile() : base()
        {
            //Loaded += TextBoxFile_Loaded;
            CmdOpenFile = new SupRelayCommand(new Action(onOpenFile));

            //TextChanged += (object sender, TextChangedEventArgs e) => {
            //	if (e.OriginalSource != this) {
            //		e.Handled = true;
            //	}
            //};
        }
Ejemplo n.º 2
0
 public TextBoxCheckbox() : base()
 {
     //Loaded +=TextBoxCheckbox_Loaded;
     CmdChecked   = new SupRelayCommand(new Action(onChecked));
     CmdUnchecked = new SupRelayCommand(new Action(onUnchecked));
 }