Beispiel #1
0
        public ComboBoxElement(ElementHostControl host, InternalTextBox textBox)
            : base(host)
        {
            m_InternalTextBox = textBox;
            m_Button          = new ComboButtonElement(host);
            m_Button.ZOrder   = 2;

            m_Button.MouseClick += delegate(object sender, MouseEventArgs e)
            {
                OnButtonClick(EventArgs.Empty);
            };
        }
Beispiel #2
0
 public ComboBoxElement(ElementHostControl host,InternalTextBox textBox)
   : base(host)
 {
   m_InternalTextBox = textBox;
   m_Button = new ComboButtonElement(host);
   m_Button.ZOrder = 2;
   
   m_Button.MouseClick += delegate(object sender, MouseEventArgs e)
                          {
                            OnButtonClick(EventArgs.Empty);
                          };  
   
 }
Beispiel #3
0
 public TextElement(ElementHostControl host)
     : base(host)
 {
 }
Beispiel #4
0
 public PressableElement(ElementHostControl host)
     : base(host)
 {
 }
Beispiel #5
0
 public RadioGroupElement(ElementHostControl host)
     : base(host)
 {
 }
Beispiel #6
0
 public CheckBoxElement(ElementHostControl host)
   : base(host)
 {
 }
Beispiel #7
0
 public PressableElement(ElementHostControl host)
     : base(host)
 {
 }
Beispiel #8
0
 protected Element(ElementHostControl host)
 {
     m_Host = host;
     m_Host.AddElement(this);
 }
Beispiel #9
0
 public CheckBoxElement(ElementHostControl host)
     : base(host)
 {
 }
Beispiel #10
0
 public ComboButtonElement(ElementHostControl host)
     : base(host)
 {
 }
Beispiel #11
0
 public RadioButtonElement(ElementHostControl host)
     : base(host)
 {
 }
Beispiel #12
0
 public TextElement(ElementHostControl host)
     : base(host)
 {
 }
Beispiel #13
0
 public CheckableElement(ElementHostControl host)
   : base(host)
 {
 }
Beispiel #14
0
 public RadioButtonElement(ElementHostControl host) : base(host)
 {
 }
Beispiel #15
0
 public RadioGroupElement(ElementHostControl host)
     : base(host)
 {
 }
Beispiel #16
0
 public TextBoxElement(ElementHostControl host, InternalTextBox textBox)
     : base(host)
 {
     m_InternalTextBox = textBox;
 }
Beispiel #17
0
 public CheckableElement(ElementHostControl host)
     : base(host)
 {
 }
Beispiel #18
0
 public ComboButtonElement(ElementHostControl host)
     : base(host)
 {
 }
Beispiel #19
0
 public SymbolElement(ElementHostControl host)
   : base(host)
 {
 }
Beispiel #20
0
 public SymbolElement(ElementHostControl host)
     : base(host)
 {
 }
Beispiel #21
0
 public TextBoxElement(ElementHostControl host,InternalTextBox textBox)
   : base(host)
 {
   m_InternalTextBox = textBox;
 }