예제 #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
파일: SymbolElement.cs 프로젝트: zhabis/nfx
 public SymbolElement(ElementHostControl host)
     : base(host)
 {
 }
예제 #21
0
 public TextBoxElement(ElementHostControl host,InternalTextBox textBox)
   : base(host)
 {
   m_InternalTextBox = textBox;
 }