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