Ejemplo n.º 1
0
        public HitbaseComboBox(MainCDUserControl dlg)
            : base(dlg)
        {
            comboBox = new MyComboBox(this);

            comboBox.IsEditable        = false;
            comboBox.SelectionChanged += new System.Windows.Controls.SelectionChangedEventHandler(comboBox_SelectionChanged);
        }
Ejemplo n.º 2
0
        public HitbaseControl(MainCDUserControl dlg)
        {
            hitbaseMainWindowControl = dlg;

            //TODO_WPF!!!!!!!!!!!!!bandControl = new SelectionBandControl(this);
            //TODO_WPF!!!!!!!!!!!!!bandControl.Visible = false;
            //TODO_WPF!!!!!!!!!!!!!dlg.Controls.Add(bandControl);
            //TODO_WPF!!!!!!!!!!!!!dlg.Controls.SetChildIndex(bandControl, 0);

            controlID = IDGenerator.GetNextID();
        }
Ejemplo n.º 3
0
        public HitbaseTextBox(MainCDUserControl dlg)
            : base(dlg)
        {
            textBox = new MyTextBox(this);

            textBox.TextChanged += new System.Windows.Controls.TextChangedEventHandler(textBox_TextChanged);
            textBox.LostFocus   += new RoutedEventHandler(textBox_LostFocus);
            if (IsInDesignMode)
            {
                textBox.Cursor = Cursors.Arrow;
            }
        }
Ejemplo n.º 4
0
 public HitbaseLabel(MainCDUserControl dlg)
     : base(dlg)
 {
     label = new MyLabel(this);
 }
Ejemplo n.º 5
0
        public HitbaseMainCDControl(MainCDUserControl mainCDUserControl)
        {
            this.canvas = new Canvas();

            this.hitbaseMainWindowControl = mainCDUserControl;
        }
Ejemplo n.º 6
0
 public HitbaseRating(MainCDUserControl dlg)
     : base(dlg)
 {
     ratingControl = new MyRatingControl(this);
 }
Ejemplo n.º 7
0
 public HitbaseButton(MainCDUserControl dlg)
     : base(dlg)
 {
     button        = new MyButton(this);
     button.Click += new System.Windows.RoutedEventHandler(button_Click);
 }
Ejemplo n.º 8
0
 public HitbaseCheckBox(MainCDUserControl dlg) : base(dlg)
 {
     checkBox          = new MyCheckBox(this);
     checkBox.Checked += new System.Windows.RoutedEventHandler(checkBox_Checked);
 }
Ejemplo n.º 9
0
 public HitbaseSeperator(MainCDUserControl dlg)
     : base(dlg)
 {
     seperator = new MySeperator(this);
 }