97 lines
3.7 KiB
C#
97 lines
3.7 KiB
C#
|
|
namespace Lskj.Main.Control
|
|
{
|
|
partial class SimpleControl
|
|
{
|
|
/// <summary>
|
|
/// 必需的设计器变量。
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// 清理所有正在使用的资源。
|
|
/// </summary>
|
|
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region 组件设计器生成的代码
|
|
|
|
/// <summary>
|
|
/// 设计器支持所需的方法 - 不要修改
|
|
/// 使用代码编辑器修改此方法的内容。
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.picBox = new System.Windows.Forms.PictureBox();
|
|
this.circleButton = new Lskj.Control.CircleButton();
|
|
this.label = new System.Windows.Forms.Label();
|
|
((System.ComponentModel.ISupportInitialize)(this.picBox)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// picBox
|
|
//
|
|
this.picBox.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
|
|
this.picBox.Dock = System.Windows.Forms.DockStyle.Left;
|
|
this.picBox.Location = new System.Drawing.Point(0, 0);
|
|
this.picBox.Name = "picBox";
|
|
this.picBox.Size = new System.Drawing.Size(41, 42);
|
|
this.picBox.TabIndex = 0;
|
|
this.picBox.TabStop = false;
|
|
//
|
|
// circleButton
|
|
//
|
|
this.circleButton.BackColor = System.Drawing.Color.Red;
|
|
this.circleButton.BorderColor = System.Drawing.Color.Transparent;
|
|
this.circleButton.BorderThickness = 1F;
|
|
this.circleButton.Dock = System.Windows.Forms.DockStyle.Right;
|
|
this.circleButton.FlatAppearance.BorderSize = 0;
|
|
this.circleButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
|
|
this.circleButton.ForeColor = System.Drawing.Color.White;
|
|
this.circleButton.ImageHover = null;
|
|
this.circleButton.ImageNormal = null;
|
|
this.circleButton.Location = new System.Drawing.Point(162, 0);
|
|
this.circleButton.Name = "circleButton";
|
|
this.circleButton.Number = 0;
|
|
this.circleButton.Radius = 9;
|
|
this.circleButton.TabIndex = 4;
|
|
this.circleButton.Text = "circleButton1";
|
|
this.circleButton.UseVisualStyleBackColor = false;
|
|
//
|
|
// label
|
|
//
|
|
this.label.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.label.Location = new System.Drawing.Point(41, 0);
|
|
this.label.Name = "label";
|
|
this.label.Size = new System.Drawing.Size(121, 42);
|
|
this.label.TabIndex = 5;
|
|
this.label.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
|
|
//
|
|
// SimpleControl
|
|
//
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
|
|
this.AutoSize = true;
|
|
this.Controls.Add(this.label);
|
|
this.Controls.Add(this.circleButton);
|
|
this.Controls.Add(this.picBox);
|
|
this.Name = "SimpleControl";
|
|
this.Size = new System.Drawing.Size(204, 42);
|
|
((System.ComponentModel.ISupportInitialize)(this.picBox)).EndInit();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.PictureBox picBox;
|
|
private Lskj.Control.CircleButton circleButton;
|
|
private System.Windows.Forms.Label label;
|
|
}
|
|
}
|