Exemplo n.º 1
0
        public ScriptValueListForm()
        {
            Options = DropDownFormOptionsFlags.Focusable | DropDownFormOptionsFlags.FixedSize;

            _listBox = new ScriptValueListBox();
            _listBox.ItemSelected += ListBoxItemSelected;
            _listBox.Dock          = DockStyle.Fill;
            _listBox.BorderStyle   = BorderStyle.None;
            _listBox.Parent        = this;
        }
Exemplo n.º 2
0
 public ScriptValueEditorControl()
 {
     _listBox       = DropDownForm.ListBox;
     VisibleButtons = DropDownControlButtonFlags.DropDown;
 }