コード例 #1
0
ファイル: Program.cs プロジェクト: Maskside/Goliath
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);

            // TODO: GetXULRunnerLocation isn't very robust but its ok when hacking..
            Xpcom.Initialize(XULRunnerLocator.GetXULRunnerLocation());

            var form1 = new Form1();

            var textBox = new HtmlTextBox();

            textBox.Location = new Point(5, 0);
            textBox.Width    = 100;
            textBox.Height   = 40;
            textBox.Visible  = true;
            var comboBox = new HtmlEditableComboBox();

            comboBox.Location = new Point(5, 45);
            comboBox.Width    = 100;
            comboBox.Height   = 40;


            form1.Controls.Add(textBox);
            form1.Controls.Add(comboBox);

            Application.Run(form1);
        }
コード例 #2
0
 public HtmlComboBoxItems(HtmlEditableComboBox parent)
 {
     _parent = parent;
 }