1.1)backcolor是控件的背景颜色
1.2)FORECOLOR是控件的字体颜色
1.3)AutoSize 设置控件自动大小 =true的时候,对于label就是字的总长度,false的时候,长度可以比字多
1.4)combobox 只能通过font来指定高度
1.5)TOOLSTRIPBUTTON 需要设置autosize = false
设置image
this.tsb_WLZTParam.Image = ((System.Drawing.Image)(resources.GetObject("tsb_WLZTParam.Image")));
设置text 的方向 以及文字与图片的关系
this.tsb_WLZTParam.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal;
this.tsb_WLZTParam.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
textBox.BorderStyle= Fixed3D FixedSingle 设置边框样式 none是没有样式
//
this.groupBox1.Font = new System.Drawing.Font("宋体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.groupBox1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
this.groupBox1.Location = new System.Drawing.Point(408, 59);
this.groupBox1.Margin = new System.Windows.Forms.Padding(4);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Padding = new System.Windows.Forms.Padding(4);
this.groupBox1.Size = new System.Drawing.Size(267, 133);
this.groupBox1.TabIndex = 0;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "groupBox1";
//
// comboBox1
//
this.comboBox1.BackColor = System.Drawing.Color.Black;
this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.comboBox1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
this.comboBox1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.comboBox1.ForeColor = System.Drawing.SystemColors.Window;
this.comboBox1.FormattingEnabled = true;
this.comboBox1.Location = new System.Drawing.Point(408, 228);
this.comboBox1.Margin = new System.Windows.Forms.Padding(4);
this.comboBox1.Name = "comboBox1";
this.comboBox1.Size = new System.Drawing.Size(160, 29);
this.comboBox1.TabIndex = 1;
this.textBox1.BackColor = System.Drawing.Color.Black;
this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.textBox1.Cursor = System.Windows.Forms.Cursors.Cross;
this.textBox1.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.textBox1.ForeColor = System.Drawing.SystemColors.Window;
this.textBox1.Location = new System.Drawing.Point(150, 260);
this.textBox1.Name = "textBox1";
this.textBox1.Size = new System.Drawing.Size(100, 29);
this.textBox1.TabIndex = 114;
this.textBox1.Text = "sdsd";
this.textBox1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
this.label1.AllowDrop = true;
this.label1.AutoSize = true;
this.label1.ForeColor = System.Drawing.Color.YellowGreen;
this.label1.Location = new System.Drawing.Point(147, 376);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(56, 16);
this.label1.TabIndex = 116;
this.label1.Text = "label1";
this.tsb_WLZTParam.AutoSize = false;
this.tsb_WLZTParam.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F);
this.tsb_WLZTParam.Image = ((System.Drawing.Image)(resources.GetObject("tsb_WLZTParam.Image")));
this.tsb_WLZTParam.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.tsb_WLZTParam.ImageTransparentColor = System.Drawing.Color.Magenta;
this.tsb_WLZTParam.Margin = new System.Windows.Forms.Padding(5, 5, 0, 5);
this.tsb_WLZTParam.Name = "tsb_WLZTParam";
this.tsb_WLZTParam.Size = new System.Drawing.Size(59, 58);
this.tsb_WLZTParam.Text = "网络状态";
this.tsb_WLZTParam.TextDirection = System.Windows.Forms.ToolStripTextDirection.Horizontal;
this.tsb_WLZTParam.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageAboveText;
this.tsb_WLZTParam.Click += new System.EventHandler(this.tsb_WLZTParam_Click);
this.btn_OpenPort.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(30)))), ((int)(((byte)(90)))));
this.btn_OpenPort.BackgroundImage = global::WellSiteRTU.Properties.Resources.bottonbkg;
this.btn_OpenPort.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
this.btn_OpenPort.FlatAppearance.BorderSize = 0;
this.btn_OpenPort.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(30)))), ((int)(((byte)(60)))));
this.btn_OpenPort.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))));
this.btn_OpenPort.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.btn_OpenPort.Font = new System.Drawing.Font("黑体", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.btn_OpenPort.ForeColor = System.Drawing.Color.White;
this.btn_OpenPort.Image = global::WellSiteRTU.Properties.Resources.poweroff;
this.btn_OpenPort.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.btn_OpenPort.Location = new System.Drawing.Point(21, 116);
this.btn_OpenPort.Name = "btn_OpenPort";
this.btn_OpenPort.Size = new System.Drawing.Size(138, 39);
this.btn_OpenPort.TabIndex = 3;
this.btn_OpenPort.Text = "打开串口 ";
this.btn_OpenPort.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
this.btn_OpenPort.UseVisualStyleBackColor = false;
this.btn_OpenPort.Click += new System.EventHandler(this.btn_OpenPort_Click);