public TextBoxN()
     : base()
 {
     this.SetStyle(ControlStyles.FixedHeight, false);
     this.UpdateStyles();
     //
     this.m_InputRegion              = new InputRegion(this);
     this.m_InputRegion.PopupClosed += new EventHandler(InputRegion_PopupClosed);
 }
Пример #2
0
 public TextBoxItem()
 {
     this.m_InputRegion              = new InputRegion(this);
     this.m_InputRegion.PopupClosed += new EventHandler(InputRegion_PopupClosed);
     //
     //
     //
     this.Size = new Size(120, 20);
 }
 public CustomizeComboBoxItem(ICustomizePopup pCustomizePopup)
     : base()
 {
     this.m_InputRegion              = new InputRegion(this);
     this.m_InputRegion.PopupClosed += new EventHandler(InputRegion_PopupClosed);
     //
     this.m_pCustomizePopup = pCustomizePopup;
     ((ISetOwnerHelper)this.m_pCustomizePopup).SetOwner(this);
     this.m_pCustomizePopup.PopupOpened += new EventHandler(CustomizePopup_PopupOpened);
     this.m_pCustomizePopup.PopupClosed += new EventHandler(CustomizePopup_PopupClosed);
 }
Пример #4
0
 public ButtonTextBoxItem()
 {
     this.m_TextBoxButtonItem = new TextBoxButtonItem();
     ((ISetOwnerHelper)this.m_TextBoxButtonItem).SetOwner(this);
     this.m_TextBoxButtonItem.Click += new EventHandler(TextBoxButtonItem_Click);
     //
     this.m_InputRegion              = new InputRegion(this);
     this.m_InputRegion.PopupClosed += new EventHandler(InputRegion_PopupClosed);
     //
     //
     //
     this.Size = new Size(120, 20);
 }
 public ButtonTextBox()
     : base()
 {
     this.SetStyle(ControlStyles.FixedHeight, false);
     this.UpdateStyles();
     //
     this.m_TextBoxButtonItem = new TextBoxButtonItem();
     ((ISetOwnerHelper)this.m_TextBoxButtonItem).SetOwner(this);
     this.m_TextBoxButtonItem.Click += new EventHandler(TextBoxButtonItem_Click);
     //
     this.m_InputRegion              = new InputRegion(this);
     this.m_InputRegion.PopupClosed += new EventHandler(InputRegion_PopupClosed);
 }
 public CustomizeComboBox(ICustomizePopup pCustomizePopup)
     : base()
 {
     this.SetStyle(ControlStyles.FixedHeight, false);
     this.UpdateStyles();
     //
     this.m_InputRegion              = new InputRegion(this);
     this.m_InputRegion.PopupClosed += new EventHandler(InputRegion_PopupClosed);
     //
     this.m_pCustomizePopup = pCustomizePopup;
     ((ISetOwnerHelper)this.m_pCustomizePopup).SetOwner(this);
     this.m_pCustomizePopup.PopupOpened += new EventHandler(CustomizePopup_PopupOpened);
     this.m_pCustomizePopup.PopupClosed += new EventHandler(CustomizePopup_PopupClosed);
 }