Esempio n. 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);
            };
        }
Esempio n. 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);
                          };  
   
 }
Esempio n. 3
0
 public TextElement(ElementHostControl host)
     : base(host)
 {
 }
Esempio n. 4
0
 public PressableElement(ElementHostControl host)
     : base(host)
 {
 }
Esempio n. 5
0
 public RadioGroupElement(ElementHostControl host)
     : base(host)
 {
 }
Esempio n. 6
0
 public CheckBoxElement(ElementHostControl host)
   : base(host)
 {
 }
Esempio n. 7
0
 public PressableElement(ElementHostControl host)
     : base(host)
 {
 }
Esempio n. 8
0
 protected Element(ElementHostControl host)
 {
     m_Host = host;
     m_Host.AddElement(this);
 }
Esempio n. 9
0
 public CheckBoxElement(ElementHostControl host)
     : base(host)
 {
 }
Esempio n. 10
0
 public ComboButtonElement(ElementHostControl host)
     : base(host)
 {
 }
Esempio n. 11
0
 public RadioButtonElement(ElementHostControl host)
     : base(host)
 {
 }
Esempio n. 12
0
 public TextElement(ElementHostControl host)
     : base(host)
 {
 }
Esempio n. 13
0
 public CheckableElement(ElementHostControl host)
   : base(host)
 {
 }
Esempio n. 14
0
 public RadioButtonElement(ElementHostControl host) : base(host)
 {
 }
Esempio n. 15
0
 public RadioGroupElement(ElementHostControl host)
     : base(host)
 {
 }
Esempio n. 16
0
 public TextBoxElement(ElementHostControl host, InternalTextBox textBox)
     : base(host)
 {
     m_InternalTextBox = textBox;
 }
Esempio n. 17
0
 public CheckableElement(ElementHostControl host)
     : base(host)
 {
 }
Esempio n. 18
0
 public ComboButtonElement(ElementHostControl host)
     : base(host)
 {
 }
Esempio n. 19
0
 public SymbolElement(ElementHostControl host)
   : base(host)
 {
 }
Esempio n. 20
0
 public SymbolElement(ElementHostControl host)
     : base(host)
 {
 }
Esempio n. 21
0
 public TextBoxElement(ElementHostControl host,InternalTextBox textBox)
   : base(host)
 {
   m_InternalTextBox = textBox;
 }