123456789101112131415161718192021222324252627282930313233343536373839 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Forms;
- namespace WindowsFormsExtend
- {
- public partial class Form1 : Form
- {
- public Form1()
- {
- InitializeComponent();
- }
-
- private void Form1_Load(object sender, EventArgs e)
- {
- this.AcceptButton = button1;
- }
-
- private void button1_Click(object sender, EventArgs e)
- {
- ComboBox cbo = new ComboBox();
- cbo.Location = new Point(20, 30);
- this.Controls.Add(cbo);
- }
- private void textBox1_TextChanged(object sender, EventArgs e)
- {
- }
- }
- }
|