WinForm基础控件使用演示

embedded/2024/10/18 5:40:41/

目录

一 控件列表

二 样例效果

三 后台代码


一 控件列表

二 样例效果

三 后台代码

using System.Diagnostics;
using System.Drawing.Printing;
using System.Text;namespace WinForm练习
{public partial class Form1 : Form{public Form1(){InitializeComponent();}private void button1_Click(object sender, EventArgs e){log.Text = "按钮被点击";}private void Form1_Load(object sender, EventArgs e){//设置按钮为启动后的默认按钮,按下回车即可响应this.AcceptButton = button1;//添加选项框checkedListBox1.Items.Add("小球球");checkedListBox1.Items.Add("中球球");checkedListBox1.Items.Add("大球球");checkedListBox1.Items.Add("超级大球球");for (int i = 0; i < 20; i++){comboBox1.Items.Add(i);}listView1.View = View.Details; // 设置ListView为Details视图,以便显示多列(如果需要)             listView1.Columns.Add("列1"); // 添加列头(如果需要) listView1.Columns.Add("列2"); // 如果需要更多列,可以继续添加  for (int i = 0; i < 30; i++){// 添加一行数据(一个ListViewItem)  ListViewItem item = new ListViewItem("行1的列1数据"); //行首名称item.SubItems.Add("行1的列2数据"); //每行的第二列内容item.SubItems.Add("行1的列3数据");//每行的第3列内容item.SubItems.Add("行1的列4数据");//每行的第4列内容item.SubItems.Add("行1的列5数据");//每行的第5列内容listView1.Items.Add(item);}Task.Run(() =>{while (true){for (int i = 1; i < 101; i++){try{this.Invoke(() => { progressBar1.Value = i; label2.Text = i + "%"; });}catch (Exception){}if (i == 100){Thread.Sleep(3000);}Thread.Sleep(100);}}});//给所有控件都加上提示foreach (TabPage page in tabControl1.TabPages){foreach (Control control in page.Controls){//if (control is TextBox)//{//    ((TextBox)control) = "";//}//if (control is ComboBox)//{//    ((ComboBox)control).SelectedIndex = -1;//}toolTip1.SetToolTip(control, "弹出展示控件");}}//给树形控件添加子节点for (int i = 0; i < 5; i++){TreeNode treeNode_1 = new TreeNode();               //添加根节点treeNode_1.Text = "根节点" + i;treeView1.Nodes.Add(treeNode_1);//添加子节点for (int j = 0; j < 5; j++)                        //添加二级节点{TreeNode treeNode_2 = new TreeNode();treeNode_2.Text = i + ":二级节点" + j;treeNode_1.Nodes.Add(treeNode_2);}}for (int i = 0; i < 6; i++){dataGridView1.Columns.Add("标题" + i, "标题" + i);}for (int i = 0; i < 100; i++){dataGridView1.Rows.Add(1, 2, 3, 4, 5, 6);}backgroundWorker1.DoWork += BackgroundWorker1_DoWork;backgroundWorker1.ProgressChanged += BackgroundWorker1_ProgressChanged;backgroundWorker1.RunWorkerCompleted += BackgroundWorker1_RunWorkerCompleted;backgroundWorker1.RunWorkerAsync(); //开启耗时任务fileSystemWatcher1.Path = @"E:\文件.txt";   //监控的路径fileSystemWatcher1.NotifyFilter = NotifyFilters.LastAccess | NotifyFilters.LastWrite | NotifyFilters.FileName |NotifyFilters.DirectoryName;fileSystemWatcher1.Filter = "*.txt";    // 监控的文件格式fileSystemWatcher1.IncludeSubdirectories = true; // 监控子目录fileSystemWatcher1.Created += new FileSystemEventHandler(OnCreatedFile);   // 有文件创建则触发事件(watch.Created)fileSystemWatcher1.Changed += new FileSystemEventHandler(OnChangedFile);  //有文件改變則觸發事件(watch.Changed)fileSystemWatcher1.EnableRaisingEvents = true; // 启动监控    try{//帮助组件helpProvider1.HelpNamespace = @"E:\教程.CHM";helpProvider1.SetHelpKeyword(richTextBox7, "F1");helpProvider1.SetHelpNavigator(richTextBox7, HelpNavigator.Find);helpProvider1.SetShowHelp(this, true);}catch (Exception ex){MessageBox.Show(ex.Message);}}private void OnChangedFile(object sender, FileSystemEventArgs e){log.Text = "文件被修改:" + DateTime.Now.ToString();}private void OnCreatedFile(object sender, FileSystemEventArgs e){log.Text = "文件被创建:" + DateTime.Now.ToString();}private void BackgroundWorker1_RunWorkerCompleted(object? sender, System.ComponentModel.RunWorkerCompletedEventArgs e){}private void BackgroundWorker1_ProgressChanged(object? sender, System.ComponentModel.ProgressChangedEventArgs e){}int Index = 0;private void BackgroundWorker1_DoWork(object? sender, System.ComponentModel.DoWorkEventArgs e){while (true){Index++;if (Index > 100) Index = 0;try{this.Invoke(() => { progressBar2.Value = Index; label6.Text = Index + "%"; });}catch (Exception){}Thread.Sleep(100);}}private void button1_Enter(object sender, EventArgs e){log.Text = "控件成为焦点。。。。";}private void checkBox1_CheckedChanged(object sender, EventArgs e){if (checkBox1.Checked) checkBox1.Text = "选中";else checkBox1.Text = "未选中";log.Text = "勾选框开始操作:" + (checkBox1.Checked ? "选中" : "未选中");}private void checkedListBox1_SelectedIndexChanged(object sender, EventArgs e){log.Text = checkedListBox1.Text;StringBuilder sb = new StringBuilder();for (int i = 0; i < checkedListBox1.CheckedItems.Count; i++){if (checkedListBox1.GetItemChecked(i)){sb.AppendLine(checkedListBox1.GetItemText(checkedListBox1.CheckedItems[i]));}}log.Text = sb.ToString();}private void comboBox1_SelectedIndexChanged(object sender, EventArgs e){log.Text = comboBox1.Text;}private void dateTimePicker1_ValueChanged(object sender, EventArgs e){log.Text = dateTimePicker1.Text + " " + dateTimePicker2.Text;}private void dateTimePicker2_ValueChanged(object sender, EventArgs e){log.Text = dateTimePicker1.Text + " " + dateTimePicker2.Text;}private void label1_Click(object sender, EventArgs e){log.Text = label1.Text + "被点击";}private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e){Process.Start("notepad");}private void listBox1_SelectedIndexChanged(object sender, EventArgs e){string str = "";for (int i = 0; i < listBox1.SelectedItems.Count; i++){str += listBox1.SelectedItems[i].ToString() + "\r\n";}log.Text = str;}private void maskedTextBox1_MaskInputRejected(object sender, MaskInputRejectedEventArgs e){log.Text = maskedTextBox1.Text;}private void maskedTextBox1_TextChanged(object sender, EventArgs e){log.Text = maskedTextBox1.Text;}private void monthCalendar1_DateChanged(object sender, DateRangeEventArgs e){log.Text = string.Format("{0} 至 {1}", monthCalendar1.SelectionStart, monthCalendar1.SelectionEnd);}private void notifyIcon1_DoubleClick(object sender, EventArgs e){if (this.Visible){this.Hide();}else{this.Show();}}private void numericUpDown1_ValueChanged(object sender, EventArgs e){log.Text = numericUpDown1.Value.ToString();}private void radioButton1_CheckedChanged(object sender, EventArgs e){log.Text = radioButton1.Text + (radioButton1.Checked ? "选中" : "未选中");}private void radioButton2_CheckedChanged(object sender, EventArgs e){log.Text = radioButton2.Text + (radioButton2.Checked ? "选中" : "未选中");}private void radioButton4_CheckedChanged(object sender, EventArgs e){log.Text = radioButton4.Text + (radioButton4.Checked ? "选中" : "未选中");}private void radioButton3_CheckedChanged(object sender, EventArgs e){log.Text = radioButton3.Text + (radioButton3.Checked ? "选中" : "未选中");}private void radioButton6_CheckedChanged(object sender, EventArgs e){log.Text = radioButton6.Text + (radioButton6.Checked ? "选中" : "未选中");}private void radioButton5_CheckedChanged(object sender, EventArgs e){log.Text = radioButton5.Text + (radioButton5.Checked ? "选中" : "未选中");}private void progressBar1_Click(object sender, EventArgs e){//log.Text = progressBar1.Value.ToString();}private void richTextBox2_TextChanged(object sender, EventArgs e){log.Text = richTextBox2.Text;}private void button14_Click(object sender, EventArgs e){richTextBox3.Text = "加法运算";}private void button15_Click(object sender, EventArgs e){richTextBox3.Text = "减法运算";}private void button16_Click(object sender, EventArgs e){richTextBox3.Text = "乘法运算";}private void button17_Click(object sender, EventArgs e){richTextBox3.Text = "除法运算";}private void 文件ToolStripMenuItem_Click(object sender, EventArgs e){MessageBox.Show("你点击了:文件");}private void 设置ToolStripMenuItem_Click(object sender, EventArgs e){MessageBox.Show("你点击了:设置");}private void toolStripButton1_Click(object sender, EventArgs e){MessageBox.Show("你点击了:工具栏");}private void toolStripButton2_Click(object sender, EventArgs e){MessageBox.Show("你点击了:工具栏");}private void toolStripButton3_Click(object sender, EventArgs e){MessageBox.Show("你点击了:工具栏");}private void toolStripButton4_Click(object sender, EventArgs e){MessageBox.Show("你点击了:工具栏");}private void toolStripLabel1_Click(object sender, EventArgs e){MessageBox.Show("你点击了:工具栏");}private void richTextBox5_TextChanged(object sender, EventArgs e){errorProvider1.SetError(richTextBox5, "错误提示示例");}private void Form1_FormClosed(object sender, FormClosedEventArgs e){System.Environment.Exit(0);}private void button22_Click(object sender, EventArgs e){process1.StartInfo.FileName = "notepad";process1.StartInfo.Arguments = string.Format(@"E:\\text.txt");process1.Start();}private void button23_Click(object sender, EventArgs e){timer1.Enabled = true;timer1.Interval = 1000;timer1.Tick += Timer1_Tick;}private void Timer1_Tick(object? sender, EventArgs e){log.Text = "定时器工作中.... " + DateTime.Now.ToString();}private void button24_Click(object sender, EventArgs e){pictureBox3.Image = imageList1.Images[0];}private void button25_Click(object sender, EventArgs e){pictureBox3.Image = imageList1.Images[1];}private void button26_Click(object sender, EventArgs e){pageSetupDialog1 = new PageSetupDialog{Document = printDocument1,AllowMargins = true,        //启用边距AllowOrientation = true,AllowPaper = true,AllowPrinter = true};pageSetupDialog1.ShowDialog();  //显示页面设置对话框}private void button27_Click(object sender, EventArgs e){printDialog1.Document = printDocument1;printDialog1.AllowPrintToFile = true;   //启用"打印到文件"复选框printDialog1.AllowCurrentPage = true;   //显示“当前项”按钮printDialog1.AllowSelection = true;     //启用"选择按钮"printDialog1.AllowSomePages = true;     //启用"页"按钮printDialog1.ShowDialog();}private void printDocument1_BeginPrint(object sender, PrintEventArgs e){}private void printDocument1_EndPrint(object sender, PrintEventArgs e){}private void printDocument1_PrintPage(object sender, PrintPageEventArgs e){e.Graphics!.DrawString("蝶恋花", new Font("宋体", 15), Brushes.Black, 350, 80);e.Graphics!.DrawLine(new Pen(Color.Black, (float)3.00), 100, 185, 720, 185);e.Graphics!.DrawString("伫倚危楼风细细,望极春愁,黯黯生天际。", new Font("宋体", 12), Brushes.Black, 110, 195);e.Graphics!.DrawString("草色烟光残照里,无言谁会凭阑意。", new Font("宋体", 12), Brushes.Black, 110, 220);e.Graphics!.DrawString("拟把疏狂图一醉,对酒当歌,强乐还无味。", new Font("宋体", 12), Brushes.Black, 110, 245);e.Graphics!.DrawString("衣带渐宽终不悔。为伊消得人憔悴。", new Font("宋体", 12), Brushes.Black, 110, 270);e.Graphics!.DrawLine(new Pen(Color.Black, (float)3.00), 100, 300, 720, 300);}private void button28_Click(object sender, EventArgs e){//打印预览对话框PrintPreviewDialog dialog = new PrintPreviewDialog();dialog.Document = printDocument1;dialog.ShowIcon = false;dialog.ShowDialog();}private void button29_Click(object sender, EventArgs e){DialogResult dialogResult = colorDialog1.ShowDialog();if (dialogResult == DialogResult.OK){richTextBox8.BackColor = colorDialog1.Color;}}private void button30_Click(object sender, EventArgs e){DialogResult dialogResult = folderBrowserDialog1.ShowDialog();if (dialogResult == DialogResult.OK){richTextBox8.Text = folderBrowserDialog1.SelectedPath;}}private void button31_Click(object sender, EventArgs e){DialogResult dialogResult = fontDialog1.ShowDialog();if (dialogResult == DialogResult.OK){richTextBox8.Font = fontDialog1.Font;}}private void button32_Click(object sender, EventArgs e){DialogResult dialogResult = openFileDialog1.ShowDialog();if (dialogResult == DialogResult.OK){richTextBox8.Text = File.ReadAllText(openFileDialog1.FileName);}}private void button33_Click(object sender, EventArgs e){DialogResult dialogResult = saveFileDialog1.ShowDialog();if (dialogResult == DialogResult.OK){File.WriteAllText(saveFileDialog1.FileName, richTextBox8.Text);richTextBox8.Text = $"写入内容:{richTextBox8.Text}到{saveFileDialog1.FileName}完成";}}private void uiLedBulb1_Click(object sender, EventArgs e){}private void uiLine1_Click(object sender, EventArgs e){}}
}

设计器代码(VS自动生成):

namespace WinForm练习
{partial class Form1{/// <summary>///  Required designer variable./// </summary>private System.ComponentModel.IContainer components = null;/// <summary>///  Clean up any resources being used./// </summary>/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>protected override void Dispose(bool disposing){if (disposing && (components != null)){components.Dispose();}base.Dispose(disposing);}#region Windows Form Designer generated code/// <summary>///  Required method for Designer support - do not modify///  the contents of this method with the code editor./// </summary>private void InitializeComponent(){components = new System.ComponentModel.Container();System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));DataGridViewCellStyle dataGridViewCellStyle1 = new DataGridViewCellStyle();DataGridViewCellStyle dataGridViewCellStyle2 = new DataGridViewCellStyle();DataGridViewCellStyle dataGridViewCellStyle3 = new DataGridViewCellStyle();DataGridViewCellStyle dataGridViewCellStyle4 = new DataGridViewCellStyle();DataGridViewCellStyle dataGridViewCellStyle5 = new DataGridViewCellStyle();button1 = new Button();tabControl1 = new TabControl();tabPage1 = new TabPage();richTextBox2 = new RichTextBox();treeView1 = new TreeView();radioButton5 = new RadioButton();radioButton6 = new RadioButton();radioButton3 = new RadioButton();radioButton4 = new RadioButton();radioButton2 = new RadioButton();radioButton1 = new RadioButton();label2 = new Label();progressBar1 = new ProgressBar();pictureBox1 = new PictureBox();numericUpDown1 = new NumericUpDown();monthCalendar1 = new MonthCalendar();maskedTextBox1 = new MaskedTextBox();listView1 = new ListView();columnHeader1 = new ColumnHeader();columnHeader2 = new ColumnHeader();columnHeader3 = new ColumnHeader();listBox1 = new ListBox();linkLabel1 = new LinkLabel();label1 = new Label();dateTimePicker2 = new DateTimePicker();dateTimePicker1 = new DateTimePicker();comboBox1 = new ComboBox();checkedListBox1 = new CheckedListBox();checkBox1 = new CheckBox();tabPage2 = new TabPage();tableLayoutPanel1 = new TableLayoutPanel();label5 = new Label();button20 = new Button();button21 = new Button();button19 = new Button();tabControl2 = new TabControl();tabPage4 = new TabPage();label4 = new Label();tabPage5 = new TabPage();button18 = new Button();splitContainer1 = new SplitContainer();button17 = new Button();button16 = new Button();button15 = new Button();button14 = new Button();richTextBox3 = new RichTextBox();panel1 = new Panel();richTextBox1 = new RichTextBox();dateTimePicker3 = new DateTimePicker();button13 = new Button();groupBox1 = new GroupBox();button12 = new Button();label3 = new Label();pictureBox2 = new PictureBox();checkBox4 = new CheckBox();button11 = new Button();comboBox2 = new ComboBox();button10 = new Button();flowLayoutPanel1 = new FlowLayoutPanel();button2 = new Button();button3 = new Button();button4 = new Button();button5 = new Button();checkBox2 = new CheckBox();checkBox3 = new CheckBox();button8 = new Button();button6 = new Button();button7 = new Button();button9 = new Button();tabPage3 = new TabPage();contextMenuStrip1 = new ContextMenuStrip(components);文件ToolStripMenuItem = new ToolStripMenuItem();设置ToolStripMenuItem = new ToolStripMenuItem();toolStripContainer1 = new ToolStripContainer();toolStrip5 = new ToolStrip();toolStripButton8 = new ToolStripButton();monthCalendar2 = new MonthCalendar();toolStrip3 = new ToolStrip();toolStripButton6 = new ToolStripButton();toolStrip4 = new ToolStrip();toolStripButton7 = new ToolStripButton();toolStrip2 = new ToolStrip();toolStripButton5 = new ToolStripButton();toolStrip1 = new ToolStrip();toolStripButton1 = new ToolStripButton();toolStripButton2 = new ToolStripButton();toolStripButton3 = new ToolStripButton();toolStripButton4 = new ToolStripButton();toolStripLabel1 = new ToolStripLabel();richTextBox4 = new RichTextBox();menuStrip1 = new MenuStrip();文件ToolStripMenuItem1 = new ToolStripMenuItem();打开ToolStripMenuItem = new ToolStripMenuItem();关闭ToolStripMenuItem = new ToolStripMenuItem();保存ToolStripMenuItem = new ToolStripMenuItem();另存为ToolStripMenuItem = new ToolStripMenuItem();退出ToolStripMenuItem = new ToolStripMenuItem();tabPage6 = new TabPage();dataGridView1 = new DataGridView();tabPage7 = new TabPage();button25 = new Button();button24 = new Button();pictureBox3 = new PictureBox();button23 = new Button();button22 = new Button();richTextBox7 = new RichTextBox();richTextBox6 = new RichTextBox();richTextBox5 = new RichTextBox();label6 = new Label();progressBar2 = new ProgressBar();tabPage8 = new TabPage();button28 = new Button();printPreviewControl1 = new PrintPreviewControl();printDocument1 = new System.Drawing.Printing.PrintDocument();button27 = new Button();button26 = new Button();tabPage9 = new TabPage();richTextBox8 = new RichTextBox();button33 = new Button();button32 = new Button();button31 = new Button();button30 = new Button();button29 = new Button();tabPage10 = new TabPage();tabControl3 = new TabControl();tabPage11 = new TabPage();uiContextMenuStrip1 = new Sunny.UI.UIContextMenuStrip();测试菜单ToolStripMenuItem = new ToolStripMenuItem();子菜单1ToolStripMenuItem = new ToolStripMenuItem();子菜单2ToolStripMenuItem = new ToolStripMenuItem();uiDataGridView1 = new Sunny.UI.UIDataGridView();Column1 = new DataGridViewTextBoxColumn();Column2 = new DataGridViewTextBoxColumn();Column3 = new DataGridViewTextBoxColumn();uiComboTreeView1 = new Sunny.UI.UIComboTreeView();uiComboDataGridView1 = new Sunny.UI.UIComboDataGridView();uiComboBox1 = new Sunny.UI.UIComboBox();uiColorPicker1 = new Sunny.UI.UIColorPicker();uiCheckBoxGroup1 = new Sunny.UI.UICheckBoxGroup();uiCheckBox1 = new Sunny.UI.UICheckBox();uiCalendar1 = new Sunny.UI.UICalendar();uiButton1 = new Sunny.UI.UIButton();uiBattery1 = new Sunny.UI.UIBattery();uiBarChart1 = new Sunny.UI.UIBarChart();uiAvatar1 = new Sunny.UI.UIAvatar();uiAnalogMeter1 = new Sunny.UI.UIAnalogMeter();tabPage12 = new TabPage();uiNavMenu1 = new Sunny.UI.UINavMenu();uiLinkLabel1 = new Sunny.UI.UILinkLabel();uiLineChart1 = new Sunny.UI.UILineChart();uiLine1 = new Sunny.UI.UILine();uiLight1 = new Sunny.UI.UILight();uiLedStopwatch1 = new Sunny.UI.UILedStopwatch();uiLedBulb1 = new Sunny.UI.UILedBulb();uiLabel1 = new Sunny.UI.UILabel();uiImageListBox1 = new Sunny.UI.UIImageListBox();uiImageButton1 = new Sunny.UI.UIImageButton();uiipTextBox1 = new Sunny.UI.UIIPTextBox();uiHorScrollBarEx1 = new Sunny.UI.UIHorScrollBarEx();uiHorScrollBar1 = new Sunny.UI.UIHorScrollBar();uiHeaderButton1 = new Sunny.UI.UIHeaderButton();uiFlowLayoutPanel1 = new Sunny.UI.UIFlowLayoutPanel();uiGifAvatar1 = new Sunny.UI.UIGifAvatar();uiDoughnutChart1 = new Sunny.UI.UIDoughnutChart();uiDoubleUpDown1 = new Sunny.UI.UIDoubleUpDown();uiDigitalLabel1 = new Sunny.UI.UIDigitalLabel();uiDatePicker1 = new Sunny.UI.UIDatePicker();uiDataGridViewFooter1 = new Sunny.UI.UIDataGridViewFooter();tabPage13 = new TabPage();uiSmoothLabel1 = new Sunny.UI.UISmoothLabel();uiSignal1 = new Sunny.UI.UISignal();uiScrollingText1 = new Sunny.UI.UIScrollingText();uiRuler1 = new Sunny.UI.UIRuler();uiRoundProcess2 = new Sunny.UI.UIRoundProcess();uiRoundMeter1 = new Sunny.UI.UIRoundMeter();uiRoundProcess1 = new Sunny.UI.UIRoundProcess();uiProgressIndicator1 = new Sunny.UI.UIProgressIndicator();uiProcessBar1 = new Sunny.UI.UIProcessBar();uiPieChart1 = new Sunny.UI.UIPieChart();uiPanel1 = new Sunny.UI.UIPanel();uiPagination1 = new Sunny.UI.UIPagination();uiNumPadTextBox1 = new Sunny.UI.UINumPadTextBox();uiNavBar1 = new Sunny.UI.UINavBar();uiMiniPagination1 = new Sunny.UI.UIMiniPagination();tabPage14 = new TabPage();uiSplitContainer1 = new Sunny.UI.UISplitContainer();tabPage15 = new TabPage();uiTransfer1 = new Sunny.UI.UITransfer();uiTextBox2 = new Sunny.UI.UITextBox();uiTrackBar1 = new Sunny.UI.UITrackBar();uiTitlePanel1 = new Sunny.UI.UITitlePanel();uiTimePicker1 = new Sunny.UI.UITimePicker();uiTableLayoutPanel1 = new Sunny.UI.UITableLayoutPanel();uiTabControlMenu1 = new Sunny.UI.UITabControlMenu();tabPage47 = new TabPage();tabPage48 = new TabPage();uiTabControl1 = new Sunny.UI.UITabControl();tabPage45 = new TabPage();uiTextBox1 = new Sunny.UI.UITextBox();tabPage46 = new TabPage();uiThermometer1 = new Sunny.UI.UIThermometer();uiSymbolLabel1 = new Sunny.UI.UISymbolLabel();uiSymbolButton1 = new Sunny.UI.UISymbolButton();uiSwitch1 = new Sunny.UI.UISwitch();tabPage16 = new TabPage();tabPage17 = new TabPage();tabPage18 = new TabPage();tabPage19 = new TabPage();tabPage20 = new TabPage();tabPage21 = new TabPage();tabPage22 = new TabPage();tabPage23 = new TabPage();tabPage24 = new TabPage();tabPage25 = new TabPage();tabPage26 = new TabPage();tabPage27 = new TabPage();tabPage28 = new TabPage();tabPage29 = new TabPage();tabPage30 = new TabPage();tabPage31 = new TabPage();tabPage32 = new TabPage();tabPage33 = new TabPage();tabPage34 = new TabPage();tabPage35 = new TabPage();tabPage36 = new TabPage();tabPage37 = new TabPage();tabPage38 = new TabPage();tabPage39 = new TabPage();tabPage40 = new TabPage();tabPage41 = new TabPage();tabPage42 = new TabPage();tabPage43 = new TabPage();tabPage44 = new TabPage();notifyIcon1 = new NotifyIcon(components);toolTip1 = new ToolTip(components);bindingSource1 = new BindingSource(components);backgroundWorker1 = new System.ComponentModel.BackgroundWorker();errorProvider1 = new ErrorProvider(components);fileSystemWatcher1 = new FileSystemWatcher();imageList1 = new ImageList(components);process1 = new System.Diagnostics.Process();timer1 = new System.Windows.Forms.Timer(components);helpProvider1 = new HelpProvider();pageSetupDialog1 = new PageSetupDialog();printDialog1 = new PrintDialog();printPreviewDialog1 = new PrintPreviewDialog();colorDialog1 = new ColorDialog();folderBrowserDialog1 = new FolderBrowserDialog();fontDialog1 = new FontDialog();openFileDialog1 = new OpenFileDialog();saveFileDialog1 = new SaveFileDialog();uiMillisecondTimer1 = new Sunny.UI.UIMillisecondTimer(components);log = new RichTextBox();uiStyleManager1 = new Sunny.UI.UIStyleManager(components);uiToolTip1 = new Sunny.UI.UIToolTip(components);uiTreeView1 = new Sunny.UI.UITreeView();uiTurnSwitch1 = new Sunny.UI.UITurnSwitch();uiUserControl1 = new Sunny.UI.UIUserControl();uiValve1 = new Sunny.UI.UIValve();uiVerScrollBarEx1 = new Sunny.UI.UIVerScrollBarEx();uiVerificationCode1 = new Sunny.UI.UIVerificationCode();uiWaitingBar1 = new Sunny.UI.UIWaitingBar();tabControl1.SuspendLayout();tabPage1.SuspendLayout();((System.ComponentModel.ISupportInitialize)pictureBox1).BeginInit();((System.ComponentModel.ISupportInitialize)numericUpDown1).BeginInit();tabPage2.SuspendLayout();tableLayoutPanel1.SuspendLayout();tabControl2.SuspendLayout();tabPage4.SuspendLayout();tabPage5.SuspendLayout();((System.ComponentModel.ISupportInitialize)splitContainer1).BeginInit();splitContainer1.Panel1.SuspendLayout();splitContainer1.Panel2.SuspendLayout();splitContainer1.SuspendLayout();panel1.SuspendLayout();groupBox1.SuspendLayout();((System.ComponentModel.ISupportInitialize)pictureBox2).BeginInit();flowLayoutPanel1.SuspendLayout();tabPage3.SuspendLayout();contextMenuStrip1.SuspendLayout();toolStripContainer1.BottomToolStripPanel.SuspendLayout();toolStripContainer1.ContentPanel.SuspendLayout();toolStripContainer1.LeftToolStripPanel.SuspendLayout();toolStripContainer1.RightToolStripPanel.SuspendLayout();toolStripContainer1.TopToolStripPanel.SuspendLayout();toolStripContainer1.SuspendLayout();toolStrip5.SuspendLayout();toolStrip3.SuspendLayout();toolStrip4.SuspendLayout();toolStrip2.SuspendLayout();toolStrip1.SuspendLayout();menuStrip1.SuspendLayout();tabPage6.SuspendLayout();((System.ComponentModel.ISupportInitialize)dataGridView1).BeginInit();tabPage7.SuspendLayout();((System.ComponentModel.ISupportInitialize)pictureBox3).BeginInit();tabPage8.SuspendLayout();tabPage9.SuspendLayout();tabPage10.SuspendLayout();tabControl3.SuspendLayout();tabPage11.SuspendLayout();uiContextMenuStrip1.SuspendLayout();((System.ComponentModel.ISupportInitialize)uiDataGridView1).BeginInit();tabPage12.SuspendLayout();((System.ComponentModel.ISupportInitialize)uiImageButton1).BeginInit();uiFlowLayoutPanel1.SuspendLayout();tabPage13.SuspendLayout();tabPage14.SuspendLayout();uiSplitContainer1.BeginInit();uiSplitContainer1.SuspendLayout();tabPage15.SuspendLayout();uiTransfer1.SuspendLayout();uiTabControlMenu1.SuspendLayout();uiTabControl1.SuspendLayout();tabPage45.SuspendLayout();tabPage46.SuspendLayout();tabPage16.SuspendLayout();((System.ComponentModel.ISupportInitialize)bindingSource1).BeginInit();((System.ComponentModel.ISupportInitialize)errorProvider1).BeginInit();((System.ComponentModel.ISupportInitialize)fileSystemWatcher1).BeginInit();SuspendLayout();// // button1// button1.Location = new Point(6, 6);button1.Name = "button1";button1.Size = new Size(94, 29);button1.TabIndex = 0;button1.Text = "按钮";button1.UseVisualStyleBackColor = true;button1.Click += button1_Click;button1.Enter += button1_Enter;// // tabControl1// tabControl1.Controls.Add(tabPage1);tabControl1.Controls.Add(tabPage2);tabControl1.Controls.Add(tabPage3);tabControl1.Controls.Add(tabPage6);tabControl1.Controls.Add(tabPage7);tabControl1.Controls.Add(tabPage8);tabControl1.Controls.Add(tabPage9);tabControl1.Controls.Add(tabPage10);tabControl1.Location = new Point(12, 12);tabControl1.Name = "tabControl1";tabControl1.SelectedIndex = 0;tabControl1.Size = new Size(1014, 503);tabControl1.TabIndex = 1;// // tabPage1// tabPage1.Controls.Add(richTextBox2);tabPage1.Controls.Add(treeView1);tabPage1.Controls.Add(radioButton5);tabPage1.Controls.Add(radioButton6);tabPage1.Controls.Add(radioButton3);tabPage1.Controls.Add(radioButton4);tabPage1.Controls.Add(radioButton2);tabPage1.Controls.Add(radioButton1);tabPage1.Controls.Add(label2);tabPage1.Controls.Add(progressBar1);tabPage1.Controls.Add(pictureBox1);tabPage1.Controls.Add(numericUpDown1);tabPage1.Controls.Add(monthCalendar1);tabPage1.Controls.Add(maskedTextBox1);tabPage1.Controls.Add(listView1);tabPage1.Controls.Add(listBox1);tabPage1.Controls.Add(linkLabel1);tabPage1.Controls.Add(label1);tabPage1.Controls.Add(dateTimePicker2);tabPage1.Controls.Add(dateTimePicker1);tabPage1.Controls.Add(comboBox1);tabPage1.Controls.Add(checkedListBox1);tabPage1.Controls.Add(checkBox1);tabPage1.Controls.Add(button1);tabPage1.Location = new Point(4, 29);tabPage1.Name = "tabPage1";tabPage1.Padding = new Padding(3);tabPage1.Size = new Size(1006, 470);tabPage1.TabIndex = 0;tabPage1.Text = "基础控件";tabPage1.UseVisualStyleBackColor = true;// // richTextBox2// richTextBox2.AcceptsTab = true;richTextBox2.Location = new Point(699, 16);richTextBox2.Name = "richTextBox2";richTextBox2.Size = new Size(291, 437);richTextBox2.TabIndex = 23;richTextBox2.Text = "";richTextBox2.TextChanged += richTextBox2_TextChanged;// // treeView1// treeView1.Location = new Point(252, 332);treeView1.Name = "treeView1";treeView1.Size = new Size(433, 121);treeView1.TabIndex = 22;// // radioButton5// radioButton5.AutoSize = true;radioButton5.Location = new Point(625, 295);radioButton5.Name = "radioButton5";radioButton5.Size = new Size(60, 24);radioButton5.TabIndex = 21;radioButton5.TabStop = true;radioButton5.Text = "棒球";radioButton5.UseVisualStyleBackColor = true;radioButton5.CheckedChanged += radioButton5_CheckedChanged;// // radioButton6// radioButton6.AutoSize = true;radioButton6.Location = new Point(544, 295);radioButton6.Name = "radioButton6";radioButton6.Size = new Size(75, 24);radioButton6.TabIndex = 20;radioButton6.TabStop = true;radioButton6.Text = "橄榄球";radioButton6.UseVisualStyleBackColor = true;radioButton6.CheckedChanged += radioButton6_CheckedChanged;// // radioButton3// radioButton3.AutoSize = true;radioButton3.Location = new Point(466, 295);radioButton3.Name = "radioButton3";radioButton3.Size = new Size(75, 24);radioButton3.TabIndex = 19;radioButton3.TabStop = true;radioButton3.Text = "乒乓球";radioButton3.UseVisualStyleBackColor = true;radioButton3.CheckedChanged += radioButton3_CheckedChanged;// // radioButton4// radioButton4.AutoSize = true;radioButton4.Location = new Point(394, 295);radioButton4.Name = "radioButton4";radioButton4.Size = new Size(60, 24);radioButton4.TabIndex = 18;radioButton4.TabStop = true;radioButton4.Text = "气球";radioButton4.UseVisualStyleBackColor = true;radioButton4.CheckedChanged += radioButton4_CheckedChanged;// // radioButton2// radioButton2.AutoSize = true;radioButton2.Location = new Point(317, 295);radioButton2.Name = "radioButton2";radioButton2.Size = new Size(60, 24);radioButton2.TabIndex = 17;radioButton2.TabStop = true;radioButton2.Text = "排球";radioButton2.UseVisualStyleBackColor = true;radioButton2.CheckedChanged += radioButton2_CheckedChanged;// // radioButton1// radioButton1.AutoSize = true;radioButton1.Location = new Point(249, 295);radioButton1.Name = "radioButton1";radioButton1.Size = new Size(60, 24);radioButton1.TabIndex = 16;radioButton1.TabStop = true;radioButton1.Text = "篮球";radioButton1.UseVisualStyleBackColor = true;radioButton1.CheckedChanged += radioButton1_CheckedChanged;// // label2// label2.AutoSize = true;label2.Location = new Point(444, 261);label2.Name = "label2";label2.Size = new Size(0, 20);label2.TabIndex = 15;// // progressBar1// progressBar1.Location = new Point(248, 257);progressBar1.Name = "progressBar1";progressBar1.Size = new Size(438, 29);progressBar1.Step = 1;progressBar1.TabIndex = 14;progressBar1.Click += progressBar1_Click;// // pictureBox1// pictureBox1.Image = (Image)resources.GetObject("pictureBox1.Image");pictureBox1.Location = new Point(249, 158);pictureBox1.Name = "pictureBox1";pictureBox1.Size = new Size(147, 93);pictureBox1.TabIndex = 13;pictureBox1.TabStop = false;// // numericUpDown1// numericUpDown1.Location = new Point(248, 123);numericUpDown1.Name = "numericUpDown1";numericUpDown1.Size = new Size(150, 27);numericUpDown1.TabIndex = 12;numericUpDown1.ValueChanged += numericUpDown1_ValueChanged;// // monthCalendar1// monthCalendar1.Location = new Point(424, 44);monthCalendar1.Name = "monthCalendar1";monthCalendar1.TabIndex = 11;monthCalendar1.DateChanged += monthCalendar1_DateChanged;// // maskedTextBox1// maskedTextBox1.Location = new Point(246, 87);maskedTextBox1.Mask = "000-0000-0000";maskedTextBox1.Name = "maskedTextBox1";maskedTextBox1.Size = new Size(150, 27);maskedTextBox1.TabIndex = 10;maskedTextBox1.MaskInputRejected += maskedTextBox1_MaskInputRejected;maskedTextBox1.TextChanged += maskedTextBox1_TextChanged;// // listView1// listView1.Columns.AddRange(new ColumnHeader[] { columnHeader1, columnHeader2, columnHeader3 });listView1.Location = new Point(10, 303);listView1.Name = "listView1";listView1.Size = new Size(190, 161);listView1.TabIndex = 9;listView1.UseCompatibleStateImageBehavior = false;// // columnHeader1// columnHeader1.Text = "序号";// // columnHeader2// columnHeader2.Text = "姓名";// // columnHeader3// columnHeader3.Text = "年龄";// // listBox1// listBox1.FormattingEnabled = true;listBox1.HorizontalScrollbar = true;listBox1.Items.AddRange(new object[] { "离离原上草;", "一岁一枯荣。", "野火烧不尽;", "春风吹又生。" });listBox1.Location = new Point(6, 187);listBox1.MultiColumn = true;listBox1.Name = "listBox1";listBox1.SelectionMode = SelectionMode.MultiSimple;listBox1.Size = new Size(194, 104);listBox1.TabIndex = 8;listBox1.SelectedIndexChanged += listBox1_SelectedIndexChanged;// // linkLabel1// linkLabel1.AutoSize = true;linkLabel1.LinkVisited = true;linkLabel1.Location = new Point(312, 55);linkLabel1.Name = "linkLabel1";linkLabel1.Size = new Size(84, 20);linkLabel1.TabIndex = 7;linkLabel1.TabStop = true;linkLabel1.Text = "打开记事本";linkLabel1.LinkClicked += linkLabel1_LinkClicked;// // label1// label1.AutoSize = true;label1.Location = new Point(245, 55);label1.Name = "label1";label1.Size = new Size(39, 20);label1.TabIndex = 6;label1.Text = "标签";label1.Click += label1_Click;// // dateTimePicker2// dateTimePicker2.Format = DateTimePickerFormat.Time;dateTimePicker2.Location = new Point(568, 15);dateTimePicker2.Name = "dateTimePicker2";dateTimePicker2.ShowCheckBox = true;dateTimePicker2.Size = new Size(118, 27);dateTimePicker2.TabIndex = 5;dateTimePicker2.ValueChanged += dateTimePicker2_ValueChanged;// // dateTimePicker1// dateTimePicker1.CustomFormat = "";dateTimePicker1.Format = DateTimePickerFormat.Short;dateTimePicker1.Location = new Point(424, 15);dateTimePicker1.Name = "dateTimePicker1";dateTimePicker1.ShowCheckBox = true;dateTimePicker1.Size = new Size(145, 27);dateTimePicker1.TabIndex = 4;dateTimePicker1.ValueChanged += dateTimePicker1_ValueChanged;// // comboBox1// comboBox1.FormattingEnabled = true;comboBox1.Items.AddRange(new object[] { "手动添加" });comboBox1.Location = new Point(245, 14);comboBox1.Name = "comboBox1";comboBox1.Size = new Size(151, 28);comboBox1.TabIndex = 3;comboBox1.SelectedIndexChanged += comboBox1_SelectedIndexChanged;// // checkedListBox1// checkedListBox1.FormattingEnabled = true;checkedListBox1.Items.AddRange(new object[] { "篮球", "排球", "气球", "乒乓球", "橄榄球", "热气球", "台球" });checkedListBox1.Location = new Point(6, 53);checkedListBox1.Name = "checkedListBox1";checkedListBox1.Size = new Size(194, 114);checkedListBox1.TabIndex = 2;checkedListBox1.SelectedIndexChanged += checkedListBox1_SelectedIndexChanged;// // checkBox1// checkBox1.AutoSize = true;checkBox1.Location = new Point(124, 9);checkBox1.Name = "checkBox1";checkBox1.Size = new Size(76, 24);checkBox1.TabIndex = 1;checkBox1.Text = "勾选框";checkBox1.UseVisualStyleBackColor = true;checkBox1.CheckedChanged += checkBox1_CheckedChanged;// // tabPage2// tabPage2.Controls.Add(tableLayoutPanel1);tabPage2.Controls.Add(tabControl2);tabPage2.Controls.Add(splitContainer1);tabPage2.Controls.Add(panel1);tabPage2.Controls.Add(groupBox1);tabPage2.Controls.Add(flowLayoutPanel1);tabPage2.Location = new Point(4, 29);tabPage2.Name = "tabPage2";tabPage2.Padding = new Padding(3);tabPage2.Size = new Size(1006, 470);tabPage2.TabIndex = 1;tabPage2.Text = "容器";tabPage2.UseVisualStyleBackColor = true;// // tableLayoutPanel1// tableLayoutPanel1.BackColor = Color.Yellow;tableLayoutPanel1.ColumnCount = 2;tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 50F));tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 50F));tableLayoutPanel1.Controls.Add(label5, 0, 0);tableLayoutPanel1.Controls.Add(button20, 1, 0);tableLayoutPanel1.Controls.Add(button21, 0, 1);tableLayoutPanel1.Controls.Add(button19, 1, 1);tableLayoutPanel1.Location = new Point(564, 226);tableLayoutPanel1.Name = "tableLayoutPanel1";tableLayoutPanel1.RowCount = 2;tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Percent, 50F));tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Percent, 50F));tableLayoutPanel1.Size = new Size(433, 231);tableLayoutPanel1.TabIndex = 5;// // label5// label5.AutoSize = true;label5.Location = new Point(3, 0);label5.Name = "label5";label5.Size = new Size(53, 20);label5.TabIndex = 0;label5.Text = "label5";// // button20// button20.Location = new Point(219, 3);button20.Name = "button20";button20.Size = new Size(94, 29);button20.TabIndex = 2;button20.Text = "button20";button20.UseVisualStyleBackColor = true;// // button21// button21.Location = new Point(3, 118);button21.Name = "button21";button21.Size = new Size(94, 29);button21.TabIndex = 3;button21.Text = "button21";button21.UseVisualStyleBackColor = true;// // button19// button19.Location = new Point(219, 118);button19.Name = "button19";button19.Size = new Size(94, 29);button19.TabIndex = 1;button19.Text = "button19";button19.UseVisualStyleBackColor = true;// // tabControl2// tabControl2.Controls.Add(tabPage4);tabControl2.Controls.Add(tabPage5);tabControl2.Location = new Point(279, 226);tabControl2.Name = "tabControl2";tabControl2.SelectedIndex = 0;tabControl2.Size = new Size(261, 235);tabControl2.TabIndex = 4;// // tabPage4// tabPage4.Controls.Add(label4);tabPage4.Location = new Point(4, 29);tabPage4.Name = "tabPage4";tabPage4.Padding = new Padding(3);tabPage4.Size = new Size(253, 202);tabPage4.TabIndex = 0;tabPage4.Text = "tabPage4";tabPage4.UseVisualStyleBackColor = true;// // label4// label4.AutoSize = true;label4.Location = new Point(76, 71);label4.Name = "label4";label4.Size = new Size(53, 20);label4.TabIndex = 0;label4.Text = "label4";// // tabPage5// tabPage5.Controls.Add(button18);tabPage5.Location = new Point(4, 29);tabPage5.Name = "tabPage5";tabPage5.Padding = new Padding(3);tabPage5.Size = new Size(253, 202);tabPage5.TabIndex = 1;tabPage5.Text = "tabPage5";tabPage5.UseVisualStyleBackColor = true;// // button18// button18.Location = new Point(104, 80);button18.Name = "button18";button18.Size = new Size(94, 29);button18.TabIndex = 0;button18.Text = "button18";button18.UseVisualStyleBackColor = true;// // splitContainer1// splitContainer1.BackColor = Color.OrangeRed;splitContainer1.Location = new Point(23, 219);splitContainer1.Name = "splitContainer1";// // splitContainer1.Panel1// splitContainer1.Panel1.Controls.Add(button17);splitContainer1.Panel1.Controls.Add(button16);splitContainer1.Panel1.Controls.Add(button15);splitContainer1.Panel1.Controls.Add(button14);// // splitContainer1.Panel2// splitContainer1.Panel2.Controls.Add(richTextBox3);splitContainer1.Size = new Size(233, 245);splitContainer1.SplitterDistance = 77;splitContainer1.TabIndex = 3;// // button17// button17.Location = new Point(12, 195);button17.Name = "button17";button17.Size = new Size(52, 29);button17.TabIndex = 3;button17.Text = "除";button17.UseVisualStyleBackColor = true;button17.Click += button17_Click;// // button16// button16.Location = new Point(12, 128);button16.Name = "button16";button16.Size = new Size(52, 29);button16.TabIndex = 2;button16.Text = "乘";button16.UseVisualStyleBackColor = true;button16.Click += button16_Click;// // button15// button15.Location = new Point(12, 65);button15.Name = "button15";button15.Size = new Size(52, 29);button15.TabIndex = 1;button15.Text = "减";button15.UseVisualStyleBackColor = true;button15.Click += button15_Click;// // button14// button14.Location = new Point(12, 12);button14.Name = "button14";button14.Size = new Size(52, 29);button14.TabIndex = 0;button14.Text = "加";button14.UseVisualStyleBackColor = true;button14.Click += button14_Click;// // richTextBox3// richTextBox3.Location = new Point(3, 3);richTextBox3.Name = "richTextBox3";richTextBox3.Size = new Size(146, 239);richTextBox3.TabIndex = 0;richTextBox3.Text = "";// // panel1// panel1.BackColor = Color.Bisque;panel1.Controls.Add(richTextBox1);panel1.Controls.Add(dateTimePicker3);panel1.Controls.Add(button13);panel1.Location = new Point(561, 19);panel1.Name = "panel1";panel1.Size = new Size(439, 183);panel1.TabIndex = 2;// // richTextBox1// richTextBox1.Location = new Point(3, 38);richTextBox1.Name = "richTextBox1";richTextBox1.Size = new Size(433, 142);richTextBox1.TabIndex = 2;richTextBox1.Text = "";// // dateTimePicker3// dateTimePicker3.Location = new Point(186, 5);dateTimePicker3.Name = "dateTimePicker3";dateTimePicker3.Size = new Size(250, 27);dateTimePicker3.TabIndex = 1;// // button13// button13.Location = new Point(3, 3);button13.Name = "button13";button13.Size = new Size(177, 29);button13.TabIndex = 0;button13.Text = "button13";button13.UseVisualStyleBackColor = true;// // groupBox1// groupBox1.BackColor = Color.Peru;groupBox1.Controls.Add(button12);groupBox1.Controls.Add(label3);groupBox1.Controls.Add(pictureBox2);groupBox1.Controls.Add(checkBox4);groupBox1.Controls.Add(button11);groupBox1.Controls.Add(comboBox2);groupBox1.Controls.Add(button10);groupBox1.Location = new Point(278, 19);groupBox1.Name = "groupBox1";groupBox1.Size = new Size(262, 183);groupBox1.TabIndex = 1;groupBox1.TabStop = false;groupBox1.Text = "groupBox1";// // button12// button12.Location = new Point(118, 124);button12.Name = "button12";button12.Size = new Size(136, 29);button12.TabIndex = 6;button12.Text = "button12";button12.UseVisualStyleBackColor = true;// // label3// label3.AutoSize = true;label3.Location = new Point(118, 101);label3.Name = "label3";label3.Size = new Size(53, 20);label3.TabIndex = 5;label3.Text = "label3";// // pictureBox2// pictureBox2.Location = new Point(9, 101);pictureBox2.Name = "pictureBox2";pictureBox2.Size = new Size(95, 62);pictureBox2.TabIndex = 4;pictureBox2.TabStop = false;// // checkBox4// checkBox4.AutoSize = true;checkBox4.Location = new Point(118, 62);checkBox4.Name = "checkBox4";checkBox4.Size = new Size(109, 24);checkBox4.TabIndex = 3;checkBox4.Text = "checkBox4";checkBox4.UseVisualStyleBackColor = true;// // button11// button11.Location = new Point(9, 58);button11.Name = "button11";button11.Size = new Size(94, 29);button11.TabIndex = 2;button11.Text = "button11";button11.UseVisualStyleBackColor = true;// // comboBox2// comboBox2.FormattingEnabled = true;comboBox2.Location = new Point(118, 25);comboBox2.Name = "comboBox2";comboBox2.Size = new Size(136, 28);comboBox2.TabIndex = 1;// // button10// button10.Location = new Point(10, 25);button10.Name = "button10";button10.Size = new Size(94, 29);button10.TabIndex = 0;button10.Text = "button10";button10.UseVisualStyleBackColor = true;// // flowLayoutPanel1// flowLayoutPanel1.BackColor = Color.NavajoWhite;flowLayoutPanel1.Controls.Add(button2);flowLayoutPanel1.Controls.Add(button3);flowLayoutPanel1.Controls.Add(button4);flowLayoutPanel1.Controls.Add(button5);flowLayoutPanel1.Controls.Add(checkBox2);flowLayoutPanel1.Controls.Add(checkBox3);flowLayoutPanel1.Controls.Add(button8);flowLayoutPanel1.Controls.Add(button6);flowLayoutPanel1.Controls.Add(button7);flowLayoutPanel1.Controls.Add(button9);flowLayoutPanel1.Location = new Point(17, 19);flowLayoutPanel1.Name = "flowLayoutPanel1";flowLayoutPanel1.Size = new Size(239, 183);flowLayoutPanel1.TabIndex = 0;toolTip1.SetToolTip(flowLayoutPanel1, "流布局控件");// // button2// button2.Location = new Point(3, 3);button2.Name = "button2";button2.Size = new Size(94, 29);button2.TabIndex = 0;button2.Text = "button2";button2.UseVisualStyleBackColor = true;// // button3// button3.Location = new Point(103, 3);button3.Name = "button3";button3.Size = new Size(94, 29);button3.TabIndex = 1;button3.Text = "button3";button3.UseVisualStyleBackColor = true;// // button4// button4.Location = new Point(3, 38);button4.Name = "button4";button4.Size = new Size(94, 29);button4.TabIndex = 2;button4.Text = "button4";button4.UseVisualStyleBackColor = true;// // button5// button5.Location = new Point(103, 38);button5.Name = "button5";button5.Size = new Size(94, 29);button5.TabIndex = 3;button5.Text = "button5";button5.UseVisualStyleBackColor = true;// // checkBox2// checkBox2.AutoSize = true;checkBox2.Location = new Point(3, 73);checkBox2.Name = "checkBox2";checkBox2.Size = new Size(109, 24);checkBox2.TabIndex = 4;checkBox2.Text = "checkBox2";checkBox2.UseVisualStyleBackColor = true;// // checkBox3// checkBox3.AutoSize = true;checkBox3.Location = new Point(118, 73);checkBox3.Name = "checkBox3";checkBox3.Size = new Size(109, 24);checkBox3.TabIndex = 5;checkBox3.Text = "checkBox3";checkBox3.UseVisualStyleBackColor = true;// // button8// button8.Location = new Point(3, 103);button8.Name = "button8";button8.Size = new Size(94, 29);button8.TabIndex = 8;button8.Text = "button8";button8.UseVisualStyleBackColor = true;// // button6// button6.Location = new Point(103, 103);button6.Name = "button6";button6.Size = new Size(94, 29);button6.TabIndex = 6;button6.Text = "button6";button6.UseVisualStyleBackColor = true;// // button7// button7.Location = new Point(3, 138);button7.Name = "button7";button7.Size = new Size(94, 29);button7.TabIndex = 7;button7.Text = "button7";button7.UseVisualStyleBackColor = true;// // button9// button9.Location = new Point(103, 138);button9.Name = "button9";button9.Size = new Size(94, 29);button9.TabIndex = 9;button9.Text = "button9";button9.UseVisualStyleBackColor = true;// // tabPage3// tabPage3.ContextMenuStrip = contextMenuStrip1;tabPage3.Controls.Add(toolStripContainer1);tabPage3.Controls.Add(toolStrip1);tabPage3.Controls.Add(richTextBox4);tabPage3.Controls.Add(menuStrip1);tabPage3.Location = new Point(4, 29);tabPage3.Name = "tabPage3";tabPage3.Padding = new Padding(3);tabPage3.Size = new Size(1006, 470);tabPage3.TabIndex = 2;tabPage3.Text = "菜单和工具栏";tabPage3.UseVisualStyleBackColor = true;// // contextMenuStrip1// contextMenuStrip1.ImageScalingSize = new Size(20, 20);contextMenuStrip1.Items.AddRange(new ToolStripItem[] { 文件ToolStripMenuItem, 设置ToolStripMenuItem });contextMenuStrip1.Name = "contextMenuStrip1";contextMenuStrip1.Size = new Size(109, 52);// // 文件ToolStripMenuItem// 文件ToolStripMenuItem.Name = "文件ToolStripMenuItem";文件ToolStripMenuItem.Size = new Size(108, 24);文件ToolStripMenuItem.Text = "文件";文件ToolStripMenuItem.Click += 文件ToolStripMenuItem_Click;// // 设置ToolStripMenuItem// 设置ToolStripMenuItem.Name = "设置ToolStripMenuItem";设置ToolStripMenuItem.Size = new Size(108, 24);设置ToolStripMenuItem.Text = "设置";设置ToolStripMenuItem.Click += 设置ToolStripMenuItem_Click;// // toolStripContainer1// // // toolStripContainer1.BottomToolStripPanel// toolStripContainer1.BottomToolStripPanel.BackColor = Color.IndianRed;toolStripContainer1.BottomToolStripPanel.Controls.Add(toolStrip5);// // toolStripContainer1.ContentPanel// toolStripContainer1.ContentPanel.BackColor = Color.Chartreuse;toolStripContainer1.ContentPanel.Controls.Add(monthCalendar2);toolStripContainer1.ContentPanel.Size = new Size(658, 323);// // toolStripContainer1.LeftToolStripPanel// toolStripContainer1.LeftToolStripPanel.BackColor = Color.Tomato;toolStripContainer1.LeftToolStripPanel.Controls.Add(toolStrip3);toolStripContainer1.Location = new Point(165, 44);toolStripContainer1.Name = "toolStripContainer1";// // toolStripContainer1.RightToolStripPanel// toolStripContainer1.RightToolStripPanel.BackColor = Color.PaleGoldenrod;toolStripContainer1.RightToolStripPanel.Controls.Add(toolStrip4);toolStripContainer1.Size = new Size(816, 377);toolStripContainer1.TabIndex = 3;toolStripContainer1.Text = "toolStripContainer1";// // toolStripContainer1.TopToolStripPanel// toolStripContainer1.TopToolStripPanel.BackColor = Color.Cyan;toolStripContainer1.TopToolStripPanel.Controls.Add(toolStrip2);// // toolStrip5// toolStrip5.Dock = DockStyle.None;toolStrip5.ImageScalingSize = new Size(20, 20);toolStrip5.Items.AddRange(new ToolStripItem[] { toolStripButton8 });toolStrip5.Location = new Point(4, 0);toolStrip5.Name = "toolStrip5";toolStrip5.Size = new Size(91, 27);toolStrip5.TabIndex = 0;// // toolStripButton8// toolStripButton8.Image = (Image)resources.GetObject("toolStripButton8.Image");toolStripButton8.ImageTransparentColor = Color.Magenta;toolStripButton8.Name = "toolStripButton8";toolStripButton8.Size = new Size(78, 24);toolStripButton8.Text = "下菜单";// // monthCalendar2// monthCalendar2.Location = new Point(9, 9);monthCalendar2.Name = "monthCalendar2";monthCalendar2.TabIndex = 3;// // toolStrip3// toolStrip3.Dock = DockStyle.None;toolStrip3.ImageScalingSize = new Size(20, 20);toolStrip3.Items.AddRange(new ToolStripItem[] { toolStripButton6 });toolStrip3.Location = new Point(0, 4);toolStrip3.Name = "toolStrip3";toolStrip3.Size = new Size(79, 39);toolStrip3.TabIndex = 0;// // toolStripButton6// toolStripButton6.Image = (Image)resources.GetObject("toolStripButton6.Image");toolStripButton6.ImageTransparentColor = Color.Magenta;toolStripButton6.Name = "toolStripButton6";toolStripButton6.Size = new Size(77, 24);toolStripButton6.Text = "左菜单";// // toolStrip4// toolStrip4.Dock = DockStyle.None;toolStrip4.ImageScalingSize = new Size(20, 20);toolStrip4.Items.AddRange(new ToolStripItem[] { toolStripButton7 });toolStrip4.Location = new Point(0, 4);toolStrip4.Name = "toolStrip4";toolStrip4.Size = new Size(79, 39);toolStrip4.TabIndex = 0;// // toolStripButton7// toolStripButton7.Image = (Image)resources.GetObject("toolStripButton7.Image");toolStripButton7.ImageTransparentColor = Color.Magenta;toolStripButton7.Name = "toolStripButton7";toolStripButton7.Size = new Size(77, 24);toolStripButton7.Text = "右菜单";// // toolStrip2// toolStrip2.Dock = DockStyle.None;toolStrip2.ImageScalingSize = new Size(20, 20);toolStrip2.Items.AddRange(new ToolStripItem[] { toolStripButton5 });toolStrip2.Location = new Point(4, 0);toolStrip2.Name = "toolStrip2";toolStrip2.Size = new Size(91, 27);toolStrip2.TabIndex = 0;// // toolStripButton5// toolStripButton5.Image = (Image)resources.GetObject("toolStripButton5.Image");toolStripButton5.ImageTransparentColor = Color.Magenta;toolStripButton5.Name = "toolStripButton5";toolStripButton5.Size = new Size(78, 24);toolStripButton5.Text = "上菜单";// // toolStrip1// toolStrip1.Dock = DockStyle.Bottom;toolStrip1.ImageScalingSize = new Size(20, 20);toolStrip1.Items.AddRange(new ToolStripItem[] { toolStripButton1, toolStripButton2, toolStripButton3, toolStripButton4, toolStripLabel1 });toolStrip1.Location = new Point(3, 440);toolStrip1.Name = "toolStrip1";toolStrip1.Size = new Size(1000, 27);toolStrip1.TabIndex = 2;toolStrip1.Text = "toolStrip1";// // toolStripButton1// toolStripButton1.Image = (Image)resources.GetObject("toolStripButton1.Image");toolStripButton1.ImageTransparentColor = Color.Magenta;toolStripButton1.Name = "toolStripButton1";toolStripButton1.Size = new Size(87, 24);toolStripButton1.Text = "工具栏1";toolStripButton1.Click += toolStripButton1_Click;// // toolStripButton2// toolStripButton2.Image = (Image)resources.GetObject("toolStripButton2.Image");toolStripButton2.ImageTransparentColor = Color.Magenta;toolStripButton2.Name = "toolStripButton2";toolStripButton2.Size = new Size(87, 24);toolStripButton2.Text = "工具栏2";toolStripButton2.Click += toolStripButton2_Click;// // toolStripButton3// toolStripButton3.Image = (Image)resources.GetObject("toolStripButton3.Image");toolStripButton3.ImageTransparentColor = Color.Magenta;toolStripButton3.Name = "toolStripButton3";toolStripButton3.Size = new Size(87, 24);toolStripButton3.Text = "工具栏3";toolStripButton3.Click += toolStripButton3_Click;// // toolStripButton4// toolStripButton4.Image = (Image)resources.GetObject("toolStripButton4.Image");toolStripButton4.ImageTransparentColor = Color.Magenta;toolStripButton4.Name = "toolStripButton4";toolStripButton4.Size = new Size(87, 24);toolStripButton4.Text = "工具栏4";toolStripButton4.Click += toolStripButton4_Click;// // toolStripLabel1// toolStripLabel1.Name = "toolStripLabel1";toolStripLabel1.Size = new Size(84, 24);toolStripLabel1.Text = "工具栏标签";toolStripLabel1.Click += toolStripLabel1_Click;// // richTextBox4// richTextBox4.ContextMenuStrip = contextMenuStrip1;richTextBox4.Location = new Point(6, 44);richTextBox4.Name = "richTextBox4";richTextBox4.Size = new Size(139, 377);richTextBox4.TabIndex = 0;richTextBox4.Text = "点击鼠标右键调出菜单";// // menuStrip1// menuStrip1.ImageScalingSize = new Size(20, 20);menuStrip1.Items.AddRange(new ToolStripItem[] { 文件ToolStripMenuItem1 });menuStrip1.Location = new Point(3, 3);menuStrip1.Name = "menuStrip1";menuStrip1.Size = new Size(1000, 28);menuStrip1.TabIndex = 1;menuStrip1.Text = "menuStrip1";// // 文件ToolStripMenuItem1// 文件ToolStripMenuItem1.DropDownItems.AddRange(new ToolStripItem[] { 打开ToolStripMenuItem, 关闭ToolStripMenuItem, 保存ToolStripMenuItem, 另存为ToolStripMenuItem, 退出ToolStripMenuItem });文件ToolStripMenuItem1.Name = "文件ToolStripMenuItem1";文件ToolStripMenuItem1.Size = new Size(53, 24);文件ToolStripMenuItem1.Text = "文件";// // 打开ToolStripMenuItem// 打开ToolStripMenuItem.Name = "打开ToolStripMenuItem";打开ToolStripMenuItem.Size = new Size(137, 26);打开ToolStripMenuItem.Text = "打开";// // 关闭ToolStripMenuItem// 关闭ToolStripMenuItem.Name = "关闭ToolStripMenuItem";关闭ToolStripMenuItem.Size = new Size(137, 26);关闭ToolStripMenuItem.Text = "关闭";// // 保存ToolStripMenuItem// 保存ToolStripMenuItem.Name = "保存ToolStripMenuItem";保存ToolStripMenuItem.Size = new Size(137, 26);保存ToolStripMenuItem.Text = "保存";// // 另存为ToolStripMenuItem// 另存为ToolStripMenuItem.Name = "另存为ToolStripMenuItem";另存为ToolStripMenuItem.Size = new Size(137, 26);另存为ToolStripMenuItem.Text = "另存为";// // 退出ToolStripMenuItem// 退出ToolStripMenuItem.Name = "退出ToolStripMenuItem";退出ToolStripMenuItem.Size = new Size(137, 26);退出ToolStripMenuItem.Text = "退出";// // tabPage6// tabPage6.Controls.Add(dataGridView1);tabPage6.Location = new Point(4, 29);tabPage6.Name = "tabPage6";tabPage6.Size = new Size(1006, 470);tabPage6.TabIndex = 3;tabPage6.Text = "数据";tabPage6.UseVisualStyleBackColor = true;// // dataGridView1// dataGridView1.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.AutoSize;dataGridView1.Location = new Point(21, 19);dataGridView1.Name = "dataGridView1";dataGridView1.RowHeadersWidth = 51;dataGridView1.Size = new Size(937, 420);dataGridView1.TabIndex = 0;// // tabPage7// tabPage7.Controls.Add(button25);tabPage7.Controls.Add(button24);tabPage7.Controls.Add(pictureBox3);tabPage7.Controls.Add(button23);tabPage7.Controls.Add(button22);tabPage7.Controls.Add(richTextBox7);tabPage7.Controls.Add(richTextBox6);tabPage7.Controls.Add(richTextBox5);tabPage7.Controls.Add(label6);tabPage7.Controls.Add(progressBar2);tabPage7.Location = new Point(4, 29);tabPage7.Name = "tabPage7";tabPage7.Size = new Size(1006, 470);tabPage7.TabIndex = 4;tabPage7.Text = "组件";tabPage7.UseVisualStyleBackColor = true;// // button25// button25.Location = new Point(324, 255);button25.Name = "button25";button25.Size = new Size(94, 29);button25.TabIndex = 9;button25.Text = "下一张";button25.UseVisualStyleBackColor = true;button25.Click += button25_Click;// // button24// button24.Location = new Point(203, 255);button24.Name = "button24";button24.Size = new Size(94, 29);button24.TabIndex = 8;button24.Text = "上一张";button24.UseVisualStyleBackColor = true;button24.Click += button24_Click;// // pictureBox3// pictureBox3.BackColor = Color.PeachPuff;pictureBox3.Location = new Point(193, 293);pictureBox3.Name = "pictureBox3";pictureBox3.Size = new Size(225, 153);pictureBox3.TabIndex = 7;pictureBox3.TabStop = false;// // button23// button23.Location = new Point(21, 249);button23.Name = "button23";button23.Size = new Size(153, 197);button23.TabIndex = 6;button23.Text = "启动计时器";button23.UseVisualStyleBackColor = true;button23.Click += button23_Click;// // button22// button22.Location = new Point(704, 76);button22.Name = "button22";button22.Size = new Size(227, 155);button22.TabIndex = 5;button22.Text = "启动记事本";button22.UseVisualStyleBackColor = true;button22.Click += button22_Click;// // richTextBox7// richTextBox7.Location = new Point(468, 76);richTextBox7.Name = "richTextBox7";richTextBox7.Size = new Size(209, 155);richTextBox7.TabIndex = 4;richTextBox7.Text = "按下F1键调出帮助菜单";// // richTextBox6// richTextBox6.Location = new Point(193, 76);richTextBox6.Name = "richTextBox6";richTextBox6.Size = new Size(225, 155);richTextBox6.TabIndex = 3;richTextBox6.Text = "修改文件:E:\\软件界面\\winform示例\\WinForm练习\\text.txt 查看文件监控控件功能";// // richTextBox5// richTextBox5.Location = new Point(21, 76);richTextBox5.Name = "richTextBox5";richTextBox5.Size = new Size(153, 155);richTextBox5.TabIndex = 2;richTextBox5.Text = "在这里输入内容调出错误提示";richTextBox5.TextChanged += richTextBox5_TextChanged;// // label6// label6.AutoSize = true;label6.Location = new Point(408, 37);label6.Name = "label6";label6.Size = new Size(0, 20);label6.TabIndex = 1;// // progressBar2// progressBar2.Location = new Point(16, 33);progressBar2.Name = "progressBar2";progressBar2.Size = new Size(915, 29);progressBar2.Step = 1;progressBar2.TabIndex = 0;// // tabPage8// tabPage8.Controls.Add(button28);tabPage8.Controls.Add(printPreviewControl1);tabPage8.Controls.Add(button27);tabPage8.Controls.Add(button26);tabPage8.Location = new Point(4, 29);tabPage8.Name = "tabPage8";tabPage8.Size = new Size(1006, 470);tabPage8.TabIndex = 5;tabPage8.Text = "打印";tabPage8.UseVisualStyleBackColor = true;// // button28// button28.Location = new Point(338, 25);button28.Name = "button28";button28.Size = new Size(665, 78);button28.TabIndex = 3;button28.Text = "printPreviewDialog打印预览";button28.UseVisualStyleBackColor = true;button28.Click += button28_Click;// // printPreviewControl1// printPreviewControl1.AutoZoom = false;printPreviewControl1.Document = printDocument1;printPreviewControl1.Location = new Point(19, 121);printPreviewControl1.Name = "printPreviewControl1";printPreviewControl1.Size = new Size(984, 346);printPreviewControl1.TabIndex = 2;printPreviewControl1.Zoom = 0.21129170230966637D;// // printDocument1// printDocument1.BeginPrint += printDocument1_BeginPrint;printDocument1.EndPrint += printDocument1_EndPrint;printDocument1.PrintPage += printDocument1_PrintPage;// // button27// button27.Location = new Point(19, 74);button27.Name = "button27";button27.Size = new Size(313, 29);button27.TabIndex = 1;button27.Text = "printDialog打印设置";button27.UseVisualStyleBackColor = true;button27.Click += button27_Click;// // button26// button26.Location = new Point(16, 25);button26.Name = "button26";button26.Size = new Size(316, 29);button26.TabIndex = 0;button26.Text = "pageSetupDialog打印设置";button26.UseVisualStyleBackColor = true;button26.Click += button26_Click;// // tabPage9// tabPage9.Controls.Add(richTextBox8);tabPage9.Controls.Add(button33);tabPage9.Controls.Add(button32);tabPage9.Controls.Add(button31);tabPage9.Controls.Add(button30);tabPage9.Controls.Add(button29);tabPage9.Location = new Point(4, 29);tabPage9.Name = "tabPage9";tabPage9.Size = new Size(1006, 470);tabPage9.TabIndex = 6;tabPage9.Text = "对话框";tabPage9.UseVisualStyleBackColor = true;// // richTextBox8// richTextBox8.Location = new Point(114, 15);richTextBox8.Name = "richTextBox8";richTextBox8.Size = new Size(875, 440);richTextBox8.TabIndex = 5;richTextBox8.Text = "";// // button33// button33.Location = new Point(14, 301);button33.Name = "button33";button33.Size = new Size(94, 29);button33.TabIndex = 4;button33.Text = "保存文件";button33.UseVisualStyleBackColor = true;button33.Click += button33_Click;// // button32// button32.Location = new Point(12, 247);button32.Name = "button32";button32.Size = new Size(94, 29);button32.TabIndex = 3;button32.Text = "打开文件";button32.UseVisualStyleBackColor = true;button32.Click += button32_Click;// // button31// button31.Location = new Point(12, 195);button31.Name = "button31";button31.Size = new Size(94, 29);button31.TabIndex = 2;button31.Text = "字体对话框";button31.UseVisualStyleBackColor = true;button31.Click += button31_Click;// // button30// button30.Location = new Point(12, 147);button30.Name = "button30";button30.Size = new Size(94, 29);button30.TabIndex = 1;button30.Text = "文件浏览";button30.UseVisualStyleBackColor = true;button30.Click += button30_Click;// // button29// button29.Location = new Point(10, 97);button29.Name = "button29";button29.Size = new Size(94, 29);button29.TabIndex = 0;button29.Text = "颜色对话框";button29.UseVisualStyleBackColor = true;button29.Click += button29_Click;// // tabPage10// tabPage10.Controls.Add(tabControl3);tabPage10.Location = new Point(4, 29);tabPage10.Name = "tabPage10";tabPage10.Size = new Size(1006, 470);tabPage10.TabIndex = 7;tabPage10.Text = "第三方控件SunnyUI";tabPage10.UseVisualStyleBackColor = true;// // tabControl3// tabControl3.Controls.Add(tabPage11);tabControl3.Controls.Add(tabPage12);tabControl3.Controls.Add(tabPage13);tabControl3.Controls.Add(tabPage14);tabControl3.Controls.Add(tabPage15);tabControl3.Controls.Add(tabPage16);tabControl3.Controls.Add(tabPage17);tabControl3.Controls.Add(tabPage18);tabControl3.Controls.Add(tabPage19);tabControl3.Controls.Add(tabPage20);tabControl3.Controls.Add(tabPage21);tabControl3.Controls.Add(tabPage22);tabControl3.Controls.Add(tabPage23);tabControl3.Controls.Add(tabPage24);tabControl3.Controls.Add(tabPage25);tabControl3.Controls.Add(tabPage26);tabControl3.Controls.Add(tabPage27);tabControl3.Controls.Add(tabPage28);tabControl3.Controls.Add(tabPage29);tabControl3.Controls.Add(tabPage30);tabControl3.Controls.Add(tabPage31);tabControl3.Controls.Add(tabPage32);tabControl3.Controls.Add(tabPage33);tabControl3.Controls.Add(tabPage34);tabControl3.Controls.Add(tabPage35);tabControl3.Controls.Add(tabPage36);tabControl3.Controls.Add(tabPage37);tabControl3.Controls.Add(tabPage38);tabControl3.Controls.Add(tabPage39);tabControl3.Controls.Add(tabPage40);tabControl3.Controls.Add(tabPage41);tabControl3.Controls.Add(tabPage42);tabControl3.Controls.Add(tabPage43);tabControl3.Controls.Add(tabPage44);tabControl3.Location = new Point(3, 3);tabControl3.Name = "tabControl3";tabControl3.SelectedIndex = 0;tabControl3.Size = new Size(1000, 464);tabControl3.TabIndex = 0;// // tabPage11// tabPage11.ContextMenuStrip = uiContextMenuStrip1;tabPage11.Controls.Add(uiDataGridView1);tabPage11.Controls.Add(uiComboTreeView1);tabPage11.Controls.Add(uiComboDataGridView1);tabPage11.Controls.Add(uiComboBox1);tabPage11.Controls.Add(uiColorPicker1);tabPage11.Controls.Add(uiCheckBoxGroup1);tabPage11.Controls.Add(uiCheckBox1);tabPage11.Controls.Add(uiCalendar1);tabPage11.Controls.Add(uiButton1);tabPage11.Controls.Add(uiBattery1);tabPage11.Controls.Add(uiBarChart1);tabPage11.Controls.Add(uiAvatar1);tabPage11.Controls.Add(uiAnalogMeter1);tabPage11.Location = new Point(4, 29);tabPage11.Name = "tabPage11";tabPage11.Padding = new Padding(3);tabPage11.Size = new Size(992, 431);tabPage11.TabIndex = 0;tabPage11.Text = "tabPage11";tabPage11.UseVisualStyleBackColor = true;// // uiContextMenuStrip1// uiContextMenuStrip1.BackColor = Color.FromArgb(243, 249, 255);uiContextMenuStrip1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiContextMenuStrip1.ImageScalingSize = new Size(20, 20);uiContextMenuStrip1.Items.AddRange(new ToolStripItem[] { 测试菜单ToolStripMenuItem });uiContextMenuStrip1.Name = "uiContextMenuStrip1";uiContextMenuStrip1.Size = new Size(159, 28);// // 测试菜单ToolStripMenuItem// 测试菜单ToolStripMenuItem.DropDownItems.AddRange(new ToolStripItem[] { 子菜单1ToolStripMenuItem, 子菜单2ToolStripMenuItem });测试菜单ToolStripMenuItem.Name = "测试菜单ToolStripMenuItem";测试菜单ToolStripMenuItem.Size = new Size(158, 24);测试菜单ToolStripMenuItem.Text = "测试菜单";// // 子菜单1ToolStripMenuItem// 子菜单1ToolStripMenuItem.Name = "子菜单1ToolStripMenuItem";子菜单1ToolStripMenuItem.Size = new Size(162, 26);子菜单1ToolStripMenuItem.Text = "子菜单1";// // 子菜单2ToolStripMenuItem// 子菜单2ToolStripMenuItem.Name = "子菜单2ToolStripMenuItem";子菜单2ToolStripMenuItem.Size = new Size(162, 26);子菜单2ToolStripMenuItem.Text = "子菜单2";// // uiDataGridView1// dataGridViewCellStyle1.BackColor = Color.FromArgb(235, 243, 255);uiDataGridView1.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;uiDataGridView1.BackgroundColor = Color.White;uiDataGridView1.ColumnHeadersBorderStyle = DataGridViewHeaderBorderStyle.Single;dataGridViewCellStyle2.Alignment = DataGridViewContentAlignment.MiddleCenter;dataGridViewCellStyle2.BackColor = Color.FromArgb(80, 160, 255);dataGridViewCellStyle2.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);dataGridViewCellStyle2.ForeColor = Color.White;dataGridViewCellStyle2.SelectionBackColor = SystemColors.Highlight;dataGridViewCellStyle2.SelectionForeColor = SystemColors.HighlightText;dataGridViewCellStyle2.WrapMode = DataGridViewTriState.True;uiDataGridView1.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2;uiDataGridView1.ColumnHeadersHeight = 32;uiDataGridView1.ColumnHeadersHeightSizeMode = DataGridViewColumnHeadersHeightSizeMode.DisableResizing;uiDataGridView1.Columns.AddRange(new DataGridViewColumn[] { Column1, Column2, Column3 });dataGridViewCellStyle3.Alignment = DataGridViewContentAlignment.MiddleLeft;dataGridViewCellStyle3.BackColor = SystemColors.Window;dataGridViewCellStyle3.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);dataGridViewCellStyle3.ForeColor = SystemColors.ControlText;dataGridViewCellStyle3.SelectionBackColor = SystemColors.Highlight;dataGridViewCellStyle3.SelectionForeColor = SystemColors.HighlightText;dataGridViewCellStyle3.WrapMode = DataGridViewTriState.False;uiDataGridView1.DefaultCellStyle = dataGridViewCellStyle3;uiDataGridView1.EnableHeadersVisualStyles = false;uiDataGridView1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiDataGridView1.GridColor = Color.FromArgb(80, 160, 255);uiDataGridView1.Location = new Point(811, 239);uiDataGridView1.Name = "uiDataGridView1";dataGridViewCellStyle4.Alignment = DataGridViewContentAlignment.MiddleLeft;dataGridViewCellStyle4.BackColor = Color.FromArgb(235, 243, 255);dataGridViewCellStyle4.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);dataGridViewCellStyle4.ForeColor = Color.FromArgb(48, 48, 48);dataGridViewCellStyle4.SelectionBackColor = Color.FromArgb(80, 160, 255);dataGridViewCellStyle4.SelectionForeColor = Color.White;dataGridViewCellStyle4.WrapMode = DataGridViewTriState.True;uiDataGridView1.RowHeadersDefaultCellStyle = dataGridViewCellStyle4;uiDataGridView1.RowHeadersWidth = 51;dataGridViewCellStyle5.BackColor = Color.White;dataGridViewCellStyle5.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiDataGridView1.RowsDefaultCellStyle = dataGridViewCellStyle5;uiDataGridView1.SelectedIndex = -1;uiDataGridView1.Size = new Size(175, 188);uiDataGridView1.StripeOddColor = Color.FromArgb(235, 243, 255);uiDataGridView1.TabIndex = 12;// // Column1// Column1.HeaderText = "标题1";Column1.MinimumWidth = 6;Column1.Name = "Column1";Column1.Width = 60;// // Column2// Column2.HeaderText = "标题2";Column2.MinimumWidth = 6;Column2.Name = "Column2";Column2.Width = 20;// // Column3// Column3.HeaderText = "标题3";Column3.MinimumWidth = 6;Column3.Name = "Column3";Column3.Width = 20;// // uiComboTreeView1// uiComboTreeView1.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;uiComboTreeView1.FillColor = Color.White;uiComboTreeView1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiComboTreeView1.Location = new Point(616, 387);uiComboTreeView1.Margin = new Padding(4, 5, 4, 5);uiComboTreeView1.MinimumSize = new Size(63, 0);uiComboTreeView1.Name = "uiComboTreeView1";uiComboTreeView1.Padding = new Padding(0, 0, 30, 2);uiComboTreeView1.Size = new Size(188, 36);uiComboTreeView1.SymbolSize = 24;uiComboTreeView1.TabIndex = 11;uiComboTreeView1.Text = "uiComboTreeView1";uiComboTreeView1.TextAlignment = ContentAlignment.MiddleLeft;uiComboTreeView1.Watermark = "";// // uiComboDataGridView1// uiComboDataGridView1.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;uiComboDataGridView1.FillColor = Color.White;uiComboDataGridView1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiComboDataGridView1.Location = new Point(616, 337);uiComboDataGridView1.Margin = new Padding(4, 5, 4, 5);uiComboDataGridView1.MinimumSize = new Size(63, 0);uiComboDataGridView1.Name = "uiComboDataGridView1";uiComboDataGridView1.Padding = new Padding(0, 0, 30, 2);uiComboDataGridView1.Size = new Size(188, 36);uiComboDataGridView1.SymbolSize = 24;uiComboDataGridView1.TabIndex = 10;uiComboDataGridView1.Text = "uiComboDataGridView1";uiComboDataGridView1.TextAlignment = ContentAlignment.MiddleLeft;uiComboDataGridView1.Watermark = "";// // uiComboBox1// uiComboBox1.DataSource = null;uiComboBox1.FillColor = Color.White;uiComboBox1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiComboBox1.ItemHoverColor = Color.FromArgb(155, 200, 255);uiComboBox1.ItemSelectForeColor = Color.FromArgb(235, 243, 255);uiComboBox1.Location = new Point(616, 290);uiComboBox1.Margin = new Padding(4, 5, 4, 5);uiComboBox1.MinimumSize = new Size(63, 0);uiComboBox1.Name = "uiComboBox1";uiComboBox1.Padding = new Padding(0, 0, 30, 2);uiComboBox1.Size = new Size(188, 36);uiComboBox1.SymbolSize = 24;uiComboBox1.TabIndex = 9;uiComboBox1.Text = "uiComboBox1";uiComboBox1.TextAlignment = ContentAlignment.MiddleLeft;uiComboBox1.Watermark = "";// // uiColorPicker1// uiColorPicker1.DropDownStyle = Sunny.UI.UIDropDownStyle.DropDownList;uiColorPicker1.FillColor = Color.White;uiColorPicker1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiColorPicker1.Location = new Point(616, 239);uiColorPicker1.Margin = new Padding(4, 5, 4, 5);uiColorPicker1.MinimumSize = new Size(63, 0);uiColorPicker1.Name = "uiColorPicker1";uiColorPicker1.Padding = new Padding(0, 0, 30, 2);uiColorPicker1.Size = new Size(188, 41);uiColorPicker1.SymbolSize = 24;uiColorPicker1.TabIndex = 8;uiColorPicker1.TextAlignment = ContentAlignment.MiddleLeft;uiColorPicker1.Watermark = "";// // uiCheckBoxGroup1// uiCheckBoxGroup1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiCheckBoxGroup1.HoverColor = Color.FromArgb(220, 236, 255);uiCheckBoxGroup1.Location = new Point(237, 239);uiCheckBoxGroup1.Margin = new Padding(4, 5, 4, 5);uiCheckBoxGroup1.MinimumSize = new Size(1, 1);uiCheckBoxGroup1.Name = "uiCheckBoxGroup1";uiCheckBoxGroup1.Padding = new Padding(0, 32, 0, 0);uiCheckBoxGroup1.SelectedIndexes = (List<int>)resources.GetObject("uiCheckBoxGroup1.SelectedIndexes");uiCheckBoxGroup1.Size = new Size(360, 184);uiCheckBoxGroup1.TabIndex = 7;uiCheckBoxGroup1.Text = "uiCheckBoxGroup1";uiCheckBoxGroup1.TextAlignment = ContentAlignment.MiddleLeft;// // uiCheckBox1// uiCheckBox1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiCheckBox1.ForeColor = Color.FromArgb(48, 48, 48);uiCheckBox1.Location = new Point(19, 389);uiCheckBox1.MinimumSize = new Size(1, 1);uiCheckBox1.Name = "uiCheckBox1";uiCheckBox1.Size = new Size(125, 36);uiCheckBox1.TabIndex = 6;uiCheckBox1.Text = "uiCheckBox1";// // uiCalendar1// uiCalendar1.Date = new DateTime(2024, 6, 2, 0, 0, 0, 0);uiCalendar1.FillColor = Color.White;uiCalendar1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiCalendar1.Location = new Point(603, 6);uiCalendar1.MinimumSize = new Size(240, 180);uiCalendar1.Name = "uiCalendar1";uiCalendar1.PrimaryColor = Color.FromArgb(80, 160, 255);uiCalendar1.Size = new Size(383, 225);uiCalendar1.TabIndex = 5;uiCalendar1.Text = "uiCalendar1";uiCalendar1.TextAlignment = ContentAlignment.MiddleCenter;// // uiButton1// uiButton1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiButton1.Location = new Point(19, 339);uiButton1.MinimumSize = new Size(1, 1);uiButton1.Name = "uiButton1";uiButton1.Size = new Size(125, 44);uiButton1.TabIndex = 4;uiButton1.Text = "uiButton1";uiButton1.TipsFont = new Font("宋体", 9F, FontStyle.Regular, GraphicsUnit.Point, 134);// // uiBattery1// uiBattery1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiBattery1.Location = new Point(100, 262);uiBattery1.MinimumSize = new Size(1, 1);uiBattery1.Name = "uiBattery1";uiBattery1.Size = new Size(50, 71);uiBattery1.TabIndex = 3;uiBattery1.Text = "uiBattery1";// // uiBarChart1// uiBarChart1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiBarChart1.LegendFont = new Font("宋体", 9F, FontStyle.Regular, GraphicsUnit.Point, 134);uiBarChart1.Location = new Point(237, 6);uiBarChart1.MinimumSize = new Size(1, 1);uiBarChart1.Name = "uiBarChart1";uiBarChart1.Size = new Size(360, 225);uiBarChart1.SubFont = new Font("宋体", 9F, FontStyle.Regular, GraphicsUnit.Point, 134);uiBarChart1.TabIndex = 2;uiBarChart1.Text = "uiBarChart1";// // uiAvatar1// uiAvatar1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiAvatar1.Location = new Point(19, 262);uiAvatar1.MinimumSize = new Size(1, 1);uiAvatar1.Name = "uiAvatar1";uiAvatar1.Size = new Size(75, 75);uiAvatar1.TabIndex = 1;uiAvatar1.Text = "uiAvatar1";// // uiAnalogMeter1// uiAnalogMeter1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiAnalogMeter1.Location = new Point(6, 6);uiAnalogMeter1.MaxValue = 100D;uiAnalogMeter1.MinimumSize = new Size(1, 1);uiAnalogMeter1.MinValue = 0D;uiAnalogMeter1.Name = "uiAnalogMeter1";uiAnalogMeter1.Renderer = null;uiAnalogMeter1.Size = new Size(225, 225);uiAnalogMeter1.TabIndex = 0;uiAnalogMeter1.Text = "uiAnalogMeter1";uiAnalogMeter1.Value = 0D;// // tabPage12// tabPage12.Controls.Add(uiNavMenu1);tabPage12.Controls.Add(uiLinkLabel1);tabPage12.Controls.Add(uiLineChart1);tabPage12.Controls.Add(uiLine1);tabPage12.Controls.Add(uiLight1);tabPage12.Controls.Add(uiLedStopwatch1);tabPage12.Controls.Add(uiLedBulb1);tabPage12.Controls.Add(uiLabel1);tabPage12.Controls.Add(uiImageListBox1);tabPage12.Controls.Add(uiImageButton1);tabPage12.Controls.Add(uiipTextBox1);tabPage12.Controls.Add(uiHorScrollBarEx1);tabPage12.Controls.Add(uiHorScrollBar1);tabPage12.Controls.Add(uiHeaderButton1);tabPage12.Controls.Add(uiFlowLayoutPanel1);tabPage12.Controls.Add(uiDoughnutChart1);tabPage12.Controls.Add(uiDoubleUpDown1);tabPage12.Controls.Add(uiDigitalLabel1);tabPage12.Controls.Add(uiDatePicker1);tabPage12.Controls.Add(uiDataGridViewFooter1);tabPage12.Location = new Point(4, 29);tabPage12.Name = "tabPage12";tabPage12.Padding = new Padding(3);tabPage12.Size = new Size(992, 431);tabPage12.TabIndex = 1;tabPage12.Text = "tabPage12";tabPage12.UseVisualStyleBackColor = true;// // uiNavMenu1// uiNavMenu1.BorderStyle = BorderStyle.None;uiNavMenu1.DrawMode = TreeViewDrawMode.OwnerDrawAll;uiNavMenu1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiNavMenu1.FullRowSelect = true;uiNavMenu1.ItemHeight = 50;uiNavMenu1.Location = new Point(167, 274);uiNavMenu1.Name = "uiNavMenu1";uiNavMenu1.ShowLines = false;uiNavMenu1.Size = new Size(190, 151);uiNavMenu1.TabIndex = 19;uiNavMenu1.TipsFont = new Font("宋体", 9F, FontStyle.Regular, GraphicsUnit.Point, 134);// // uiLinkLabel1// uiLinkLabel1.ActiveLinkColor = Color.FromArgb(80, 160, 255);uiLinkLabel1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiLinkLabel1.ForeColor = Color.FromArgb(48, 48, 48);uiLinkLabel1.LinkBehavior = LinkBehavior.AlwaysUnderline;uiLinkLabel1.Location = new Point(16, 396);uiLinkLabel1.Name = "uiLinkLabel1";uiLinkLabel1.Size = new Size(135, 29);uiLinkLabel1.TabIndex = 18;uiLinkLabel1.TabStop = true;uiLinkLabel1.Text = "uiLinkLabel1";uiLinkLabel1.VisitedLinkColor = Color.FromArgb(230, 80, 80);// // uiLineChart1// uiLineChart1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiLineChart1.LegendFont = new Font("宋体", 9F, FontStyle.Regular, GraphicsUnit.Point, 134);uiLineChart1.Location = new Point(382, 233);uiLineChart1.MinimumSize = new Size(1, 1);uiLineChart1.MouseDownType = Sunny.UI.UILineChartMouseDownType.Zoom;uiLineChart1.Name = "uiLineChart1";uiLineChart1.Size = new Size(591, 192);uiLineChart1.SubFont = new Font("宋体", 9F, FontStyle.Regular, GraphicsUnit.Point, 134);uiLineChart1.TabIndex = 17;uiLineChart1.Text = "uiLineChart1";// // uiLine1// uiLine1.BackColor = Color.Transparent;uiLine1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiLine1.ForeColor = Color.FromArgb(48, 48, 48);uiLine1.Location = new Point(24, 344);uiLine1.MinimumSize = new Size(1, 1);uiLine1.Name = "uiLine1";uiLine1.Size = new Size(127, 36);uiLine1.TabIndex = 16;uiLine1.Text = "uiLine1";uiLine1.Click += uiLine1_Click;// // uiLight1// uiLight1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiLight1.Location = new Point(107, 281);uiLight1.MinimumSize = new Size(1, 1);uiLight1.Name = "uiLight1";uiLight1.Radius = 44;uiLight1.Size = new Size(44, 44);uiLight1.TabIndex = 15;uiLight1.Text = "uiLight1";// // uiLedStopwatch1// uiLedStopwatch1.BackColor = Color.Black;uiLedStopwatch1.ForeColor = Color.Lime;uiLedStopwatch1.Location = new Point(167, 224);uiLedStopwatch1.Name = "uiLedStopwatch1";uiLedStopwatch1.Size = new Size(190, 34);uiLedStopwatch1.TabIndex = 14;uiLedStopwatch1.Text = "00:00";// // uiLedBulb1// uiLedBulb1.Location = new Point(24, 285);uiLedBulb1.Name = "uiLedBulb1";uiLedBulb1.Size = new Size(47, 40);uiLedBulb1.TabIndex = 13;uiLedBulb1.Text = "uiLedBulb1";uiLedBulb1.Click += uiLedBulb1_Click;// // uiLabel1// uiLabel1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiLabel1.ForeColor = Color.FromArgb(48, 48, 48);uiLabel1.Location = new Point(24, 224);uiLabel1.Name = "uiLabel1";uiLabel1.Size = new Size(127, 40);uiLabel1.TabIndex = 12;uiLabel1.Text = "uiLabel1";uiLabel1.TextAlign = ContentAlignment.MiddleLeft;// // uiImageListBox1// uiImageListBox1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiImageListBox1.HoverColor = Color.FromArgb(155, 200, 255);uiImageListBox1.ItemSelectForeColor = Color.White;uiImageListBox1.Location = new Point(778, 119);uiImageListBox1.Margin = new Padding(4, 5, 4, 5);uiImageListBox1.MinimumSize = new Size(1, 1);uiImageListBox1.Name = "uiImageListBox1";uiImageListBox1.Padding = new Padding(2);uiImageListBox1.ShowText = false;uiImageListBox1.Size = new Size(195, 92);uiImageListBox1.TabIndex = 11;uiImageListBox1.Text = "uiImageListBox1";uiImageListBox1.TextAlignment = ContentAlignment.MiddleCenter;// // uiImageButton1// uiImageButton1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiImageButton1.Location = new Point(778, 67);uiImageButton1.Name = "uiImageButton1";uiImageButton1.Size = new Size(195, 44);uiImageButton1.TabIndex = 10;uiImageButton1.TabStop = false;uiImageButton1.Text = "uiImageButton1";// // uiipTextBox1// uiipTextBox1.FillColor2 = Color.FromArgb(235, 243, 255);uiipTextBox1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiipTextBox1.Location = new Point(778, 17);uiipTextBox1.Margin = new Padding(4, 5, 4, 5);uiipTextBox1.MinimumSize = new Size(1, 1);uiipTextBox1.Name = "uiipTextBox1";uiipTextBox1.Padding = new Padding(1);uiipTextBox1.ShowText = false;uiipTextBox1.Size = new Size(195, 36);uiipTextBox1.TabIndex = 9;uiipTextBox1.TextAlignment = ContentAlignment.MiddleCenter;// // uiHorScrollBarEx1// uiHorScrollBarEx1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiHorScrollBarEx1.Location = new Point(596, 166);uiHorScrollBarEx1.MinimumSize = new Size(1, 1);uiHorScrollBarEx1.Name = "uiHorScrollBarEx1";uiHorScrollBarEx1.Size = new Size(156, 45);uiHorScrollBarEx1.TabIndex = 8;uiHorScrollBarEx1.Text = "uiHorScrollBarEx1";// // uiHorScrollBar1// uiHorScrollBar1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiHorScrollBar1.Location = new Point(588, 123);uiHorScrollBar1.MinimumSize = new Size(1, 1);uiHorScrollBar1.Name = "uiHorScrollBar1";uiHorScrollBar1.Size = new Size(164, 29);uiHorScrollBar1.TabIndex = 7;uiHorScrollBar1.Text = "uiHorScrollBar1";// // uiHeaderButton1// uiHeaderButton1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiHeaderButton1.Location = new Point(585, 17);uiHeaderButton1.MinimumSize = new Size(1, 1);uiHeaderButton1.Name = "uiHeaderButton1";uiHeaderButton1.Padding = new Padding(0, 8, 0, 3);uiHeaderButton1.Radius = 0;uiHeaderButton1.RadiusSides = Sunny.UI.UICornerRadiusSides.None;uiHeaderButton1.RectSides = ToolStripStatusLabelBorderSides.None;uiHeaderButton1.Size = new Size(167, 86);uiHeaderButton1.TabIndex = 6;uiHeaderButton1.Text = "uiHeaderButton1";uiHeaderButton1.TipsFont = new Font("宋体", 9F, FontStyle.Regular, GraphicsUnit.Point, 134);// // uiFlowLayoutPanel1// uiFlowLayoutPanel1.Controls.Add(uiGifAvatar1);uiFlowLayoutPanel1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiFlowLayoutPanel1.Location = new Point(382, 17);uiFlowLayoutPanel1.Margin = new Padding(4, 5, 4, 5);uiFlowLayoutPanel1.MinimumSize = new Size(1, 1);uiFlowLayoutPanel1.Name = "uiFlowLayoutPanel1";uiFlowLayoutPanel1.Padding = new Padding(2);uiFlowLayoutPanel1.ShowText = false;uiFlowLayoutPanel1.Size = new Size(183, 194);uiFlowLayoutPanel1.TabIndex = 5;uiFlowLayoutPanel1.Text = "uiFlowLayoutPanel1";uiFlowLayoutPanel1.TextAlignment = ContentAlignment.MiddleCenter;// // uiGifAvatar1// uiGifAvatar1.FillColor = Color.FromArgb(243, 249, 255);uiGifAvatar1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiGifAvatar1.Location = new Point(23, 24);uiGifAvatar1.MinimumSize = new Size(1, 1);uiGifAvatar1.Name = "uiGifAvatar1";uiGifAvatar1.RectColor = Color.FromArgb(243, 249, 255);uiGifAvatar1.Size = new Size(136, 141);uiGifAvatar1.TabIndex = 6;uiGifAvatar1.Text = "uiGifAvatar1";// // uiDoughnutChart1// uiDoughnutChart1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiDoughnutChart1.LegendFont = new Font("宋体", 9F, FontStyle.Regular, GraphicsUnit.Point, 134);uiDoughnutChart1.Location = new Point(167, 17);uiDoughnutChart1.MinimumSize = new Size(1, 1);uiDoughnutChart1.Name = "uiDoughnutChart1";uiDoughnutChart1.Size = new Size(208, 194);uiDoughnutChart1.SubFont = new Font("宋体", 9F, FontStyle.Regular, GraphicsUnit.Point, 134);uiDoughnutChart1.TabIndex = 4;uiDoughnutChart1.Text = "uiDoughnutChart1";// // uiDoubleUpDown1// uiDoubleUpDown1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiDoubleUpDown1.Location = new Point(24, 175);uiDoubleUpDown1.Margin = new Padding(4, 5, 4, 5);uiDoubleUpDown1.MinimumSize = new Size(100, 0);uiDoubleUpDown1.Name = "uiDoubleUpDown1";uiDoubleUpDown1.ShowText = false;uiDoubleUpDown1.Size = new Size(127, 36);uiDoubleUpDown1.TabIndex = 3;uiDoubleUpDown1.Text = "uiDoubleUpDown1";uiDoubleUpDown1.TextAlignment = ContentAlignment.MiddleCenter;// // uiDigitalLabel1// uiDigitalLabel1.BackColor = Color.Black;uiDigitalLabel1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiDigitalLabel1.ForeColor = Color.Lime;uiDigitalLabel1.Location = new Point(20, 111);uiDigitalLabel1.MinimumSize = new Size(1, 1);uiDigitalLabel1.Name = "uiDigitalLabel1";uiDigitalLabel1.Size = new Size(131, 52);uiDigitalLabel1.TabIndex = 2;uiDigitalLabel1.Text = "uiDigitalLabel1";// // uiDatePicker1// uiDatePicker1.FillColor = Color.White;uiDatePicker1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiDatePicker1.Location = new Point(16, 67);uiDatePicker1.Margin = new Padding(4, 5, 4, 5);uiDatePicker1.MaxLength = 10;uiDatePicker1.MinimumSize = new Size(63, 0);uiDatePicker1.Name = "uiDatePicker1";uiDatePicker1.Padding = new Padding(0, 0, 30, 2);uiDatePicker1.Size = new Size(135, 36);uiDatePicker1.SymbolDropDown = 61555;uiDatePicker1.SymbolNormal = 61555;uiDatePicker1.SymbolSize = 24;uiDatePicker1.TabIndex = 1;uiDatePicker1.Text = "2024-06-02";uiDatePicker1.TextAlignment = ContentAlignment.MiddleLeft;uiDatePicker1.Value = new DateTime(2024, 6, 2, 15, 3, 46, 817);uiDatePicker1.Watermark = "";// // uiDataGridViewFooter1// uiDataGridViewFooter1.DataGridView = uiDataGridView1;uiDataGridViewFooter1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiDataGridViewFooter1.Location = new Point(14, 17);uiDataGridViewFooter1.MinimumSize = new Size(1, 1);uiDataGridViewFooter1.Name = "uiDataGridViewFooter1";uiDataGridViewFooter1.RadiusSides = Sunny.UI.UICornerRadiusSides.None;uiDataGridViewFooter1.Size = new Size(137, 38);uiDataGridViewFooter1.TabIndex = 0;uiDataGridViewFooter1.Text = "uiDataGridViewFooter1";// // tabPage13// tabPage13.Controls.Add(uiSmoothLabel1);tabPage13.Controls.Add(uiSignal1);tabPage13.Controls.Add(uiScrollingText1);tabPage13.Controls.Add(uiRuler1);tabPage13.Controls.Add(uiRoundProcess2);tabPage13.Controls.Add(uiRoundMeter1);tabPage13.Controls.Add(uiRoundProcess1);tabPage13.Controls.Add(uiProgressIndicator1);tabPage13.Controls.Add(uiProcessBar1);tabPage13.Controls.Add(uiPieChart1);tabPage13.Controls.Add(uiPanel1);tabPage13.Controls.Add(uiPagination1);tabPage13.Controls.Add(uiNumPadTextBox1);tabPage13.Controls.Add(uiNavBar1);tabPage13.Controls.Add(uiMiniPagination1);tabPage13.Location = new Point(4, 29);tabPage13.Name = "tabPage13";tabPage13.Size = new Size(992, 431);tabPage13.TabIndex = 2;tabPage13.Text = "tabPage13";tabPage13.UseVisualStyleBackColor = true;// // uiSmoothLabel1// uiSmoothLabel1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiSmoothLabel1.Location = new Point(727, 370);uiSmoothLabel1.Name = "uiSmoothLabel1";uiSmoothLabel1.Size = new Size(150, 36);uiSmoothLabel1.TabIndex = 14;uiSmoothLabel1.Text = "uiSmoothLabel1";// // uiSignal1// uiSignal1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiSignal1.Location = new Point(662, 370);uiSignal1.MinimumSize = new Size(1, 1);uiSignal1.Name = "uiSignal1";uiSignal1.Size = new Size(59, 36);uiSignal1.TabIndex = 13;uiSignal1.Text = "uiSignal1";// // uiScrollingText1// uiScrollingText1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiScrollingText1.Location = new Point(797, 86);uiScrollingText1.MinimumSize = new Size(1, 1);uiScrollingText1.Name = "uiScrollingText1";uiScrollingText1.Size = new Size(188, 44);uiScrollingText1.TabIndex = 12;uiScrollingText1.Text = "uiScrollingText1";// // uiRuler1// uiRuler1.BackColor = Color.Transparent;uiRuler1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiRuler1.Location = new Point(797, 40);uiRuler1.MinimumSize = new Size(1, 1);uiRuler1.Name = "uiRuler1";uiRuler1.Size = new Size(188, 36);uiRuler1.TabIndex = 11;uiRuler1.Text = "uiRuler1";// // uiRoundProcess2// uiRoundProcess2.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiRoundProcess2.ForeColor2 = Color.Black;uiRoundProcess2.Location = new Point(848, 136);uiRoundProcess2.MinimumSize = new Size(1, 1);uiRoundProcess2.Name = "uiRoundProcess2";uiRoundProcess2.Size = new Size(141, 217);uiRoundProcess2.TabIndex = 10;uiRoundProcess2.Text = "uiRoundProcess2";// // uiRoundMeter1// uiRoundMeter1.AngleImage = (Image)resources.GetObject("uiRoundMeter1.AngleImage");uiRoundMeter1.BackgroundImage = (Image)resources.GetObject("uiRoundMeter1.BackgroundImage");uiRoundMeter1.BackgroundImageLayout = ImageLayout.None;uiRoundMeter1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiRoundMeter1.Location = new Point(676, 136);uiRoundMeter1.MinimumSize = new Size(1, 1);uiRoundMeter1.Name = "uiRoundMeter1";uiRoundMeter1.Size = new Size(147, 217);uiRoundMeter1.TabIndex = 9;uiRoundMeter1.Text = "uiRoundMeter1";// // uiRoundProcess1// uiRoundProcess1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiRoundProcess1.ForeColor2 = Color.Black;uiRoundProcess1.Location = new Point(178, 481);uiRoundProcess1.MinimumSize = new Size(1, 1);uiRoundProcess1.Name = "uiRoundProcess1";uiRoundProcess1.Size = new Size(150, 150);uiRoundProcess1.TabIndex = 8;uiRoundProcess1.Text = "uiRoundProcess1";// // uiProgressIndicator1// uiProgressIndicator1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiProgressIndicator1.Location = new Point(676, 40);uiProgressIndicator1.MinimumSize = new Size(1, 1);uiProgressIndicator1.Name = "uiProgressIndicator1";uiProgressIndicator1.Size = new Size(115, 90);uiProgressIndicator1.TabIndex = 7;uiProgressIndicator1.Text = "uiProgressIndicator1";// // uiProcessBar1// uiProcessBar1.FillColor = Color.FromArgb(235, 243, 255);uiProcessBar1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiProcessBar1.Location = new Point(9, 370);uiProcessBar1.MinimumSize = new Size(70, 3);uiProcessBar1.Name = "uiProcessBar1";uiProcessBar1.Size = new Size(647, 36);uiProcessBar1.TabIndex = 6;uiProcessBar1.Text = "uiProcessBar1";// // uiPieChart1// uiPieChart1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiPieChart1.LegendFont = new Font("宋体", 9F, FontStyle.Regular, GraphicsUnit.Point, 134);uiPieChart1.Location = new Point(368, 133);uiPieChart1.MinimumSize = new Size(1, 1);uiPieChart1.Name = "uiPieChart1";uiPieChart1.Size = new Size(288, 220);uiPieChart1.SubFont = new Font("宋体", 9F, FontStyle.Regular, GraphicsUnit.Point, 134);uiPieChart1.TabIndex = 5;uiPieChart1.Text = "uiPieChart1";// // uiPanel1// uiPanel1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiPanel1.Location = new Point(9, 128);uiPanel1.Margin = new Padding(4, 5, 4, 5);uiPanel1.MinimumSize = new Size(1, 1);uiPanel1.Name = "uiPanel1";uiPanel1.Size = new Size(338, 225);uiPanel1.TabIndex = 4;uiPanel1.Text = "uiPanel1";uiPanel1.TextAlignment = ContentAlignment.MiddleCenter;// // uiPagination1// uiPagination1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiPagination1.Location = new Point(4, 86);uiPagination1.Margin = new Padding(4, 5, 4, 5);uiPagination1.MinimumSize = new Size(1, 1);uiPagination1.Name = "uiPagination1";uiPagination1.RectSides = ToolStripStatusLabelBorderSides.None;uiPagination1.ShowText = false;uiPagination1.Size = new Size(652, 44);uiPagination1.TabIndex = 3;uiPagination1.Text = "uiPagination1";uiPagination1.TextAlignment = ContentAlignment.MiddleCenter;// // uiNumPadTextBox1// uiNumPadTextBox1.FillColor = Color.White;uiNumPadTextBox1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiNumPadTextBox1.Location = new Point(445, 40);uiNumPadTextBox1.Margin = new Padding(4, 5, 4, 5);uiNumPadTextBox1.MinimumSize = new Size(63, 0);uiNumPadTextBox1.Name = "uiNumPadTextBox1";uiNumPadTextBox1.Padding = new Padding(0, 0, 30, 2);uiNumPadTextBox1.Size = new Size(211, 36);uiNumPadTextBox1.SymbolSize = 24;uiNumPadTextBox1.TabIndex = 2;uiNumPadTextBox1.Text = "uiNumPadTextBox1";uiNumPadTextBox1.TextAlignment = ContentAlignment.MiddleLeft;uiNumPadTextBox1.Watermark = "";// // uiNavBar1// uiNavBar1.Dock = DockStyle.Top;uiNavBar1.DropMenuFont = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiNavBar1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiNavBar1.Location = new Point(0, 0);uiNavBar1.Name = "uiNavBar1";uiNavBar1.Size = new Size(992, 32);uiNavBar1.TabIndex = 1;uiNavBar1.Text = "uiNavBar1";// // uiMiniPagination1// uiMiniPagination1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiMiniPagination1.Location = new Point(4, 40);uiMiniPagination1.Margin = new Padding(4, 5, 4, 5);uiMiniPagination1.MinimumSize = new Size(1, 1);uiMiniPagination1.Name = "uiMiniPagination1";uiMiniPagination1.RadiusSides = Sunny.UI.UICornerRadiusSides.None;uiMiniPagination1.RectSides = ToolStripStatusLabelBorderSides.None;uiMiniPagination1.ShowText = false;uiMiniPagination1.Size = new Size(433, 50);uiMiniPagination1.TabIndex = 0;uiMiniPagination1.Text = "uiMiniPagination1";uiMiniPagination1.TextAlignment = ContentAlignment.MiddleCenter;uiMiniPagination1.TotalCount = 1000;// // tabPage14// tabPage14.Controls.Add(uiSplitContainer1);tabPage14.Location = new Point(4, 29);tabPage14.Name = "tabPage14";tabPage14.Size = new Size(992, 431);tabPage14.TabIndex = 3;tabPage14.Text = "tabPage14";tabPage14.UseVisualStyleBackColor = true;// // uiSplitContainer1// uiSplitContainer1.Dock = DockStyle.Fill;uiSplitContainer1.Location = new Point(0, 0);uiSplitContainer1.MinimumSize = new Size(20, 20);uiSplitContainer1.Name = "uiSplitContainer1";// // uiSplitContainer1.Panel1// uiSplitContainer1.Panel1.BackColor = Color.IndianRed;// // uiSplitContainer1.Panel2// uiSplitContainer1.Panel2.BackColor = Color.Black;uiSplitContainer1.Size = new Size(992, 431);uiSplitContainer1.SplitterDistance = 330;uiSplitContainer1.SplitterWidth = 11;uiSplitContainer1.TabIndex = 0;// // tabPage15// tabPage15.Controls.Add(uiTransfer1);tabPage15.Controls.Add(uiTrackBar1);tabPage15.Controls.Add(uiTitlePanel1);tabPage15.Controls.Add(uiTimePicker1);tabPage15.Controls.Add(uiTableLayoutPanel1);tabPage15.Controls.Add(uiTabControlMenu1);tabPage15.Controls.Add(uiTabControl1);tabPage15.Controls.Add(uiSymbolLabel1);tabPage15.Controls.Add(uiSymbolButton1);tabPage15.Controls.Add(uiSwitch1);tabPage15.Location = new Point(4, 29);tabPage15.Name = "tabPage15";tabPage15.Size = new Size(992, 431);tabPage15.TabIndex = 4;tabPage15.Text = "tabPage15";tabPage15.UseVisualStyleBackColor = true;// // uiTransfer1// uiTransfer1.Controls.Add(uiTextBox2);uiTransfer1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiTransfer1.Location = new Point(556, 62);uiTransfer1.Margin = new Padding(7, 9, 7, 9);uiTransfer1.MinimumSize = new Size(1, 1);uiTransfer1.Name = "uiTransfer1";uiTransfer1.Padding = new Padding(1);uiTransfer1.RadiusSides = Sunny.UI.UICornerRadiusSides.None;uiTransfer1.RectSides = ToolStripStatusLabelBorderSides.None;uiTransfer1.ShowMulti = false;uiTransfer1.ShowText = false;uiTransfer1.Size = new Size(429, 360);uiTransfer1.TabIndex = 7;uiTransfer1.Text = "uiTransfer1";uiTransfer1.TextAlignment = ContentAlignment.MiddleCenter;// // uiTextBox2// uiTextBox2.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiTextBox2.Location = new Point(5, 6);uiTextBox2.Margin = new Padding(4, 5, 4, 5);uiTextBox2.MinimumSize = new Size(1, 16);uiTextBox2.Name = "uiTextBox2";uiTextBox2.Padding = new Padding(5);uiTextBox2.ShowText = false;uiTextBox2.Size = new Size(159, 43);uiTextBox2.TabIndex = 9;uiTextBox2.Text = "uiTextBox2";uiTextBox2.TextAlignment = ContentAlignment.MiddleLeft;uiTextBox2.Watermark = "";// // uiTrackBar1// uiTrackBar1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiTrackBar1.Location = new Point(759, 12);uiTrackBar1.MinimumSize = new Size(1, 1);uiTrackBar1.Name = "uiTrackBar1";uiTrackBar1.Size = new Size(230, 36);uiTrackBar1.TabIndex = 6;uiTrackBar1.Text = "uiTrackBar1";// // uiTitlePanel1// uiTitlePanel1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiTitlePanel1.Location = new Point(342, 233);uiTitlePanel1.Margin = new Padding(4, 5, 4, 5);uiTitlePanel1.MinimumSize = new Size(1, 1);uiTitlePanel1.Name = "uiTitlePanel1";uiTitlePanel1.ShowText = false;uiTitlePanel1.Size = new Size(188, 193);uiTitlePanel1.TabIndex = 5;uiTitlePanel1.Text = "uiTitlePanel1";uiTitlePanel1.TextAlignment = ContentAlignment.MiddleCenter;// // uiTimePicker1// uiTimePicker1.FillColor = Color.White;uiTimePicker1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiTimePicker1.Location = new Point(556, 12);uiTimePicker1.Margin = new Padding(4, 5, 4, 5);uiTimePicker1.MaxLength = 8;uiTimePicker1.MinimumSize = new Size(63, 0);uiTimePicker1.Name = "uiTimePicker1";uiTimePicker1.Padding = new Padding(0, 0, 30, 2);uiTimePicker1.Size = new Size(177, 36);uiTimePicker1.SymbolDropDown = 61555;uiTimePicker1.SymbolNormal = 61555;uiTimePicker1.SymbolSize = 24;uiTimePicker1.TabIndex = 0;uiTimePicker1.Text = "15:32:54";uiTimePicker1.TextAlignment = ContentAlignment.MiddleLeft;uiTimePicker1.Value = new DateTime(2024, 6, 2, 15, 32, 54, 278);uiTimePicker1.Watermark = "";// // uiTableLayoutPanel1// uiTableLayoutPanel1.ColumnCount = 2;uiTableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 50F));uiTableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Percent, 50F));uiTableLayoutPanel1.Location = new Point(342, 53);uiTableLayoutPanel1.Name = "uiTableLayoutPanel1";uiTableLayoutPanel1.RowCount = 2;uiTableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Percent, 50F));uiTableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Percent, 50F));uiTableLayoutPanel1.Size = new Size(188, 172);uiTableLayoutPanel1.TabIndex = 4;uiTableLayoutPanel1.TagString = null;// // uiTabControlMenu1// uiTabControlMenu1.Alignment = TabAlignment.Left;uiTabControlMenu1.Controls.Add(tabPage47);uiTabControlMenu1.Controls.Add(tabPage48);uiTabControlMenu1.DrawMode = TabDrawMode.OwnerDrawFixed;uiTabControlMenu1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiTabControlMenu1.Location = new Point(13, 231);uiTabControlMenu1.Multiline = true;uiTabControlMenu1.Name = "uiTabControlMenu1";uiTabControlMenu1.SelectedIndex = 0;uiTabControlMenu1.Size = new Size(299, 197);uiTabControlMenu1.SizeMode = TabSizeMode.Fixed;uiTabControlMenu1.TabIndex = 0;// // tabPage47// tabPage47.Location = new Point(201, 0);tabPage47.Name = "tabPage47";tabPage47.Size = new Size(98, 197);tabPage47.TabIndex = 0;tabPage47.Text = "tabPage47";tabPage47.UseVisualStyleBackColor = true;// // tabPage48// tabPage48.Location = new Point(201, 0);tabPage48.Name = "tabPage48";tabPage48.Size = new Size(98, 197);tabPage48.TabIndex = 1;tabPage48.Text = "tabPage48";tabPage48.UseVisualStyleBackColor = true;// // uiTabControl1// uiTabControl1.Controls.Add(tabPage45);uiTabControl1.Controls.Add(tabPage46);uiTabControl1.DrawMode = TabDrawMode.OwnerDrawFixed;uiTabControl1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiTabControl1.ItemSize = new Size(150, 40);uiTabControl1.Location = new Point(13, 54);uiTabControl1.MainPage = "";uiTabControl1.Name = "uiTabControl1";uiTabControl1.SelectedIndex = 0;uiTabControl1.Size = new Size(299, 171);uiTabControl1.SizeMode = TabSizeMode.Fixed;uiTabControl1.TabIndex = 3;uiTabControl1.TabUnSelectedForeColor = Color.FromArgb(240, 240, 240);uiTabControl1.TipsFont = new Font("宋体", 9F, FontStyle.Regular, GraphicsUnit.Point, 134);// // tabPage45// tabPage45.Controls.Add(uiTextBox1);tabPage45.Location = new Point(0, 40);tabPage45.Name = "tabPage45";tabPage45.Size = new Size(299, 131);tabPage45.TabIndex = 0;tabPage45.Text = "tabPage45";tabPage45.UseVisualStyleBackColor = true;// // uiTextBox1// uiTextBox1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiTextBox1.Location = new Point(44, 34);uiTextBox1.Margin = new Padding(4, 5, 4, 5);uiTextBox1.MinimumSize = new Size(1, 16);uiTextBox1.Name = "uiTextBox1";uiTextBox1.Padding = new Padding(5);uiTextBox1.ShowText = false;uiTextBox1.Size = new Size(188, 36);uiTextBox1.TabIndex = 0;uiTextBox1.Text = "uiTextBox1";uiTextBox1.TextAlignment = ContentAlignment.MiddleLeft;uiTextBox1.Watermark = "";// // tabPage46// tabPage46.Controls.Add(uiThermometer1);tabPage46.Location = new Point(0, 40);tabPage46.Name = "tabPage46";tabPage46.Size = new Size(200, 60);tabPage46.TabIndex = 1;tabPage46.Text = "tabPage46";tabPage46.UseVisualStyleBackColor = true;// // uiThermometer1// uiThermometer1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiThermometer1.Location = new Point(55, 24);uiThermometer1.MinimumSize = new Size(1, 1);uiThermometer1.Name = "uiThermometer1";uiThermometer1.Size = new Size(182, 93);uiThermometer1.TabIndex = 0;uiThermometer1.Text = "uiThermometer1";// // uiSymbolLabel1// uiSymbolLabel1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiSymbolLabel1.Location = new Point(318, 12);uiSymbolLabel1.MinimumSize = new Size(1, 1);uiSymbolLabel1.Name = "uiSymbolLabel1";uiSymbolLabel1.Size = new Size(212, 36);uiSymbolLabel1.TabIndex = 2;uiSymbolLabel1.Text = "uiSymbolLabel1";// // uiSymbolButton1// uiSymbolButton1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiSymbolButton1.Location = new Point(113, 12);uiSymbolButton1.MinimumSize = new Size(1, 1);uiSymbolButton1.Name = "uiSymbolButton1";uiSymbolButton1.Size = new Size(199, 36);uiSymbolButton1.TabIndex = 1;uiSymbolButton1.Text = "uiSymbolButton1";uiSymbolButton1.TipsFont = new Font("宋体", 9F, FontStyle.Regular, GraphicsUnit.Point, 134);// // uiSwitch1// uiSwitch1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiSwitch1.Location = new Point(13, 12);uiSwitch1.MinimumSize = new Size(1, 1);uiSwitch1.Name = "uiSwitch1";uiSwitch1.Size = new Size(94, 36);uiSwitch1.TabIndex = 0;uiSwitch1.Text = "uiSwitch1";// // tabPage16// tabPage16.Controls.Add(uiWaitingBar1);tabPage16.Controls.Add(uiVerificationCode1);tabPage16.Controls.Add(uiVerScrollBarEx1);tabPage16.Controls.Add(uiValve1);tabPage16.Controls.Add(uiUserControl1);tabPage16.Controls.Add(uiTurnSwitch1);tabPage16.Controls.Add(uiTreeView1);tabPage16.Location = new Point(4, 29);tabPage16.Name = "tabPage16";tabPage16.Size = new Size(992, 431);tabPage16.TabIndex = 5;tabPage16.Text = "tabPage16";tabPage16.UseVisualStyleBackColor = true;// // tabPage17// tabPage17.Location = new Point(4, 29);tabPage17.Name = "tabPage17";tabPage17.Size = new Size(992, 431);tabPage17.TabIndex = 6;tabPage17.Text = "tabPage17";tabPage17.UseVisualStyleBackColor = true;// // tabPage18// tabPage18.Location = new Point(4, 29);tabPage18.Name = "tabPage18";tabPage18.Size = new Size(992, 431);tabPage18.TabIndex = 7;tabPage18.Text = "tabPage18";tabPage18.UseVisualStyleBackColor = true;// // tabPage19// tabPage19.Location = new Point(4, 29);tabPage19.Name = "tabPage19";tabPage19.Size = new Size(992, 431);tabPage19.TabIndex = 8;tabPage19.Text = "tabPage19";tabPage19.UseVisualStyleBackColor = true;// // tabPage20// tabPage20.Location = new Point(4, 29);tabPage20.Name = "tabPage20";tabPage20.Size = new Size(992, 431);tabPage20.TabIndex = 9;tabPage20.Text = "tabPage20";tabPage20.UseVisualStyleBackColor = true;// // tabPage21// tabPage21.Location = new Point(4, 29);tabPage21.Name = "tabPage21";tabPage21.Size = new Size(992, 431);tabPage21.TabIndex = 10;tabPage21.Text = "tabPage21";tabPage21.UseVisualStyleBackColor = true;// // tabPage22// tabPage22.Location = new Point(4, 29);tabPage22.Name = "tabPage22";tabPage22.Size = new Size(992, 431);tabPage22.TabIndex = 11;tabPage22.Text = "tabPage22";tabPage22.UseVisualStyleBackColor = true;// // tabPage23// tabPage23.Location = new Point(4, 29);tabPage23.Name = "tabPage23";tabPage23.Size = new Size(992, 431);tabPage23.TabIndex = 12;tabPage23.Text = "tabPage23";tabPage23.UseVisualStyleBackColor = true;// // tabPage24// tabPage24.Location = new Point(4, 29);tabPage24.Name = "tabPage24";tabPage24.Size = new Size(992, 431);tabPage24.TabIndex = 13;tabPage24.Text = "tabPage24";tabPage24.UseVisualStyleBackColor = true;// // tabPage25// tabPage25.Location = new Point(4, 29);tabPage25.Name = "tabPage25";tabPage25.Size = new Size(992, 431);tabPage25.TabIndex = 14;tabPage25.Text = "tabPage25";tabPage25.UseVisualStyleBackColor = true;// // tabPage26// tabPage26.Location = new Point(4, 29);tabPage26.Name = "tabPage26";tabPage26.Size = new Size(992, 431);tabPage26.TabIndex = 15;tabPage26.Text = "tabPage26";tabPage26.UseVisualStyleBackColor = true;// // tabPage27// tabPage27.Location = new Point(4, 29);tabPage27.Name = "tabPage27";tabPage27.Size = new Size(992, 431);tabPage27.TabIndex = 16;tabPage27.Text = "tabPage27";tabPage27.UseVisualStyleBackColor = true;// // tabPage28// tabPage28.Location = new Point(4, 29);tabPage28.Name = "tabPage28";tabPage28.Size = new Size(992, 431);tabPage28.TabIndex = 17;tabPage28.Text = "tabPage28";tabPage28.UseVisualStyleBackColor = true;// // tabPage29// tabPage29.Location = new Point(4, 29);tabPage29.Name = "tabPage29";tabPage29.Size = new Size(992, 431);tabPage29.TabIndex = 18;tabPage29.Text = "tabPage29";tabPage29.UseVisualStyleBackColor = true;// // tabPage30// tabPage30.Location = new Point(4, 29);tabPage30.Name = "tabPage30";tabPage30.Size = new Size(992, 431);tabPage30.TabIndex = 19;tabPage30.Text = "tabPage30";tabPage30.UseVisualStyleBackColor = true;// // tabPage31// tabPage31.Location = new Point(4, 29);tabPage31.Name = "tabPage31";tabPage31.Size = new Size(992, 431);tabPage31.TabIndex = 20;tabPage31.Text = "tabPage31";tabPage31.UseVisualStyleBackColor = true;// // tabPage32// tabPage32.Location = new Point(4, 29);tabPage32.Name = "tabPage32";tabPage32.Size = new Size(992, 431);tabPage32.TabIndex = 21;tabPage32.Text = "tabPage32";tabPage32.UseVisualStyleBackColor = true;// // tabPage33// tabPage33.Location = new Point(4, 29);tabPage33.Name = "tabPage33";tabPage33.Size = new Size(992, 431);tabPage33.TabIndex = 22;tabPage33.Text = "tabPage33";tabPage33.UseVisualStyleBackColor = true;// // tabPage34// tabPage34.Location = new Point(4, 29);tabPage34.Name = "tabPage34";tabPage34.Size = new Size(992, 431);tabPage34.TabIndex = 23;tabPage34.Text = "tabPage34";tabPage34.UseVisualStyleBackColor = true;// // tabPage35// tabPage35.Location = new Point(4, 29);tabPage35.Name = "tabPage35";tabPage35.Size = new Size(992, 431);tabPage35.TabIndex = 24;tabPage35.Text = "tabPage35";tabPage35.UseVisualStyleBackColor = true;// // tabPage36// tabPage36.Location = new Point(4, 29);tabPage36.Name = "tabPage36";tabPage36.Size = new Size(992, 431);tabPage36.TabIndex = 25;tabPage36.Text = "tabPage36";tabPage36.UseVisualStyleBackColor = true;// // tabPage37// tabPage37.Location = new Point(4, 29);tabPage37.Name = "tabPage37";tabPage37.Size = new Size(992, 431);tabPage37.TabIndex = 26;tabPage37.Text = "tabPage37";tabPage37.UseVisualStyleBackColor = true;// // tabPage38// tabPage38.Location = new Point(4, 29);tabPage38.Name = "tabPage38";tabPage38.Size = new Size(992, 431);tabPage38.TabIndex = 27;tabPage38.Text = "tabPage38";tabPage38.UseVisualStyleBackColor = true;// // tabPage39// tabPage39.Location = new Point(4, 29);tabPage39.Name = "tabPage39";tabPage39.Size = new Size(992, 431);tabPage39.TabIndex = 28;tabPage39.Text = "tabPage39";tabPage39.UseVisualStyleBackColor = true;// // tabPage40// tabPage40.Location = new Point(4, 29);tabPage40.Name = "tabPage40";tabPage40.Size = new Size(992, 431);tabPage40.TabIndex = 29;tabPage40.Text = "tabPage40";tabPage40.UseVisualStyleBackColor = true;// // tabPage41// tabPage41.Location = new Point(4, 29);tabPage41.Name = "tabPage41";tabPage41.Size = new Size(992, 431);tabPage41.TabIndex = 30;tabPage41.Text = "tabPage41";tabPage41.UseVisualStyleBackColor = true;// // tabPage42// tabPage42.Location = new Point(4, 29);tabPage42.Name = "tabPage42";tabPage42.Size = new Size(992, 431);tabPage42.TabIndex = 31;tabPage42.Text = "tabPage42";tabPage42.UseVisualStyleBackColor = true;// // tabPage43// tabPage43.Location = new Point(4, 29);tabPage43.Name = "tabPage43";tabPage43.Size = new Size(992, 431);tabPage43.TabIndex = 32;tabPage43.Text = "tabPage43";tabPage43.UseVisualStyleBackColor = true;// // tabPage44// tabPage44.Location = new Point(4, 29);tabPage44.Name = "tabPage44";tabPage44.Size = new Size(992, 431);tabPage44.TabIndex = 33;tabPage44.Text = "tabPage44";tabPage44.UseVisualStyleBackColor = true;// // notifyIcon1// notifyIcon1.BalloonTipIcon = ToolTipIcon.Info;notifyIcon1.BalloonTipText = "winform练习";notifyIcon1.BalloonTipTitle = "winform练习";notifyIcon1.Icon = (Icon)resources.GetObject("notifyIcon1.Icon");notifyIcon1.Text = "winform练习";notifyIcon1.Visible = true;notifyIcon1.DoubleClick += notifyIcon1_DoubleClick;// // toolTip1// toolTip1.ToolTipTitle = "提示控件";// // errorProvider1// errorProvider1.ContainerControl = this;// // fileSystemWatcher1// fileSystemWatcher1.EnableRaisingEvents = true;fileSystemWatcher1.SynchronizingObject = this;// // imageList1// imageList1.ColorDepth = ColorDepth.Depth32Bit;imageList1.ImageStream = (ImageListStreamer)resources.GetObject("imageList1.ImageStream");imageList1.TransparentColor = Color.Transparent;imageList1.Images.SetKeyName(0, "phone.ico");imageList1.Images.SetKeyName(1, "小程序.png");// // process1// process1.StartInfo.Domain = "";process1.StartInfo.LoadUserProfile = false;process1.StartInfo.Password = null;process1.StartInfo.StandardErrorEncoding = null;process1.StartInfo.StandardInputEncoding = null;process1.StartInfo.StandardOutputEncoding = null;process1.StartInfo.UseCredentialsForNetworkingOnly = false;process1.StartInfo.UserName = "";process1.SynchronizingObject = this;// // printDialog1// printDialog1.UseEXDialog = true;// // printPreviewDialog1// printPreviewDialog1.AutoScrollMargin = new Size(0, 0);printPreviewDialog1.AutoScrollMinSize = new Size(0, 0);printPreviewDialog1.ClientSize = new Size(400, 300);printPreviewDialog1.Enabled = true;printPreviewDialog1.Icon = (Icon)resources.GetObject("printPreviewDialog1.Icon");printPreviewDialog1.Name = "printPreviewDialog1";printPreviewDialog1.Visible = false;// // openFileDialog1// openFileDialog1.FileName = "openFileDialog1";// // log// log.Location = new Point(17, 519);log.Name = "log";log.Size = new Size(1005, 135);log.TabIndex = 2;log.Text = "";// // uiToolTip1// uiToolTip1.BackColor = Color.FromArgb(54, 54, 54);uiToolTip1.ForeColor = Color.FromArgb(239, 239, 239);uiToolTip1.OwnerDraw = true;// // uiTreeView1// uiTreeView1.FillColor = Color.White;uiTreeView1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiTreeView1.Location = new Point(10, 24);uiTreeView1.Margin = new Padding(4, 5, 4, 5);uiTreeView1.MinimumSize = new Size(1, 1);uiTreeView1.Name = "uiTreeView1";uiTreeView1.ScrollBarStyleInherited = false;uiTreeView1.ShowText = false;uiTreeView1.Size = new Size(338, 225);uiTreeView1.TabIndex = 0;uiTreeView1.Text = "uiTreeView1";uiTreeView1.TextAlignment = ContentAlignment.MiddleCenter;// // uiTurnSwitch1// uiTurnSwitch1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiTurnSwitch1.Location = new Point(10, 257);uiTurnSwitch1.MinimumSize = new Size(1, 1);uiTurnSwitch1.Name = "uiTurnSwitch1";uiTurnSwitch1.Size = new Size(338, 171);uiTurnSwitch1.TabIndex = 1;uiTurnSwitch1.Text = "uiTurnSwitch1";// // uiUserControl1// uiUserControl1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiUserControl1.Location = new Point(368, 24);uiUserControl1.MinimumSize = new Size(1, 1);uiUserControl1.Name = "uiUserControl1";uiUserControl1.Size = new Size(211, 225);uiUserControl1.TabIndex = 2;uiUserControl1.Text = "uiUserControl1";uiUserControl1.TextAlignment = ContentAlignment.MiddleCenter;// // uiValve1// uiValve1.Location = new Point(270, 257);uiValve1.Name = "uiValve1";uiValve1.Size = new Size(78, 171);uiValve1.TabIndex = 3;uiValve1.Text = "uiValve1";uiValve1.ZoomScaleDisabled = true;// // uiVerScrollBarEx1// uiVerScrollBarEx1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiVerScrollBarEx1.Location = new Point(383, 257);uiVerScrollBarEx1.MinimumSize = new Size(1, 1);uiVerScrollBarEx1.Name = "uiVerScrollBarEx1";uiVerScrollBarEx1.Size = new Size(49, 171);uiVerScrollBarEx1.TabIndex = 4;uiVerScrollBarEx1.Text = "uiVerScrollBarEx1";// // uiVerificationCode1// uiVerificationCode1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiVerificationCode1.Location = new Point(438, 257);uiVerificationCode1.MinimumSize = new Size(1, 1);uiVerificationCode1.Name = "uiVerificationCode1";uiVerificationCode1.Size = new Size(141, 50);uiVerificationCode1.TabIndex = 5;// // uiWaitingBar1// uiWaitingBar1.FillColor = Color.FromArgb(243, 249, 255);uiWaitingBar1.Font = new Font("宋体", 12F, FontStyle.Regular, GraphicsUnit.Point, 134);uiWaitingBar1.ForeColor = Color.FromArgb(80, 160, 255);uiWaitingBar1.Location = new Point(585, 24);uiWaitingBar1.MinimumSize = new Size(70, 23);uiWaitingBar1.Name = "uiWaitingBar1";uiWaitingBar1.Size = new Size(375, 36);uiWaitingBar1.TabIndex = 6;uiWaitingBar1.Text = "uiWaitingBar1";// // Form1// AutoScaleDimensions = new SizeF(9F, 20F);AutoScaleMode = AutoScaleMode.Font;ClientSize = new Size(1038, 724);Controls.Add(log);Controls.Add(tabControl1);HelpButton = true;Icon = (Icon)resources.GetObject("$this.Icon");MainMenuStrip = menuStrip1;MaximizeBox = false;MinimizeBox = false;Name = "Form1";Text = "控件综合练习";toolTip1.SetToolTip(this, "帮助信息");FormClosed += Form1_FormClosed;Load += Form1_Load;tabControl1.ResumeLayout(false);tabPage1.ResumeLayout(false);tabPage1.PerformLayout();((System.ComponentModel.ISupportInitialize)pictureBox1).EndInit();((System.ComponentModel.ISupportInitialize)numericUpDown1).EndInit();tabPage2.ResumeLayout(false);tableLayoutPanel1.ResumeLayout(false);tableLayoutPanel1.PerformLayout();tabControl2.ResumeLayout(false);tabPage4.ResumeLayout(false);tabPage4.PerformLayout();tabPage5.ResumeLayout(false);splitContainer1.Panel1.ResumeLayout(false);splitContainer1.Panel2.ResumeLayout(false);((System.ComponentModel.ISupportInitialize)splitContainer1).EndInit();splitContainer1.ResumeLayout(false);panel1.ResumeLayout(false);groupBox1.ResumeLayout(false);groupBox1.PerformLayout();((System.ComponentModel.ISupportInitialize)pictureBox2).EndInit();flowLayoutPanel1.ResumeLayout(false);flowLayoutPanel1.PerformLayout();tabPage3.ResumeLayout(false);tabPage3.PerformLayout();contextMenuStrip1.ResumeLayout(false);toolStripContainer1.BottomToolStripPanel.ResumeLayout(false);toolStripContainer1.BottomToolStripPanel.PerformLayout();toolStripContainer1.ContentPanel.ResumeLayout(false);toolStripContainer1.LeftToolStripPanel.ResumeLayout(false);toolStripContainer1.LeftToolStripPanel.PerformLayout();toolStripContainer1.RightToolStripPanel.ResumeLayout(false);toolStripContainer1.RightToolStripPanel.PerformLayout();toolStripContainer1.TopToolStripPanel.ResumeLayout(false);toolStripContainer1.TopToolStripPanel.PerformLayout();toolStripContainer1.ResumeLayout(false);toolStripContainer1.PerformLayout();toolStrip5.ResumeLayout(false);toolStrip5.PerformLayout();toolStrip3.ResumeLayout(false);toolStrip3.PerformLayout();toolStrip4.ResumeLayout(false);toolStrip4.PerformLayout();toolStrip2.ResumeLayout(false);toolStrip2.PerformLayout();toolStrip1.ResumeLayout(false);toolStrip1.PerformLayout();menuStrip1.ResumeLayout(false);menuStrip1.PerformLayout();tabPage6.ResumeLayout(false);((System.ComponentModel.ISupportInitialize)dataGridView1).EndInit();tabPage7.ResumeLayout(false);tabPage7.PerformLayout();((System.ComponentModel.ISupportInitialize)pictureBox3).EndInit();tabPage8.ResumeLayout(false);tabPage9.ResumeLayout(false);tabPage10.ResumeLayout(false);tabControl3.ResumeLayout(false);tabPage11.ResumeLayout(false);uiContextMenuStrip1.ResumeLayout(false);((System.ComponentModel.ISupportInitialize)uiDataGridView1).EndInit();tabPage12.ResumeLayout(false);((System.ComponentModel.ISupportInitialize)uiImageButton1).EndInit();uiFlowLayoutPanel1.ResumeLayout(false);tabPage13.ResumeLayout(false);tabPage14.ResumeLayout(false);uiSplitContainer1.EndInit();uiSplitContainer1.ResumeLayout(false);tabPage15.ResumeLayout(false);uiTransfer1.ResumeLayout(false);uiTabControlMenu1.ResumeLayout(false);uiTabControl1.ResumeLayout(false);tabPage45.ResumeLayout(false);tabPage46.ResumeLayout(false);tabPage16.ResumeLayout(false);((System.ComponentModel.ISupportInitialize)bindingSource1).EndInit();((System.ComponentModel.ISupportInitialize)errorProvider1).EndInit();((System.ComponentModel.ISupportInitialize)fileSystemWatcher1).EndInit();ResumeLayout(false);}#endregionprivate Button button1;private TabControl tabControl1;private TabPage tabPage1;private TabPage tabPage2;private TabPage tabPage3;private CheckBox checkBox1;private CheckedListBox checkedListBox1;private ComboBox comboBox1;private DateTimePicker dateTimePicker1;private DateTimePicker dateTimePicker2;private Label label1;private LinkLabel linkLabel1;private ListBox listBox1;private ListView listView1;private ColumnHeader columnHeader1;private ColumnHeader columnHeader2;private ColumnHeader columnHeader3;private MaskedTextBox maskedTextBox1;private MonthCalendar monthCalendar1;private NotifyIcon notifyIcon1;private NumericUpDown numericUpDown1;private PictureBox pictureBox1;private ProgressBar progressBar1;private Label label2;private RadioButton radioButton2;private RadioButton radioButton1;private RadioButton radioButton5;private RadioButton radioButton6;private RadioButton radioButton3;private RadioButton radioButton4;private ToolTip toolTip1;private TreeView treeView1;private FlowLayoutPanel flowLayoutPanel1;private Button button2;private Button button3;private Button button4;private Button button5;private CheckBox checkBox2;private CheckBox checkBox3;private Button button8;private Button button6;private Button button7;private Button button9;private RichTextBox richTextBox2;private Panel panel1;private RichTextBox richTextBox1;private DateTimePicker dateTimePicker3;private Button button13;private GroupBox groupBox1;private Button button12;private Label label3;private PictureBox pictureBox2;private CheckBox checkBox4;private Button button11;private ComboBox comboBox2;private Button button10;private SplitContainer splitContainer1;private Button button17;private Button button16;private Button button15;private Button button14;private RichTextBox richTextBox3;private TableLayoutPanel tableLayoutPanel1;private Label label5;private Button button20;private Button button21;private Button button19;private TabControl tabControl2;private TabPage tabPage4;private Label label4;private TabPage tabPage5;private Button button18;private ContextMenuStrip contextMenuStrip1;private ToolStripMenuItem 文件ToolStripMenuItem;private ToolStripMenuItem 设置ToolStripMenuItem;private RichTextBox richTextBox4;private MenuStrip menuStrip1;private ToolStripMenuItem 文件ToolStripMenuItem1;private ToolStripMenuItem 打开ToolStripMenuItem;private ToolStripMenuItem 关闭ToolStripMenuItem;private ToolStripMenuItem 保存ToolStripMenuItem;private ToolStripMenuItem 另存为ToolStripMenuItem;private ToolStripMenuItem 退出ToolStripMenuItem;private ToolStrip toolStrip1;private ToolStripButton toolStripButton1;private ToolStripButton toolStripButton2;private ToolStripButton toolStripButton3;private ToolStripButton toolStripButton4;private ToolStripLabel toolStripLabel1;private ToolStripContainer toolStripContainer1;private MonthCalendar monthCalendar2;private ToolStrip toolStrip5;private ToolStripButton toolStripButton8;private ToolStrip toolStrip3;private ToolStripButton toolStripButton6;private ToolStrip toolStrip4;private ToolStripButton toolStripButton7;private ToolStrip toolStrip2;private ToolStripButton toolStripButton5;private TabPage tabPage6;private DataGridView dataGridView1;private TabPage tabPage7;private TabPage tabPage8;private TabPage tabPage9;private BindingSource bindingSource1;private System.ComponentModel.BackgroundWorker backgroundWorker1;private ErrorProvider errorProvider1;private FileSystemWatcher fileSystemWatcher1;private ImageList imageList1;private System.Diagnostics.Process process1;private System.Windows.Forms.Timer timer1;private ProgressBar progressBar2;private Label label6;private RichTextBox richTextBox5;private RichTextBox richTextBox6;private HelpProvider helpProvider1;private RichTextBox richTextBox7;private Button button22;private Button button23;private Button button25;private Button button24;private PictureBox pictureBox3;private Button button26;private PageSetupDialog pageSetupDialog1;private Button button27;private PrintDialog printDialog1;private System.Drawing.Printing.PrintDocument printDocument1;private PrintPreviewControl printPreviewControl1;private Button button28;private PrintPreviewDialog printPreviewDialog1;private Button button33;private Button button32;private Button button31;private Button button30;private Button button29;private ColorDialog colorDialog1;private RichTextBox richTextBox8;private FolderBrowserDialog folderBrowserDialog1;private FontDialog fontDialog1;private OpenFileDialog openFileDialog1;private SaveFileDialog saveFileDialog1;private TabPage tabPage10;private TabControl tabControl3;private TabPage tabPage11;private Sunny.UI.UICheckBox uiCheckBox1;private Sunny.UI.UICalendar uiCalendar1;private Sunny.UI.UIButton uiButton1;private Sunny.UI.UIBattery uiBattery1;private Sunny.UI.UIBarChart uiBarChart1;private Sunny.UI.UIAvatar uiAvatar1;private Sunny.UI.UIAnalogMeter uiAnalogMeter1;private TabPage tabPage12;private TabPage tabPage13;private TabPage tabPage14;private TabPage tabPage15;private TabPage tabPage16;private TabPage tabPage17;private TabPage tabPage18;private TabPage tabPage19;private TabPage tabPage20;private TabPage tabPage21;private TabPage tabPage22;private TabPage tabPage23;private TabPage tabPage24;private TabPage tabPage25;private TabPage tabPage26;private TabPage tabPage27;private TabPage tabPage28;private TabPage tabPage29;private TabPage tabPage30;private TabPage tabPage31;private TabPage tabPage32;private TabPage tabPage33;private TabPage tabPage34;private TabPage tabPage35;private TabPage tabPage36;private TabPage tabPage37;private TabPage tabPage38;private TabPage tabPage39;private TabPage tabPage40;private TabPage tabPage41;private TabPage tabPage42;private TabPage tabPage43;private TabPage tabPage44;private Sunny.UI.UIComboTreeView uiComboTreeView1;private Sunny.UI.UIComboDataGridView uiComboDataGridView1;private Sunny.UI.UIComboBox uiComboBox1;private Sunny.UI.UIColorPicker uiColorPicker1;private Sunny.UI.UICheckBoxGroup uiCheckBoxGroup1;private Sunny.UI.UIContextMenuStrip uiContextMenuStrip1;private ToolStripMenuItem 测试菜单ToolStripMenuItem;private ToolStripMenuItem 子菜单1ToolStripMenuItem;private ToolStripMenuItem 子菜单2ToolStripMenuItem;private Sunny.UI.UIDataGridView uiDataGridView1;private DataGridViewTextBoxColumn Column1;private DataGridViewTextBoxColumn Column2;private DataGridViewTextBoxColumn Column3;private Sunny.UI.UIDataGridViewFooter uiDataGridViewFooter1;private Sunny.UI.UIFlowLayoutPanel uiFlowLayoutPanel1;private Sunny.UI.UIDoughnutChart uiDoughnutChart1;private Sunny.UI.UIDoubleUpDown uiDoubleUpDown1;private Sunny.UI.UIDigitalLabel uiDigitalLabel1;private Sunny.UI.UIDatePicker uiDatePicker1;private Sunny.UI.UILedBulb uiLedBulb1;private Sunny.UI.UILabel uiLabel1;private Sunny.UI.UIImageListBox uiImageListBox1;private Sunny.UI.UIImageButton uiImageButton1;private Sunny.UI.UIIPTextBox uiipTextBox1;private Sunny.UI.UIHorScrollBarEx uiHorScrollBarEx1;private Sunny.UI.UIHorScrollBar uiHorScrollBar1;private Sunny.UI.UIHeaderButton uiHeaderButton1;private Sunny.UI.UIGifAvatar uiGifAvatar1;private Sunny.UI.UILinkLabel uiLinkLabel1;private Sunny.UI.UILineChart uiLineChart1;private Sunny.UI.UILine uiLine1;private Sunny.UI.UILight uiLight1;private Sunny.UI.UILedStopwatch uiLedStopwatch1;private Sunny.UI.UIMillisecondTimer uiMillisecondTimer1;private Sunny.UI.UINavMenu uiNavMenu1;private Sunny.UI.UINavBar uiNavBar1;private Sunny.UI.UIMiniPagination uiMiniPagination1;private Sunny.UI.UIRoundMeter uiRoundMeter1;private Sunny.UI.UIRoundProcess uiRoundProcess1;private Sunny.UI.UIProgressIndicator uiProgressIndicator1;private Sunny.UI.UIProcessBar uiProcessBar1;private Sunny.UI.UIPieChart uiPieChart1;private Sunny.UI.UIPanel uiPanel1;private Sunny.UI.UIPagination uiPagination1;private Sunny.UI.UINumPadTextBox uiNumPadTextBox1;private Sunny.UI.UIRuler uiRuler1;private Sunny.UI.UIRoundProcess uiRoundProcess2;private RichTextBox log;private Sunny.UI.UISmoothLabel uiSmoothLabel1;private Sunny.UI.UISignal uiSignal1;private Sunny.UI.UIScrollingText uiScrollingText1;private Sunny.UI.UISplitContainer uiSplitContainer1;private Sunny.UI.UITransfer uiTransfer1;private Sunny.UI.UITrackBar uiTrackBar1;private Sunny.UI.UITitlePanel uiTitlePanel1;private Sunny.UI.UITimePicker uiTimePicker1;private Sunny.UI.UITableLayoutPanel uiTableLayoutPanel1;private Sunny.UI.UITabControlMenu uiTabControlMenu1;private TabPage tabPage47;private TabPage tabPage48;private Sunny.UI.UITabControl uiTabControl1;private TabPage tabPage45;private Sunny.UI.UITextBox uiTextBox1;private TabPage tabPage46;private Sunny.UI.UIThermometer uiThermometer1;private Sunny.UI.UISymbolLabel uiSymbolLabel1;private Sunny.UI.UISymbolButton uiSymbolButton1;private Sunny.UI.UISwitch uiSwitch1;private Sunny.UI.UIStyleManager uiStyleManager1;private Sunny.UI.UIToolTip uiToolTip1;private Sunny.UI.UITextBox uiTextBox2;private Sunny.UI.UIWaitingBar uiWaitingBar1;private Sunny.UI.UIVerificationCode uiVerificationCode1;private Sunny.UI.UIVerScrollBarEx uiVerScrollBarEx1;private Sunny.UI.UIValve uiValve1;private Sunny.UI.UIUserControl uiUserControl1;private Sunny.UI.UITurnSwitch uiTurnSwitch1;private Sunny.UI.UITreeView uiTreeView1;}
}


http://www.ppmy.cn/embedded/48597.html

相关文章

最小生成树prim算法详解

prim算法解决的是最小生成树问题&#xff0c;即在一个给定的无向图G中求一棵生成树T&#xff0c;使得这棵树拥有图G中的所有顶点&#xff0c;且所有边都是来自图G中的边&#xff0c;并且满足整棵树的边权之和最小。 prim算法的基本思想是对图G设置集合S来存放已被访问的顶点&a…

力扣刷题总结 -- 数组26

76. 所有奇数长度子数组的和&#xff08;简单&#xff09; 题目要求&#xff1a; 给定一个正整数数组 arr &#xff0c;计算所有奇数长度子数组的和。 子数组定义为原数组中的一个连续子序列。 返回 arr 中 所有奇数长度子数组的和 。 题目分析&#xff1a; 先得到所有子…

k-means聚类模型的优缺点

一、k-means聚类模型的优点 1. 简单高效&#xff1a;k-means算法思想简单直观&#xff0c;易于实现。它通过迭代计算样本点与聚类中心之间的距离&#xff0c;并不断调整聚类中心的位置&#xff0c;直至满足终止条件。由于其计算过程相对直接&#xff0c;所以具有较高的执行效率…

基于YOLOv10深度学习的高密度人脸智能检测与统计系统【python源码+Pyqt5界面+数据集+训练代码】深度学习实战、目标检测

《博主简介》 小伙伴们好&#xff0c;我是阿旭。专注于人工智能、AIGC、python、计算机视觉相关分享研究。 ✌更多学习资源&#xff0c;可关注公-仲-hao:【阿旭算法与机器学习】&#xff0c;共同学习交流~ &#x1f44d;感谢小伙伴们点赞、关注&#xff01; 《------往期经典推…

Python中的“*”和“**”

1.接受任意长度形参&#xff0c;组成turple def function(*args):# type(args)turple# args(1, 2, 3, 4)print(args)ant0for i in range(len(args)):antargs[i]return antprint(function(1,2,3,4)) # 102.接受任意长度形参&#xff0c;组成dict def function(**args):# type…

探索Edge

目录 1.概述 1.1.什么是浏览器 1.2.浏览器的作用 2.Edge 2.1.什么是Edge 2.2.诞生背景 2.3.历史版本 2.4.作用 2.5.优缺点 2.5.1.优点 2.5.2.缺点 3.对比 3.1.和360浏览器的对比 3.2.和谷歌浏览器&#xff08;Chrome&#xff09;的对比 4.未来展望 5.总结 1.概…

【数据结构】第十五弹---C语言实现直接插入排序

✨个人主页&#xff1a; 熬夜学编程的小林 &#x1f497;系列专栏&#xff1a; 【C语言详解】 【数据结构详解】【C详解】 目录 1、排序的概念及其运用 1.1、排序的概念与分类 1.2、排序运用 1.3、常见的排序算法 1.4、常见的排序算法性能测试 2、常见排序算法的实现 2…

【Android】实现Recyclerview的Item可以左右侧滑动的效果

项目需要 使用Recyclerview进行列表的数据加载的时候&#xff0c;需要对这个Item进行左右滑动进行操作的功能&#xff0c; 比如这样 需求实现 上面图来源于 https://github.com/anzaizai/EasySwipeMenuLayout 这是一个可以用来进行列表左滑、右滑的项目&#xff0c;可以集…