9b6fbeecc6
SVN-Revision: r885
70 lines
2.8 KiB
C#
70 lines
2.8 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;
|
|
thi |