コード例 #1
0
ファイル: Form1.cs プロジェクト: te-ori/bem.winforms
        private void button1_Click(object sender, EventArgs e)
        {
            var btnEkle = new System.Windows.Forms.Button();

            btnEkle.Location = new Point(50, 70);
            btnEkle.Name     = "btnEkle";
            btnEkle.Size     = new System.Drawing.Size(66, 23);
            btnEkle.TabIndex = 4;
            btnEkle.Text     = "EKLE";
            btnEkle.UseVisualStyleBackColor = true;
            btnEkle.Click += TiklayincaCalis;

            var textBox = new GelismisTextBox();

            textBox.Location = new System.Drawing.Point(110, 135);
            textBox.Name     = "txtIlce";
            textBox.Size     = new System.Drawing.Size(129, 20);
            textBox.TabIndex = 8;


            form.Controls.Add(btnEkle);
            form.Controls.Add(textBox);

            form.Show();
        }
コード例 #2
0
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);

            Form form    = new Form();
            var  btnEkle = new System.Windows.Forms.Button();

            btnEkle.Location = new Point(50, 70);
            btnEkle.Name     = "btnEkle";
            btnEkle.Size     = new System.Drawing.Size(66, 23);
            btnEkle.TabIndex = 4;
            btnEkle.Text     = "EKLE";
            btnEkle.UseVisualStyleBackColor = true;
            btnEkle.Click += TiklayincaCalis;

            var textBox = new GelismisTextBox();

            textBox.Location = new System.Drawing.Point(110, 135);
            textBox.Name     = "txtIlce";
            textBox.Size     = new System.Drawing.Size(129, 20);
            textBox.TabIndex = 8;


            form.Controls.Add(btnEkle);
            form.Controls.Add(textBox);

            Application.Run(form);
        }