123456789101112131415161718192021222324252627282930 |
- 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 WindowsFormsTabControl2
- {
- public partial class Form1 : Form
- {
- public Form1()
- {
- InitializeComponent();
- }
- private void Form1_Load(object sender, EventArgs e)
- {
- tabControl1.ImageList = imageList1;
- tabPage1.ImageIndex = 0;
- tabPage2.ImageIndex = 0;
- Button btn1 = new Button();
- btn1.Text = "新增按钮";
- tabPage1.Controls.Add(btn1);
- }
- }
- }
|