コード例 #1
0
        public MainWindow()
        {
            InitializeComponent();
            Dest       = new RejectablePrperty <string>();
            History    = new ObservableCollection <string>();
            Move       = new RejectablePrperty <bool>();
            Move.Value = true;

            RectColor       = new RejectablePrperty <Brush>();
            RectColor.Value = Brushes.White;

            TopMost       = new RejectablePrperty <bool>();
            TopMost.Value = false;

            TotalFiles = new RejectablePrperty <int>();
            Progress   = new RejectablePrperty <int>();

            DataContext = this;
            spool       = new UltraSuperSpool();
            spool.Omit();
        }
コード例 #2
0
ファイル: T2H.xaml.cs プロジェクト: sazae657/YKSB
 public T2H()
 {
     InitializeComponent();
     Source      = new RejectablePrperty <string>(TextBox_TextChanged);
     DataContext = this;
 }