110 lines
4.9 KiB
C#
110 lines
4.9 KiB
C#
namespace DH.UI.Model.Winform
|
||
{
|
||
partial class GridCtrl
|
||
{
|
||
/// <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.chkShowGrid = new System.Windows.Forms.CheckBox();
|
||
this.tbGridValue = new System.Windows.Forms.TrackBar();
|
||
this.panel1 = new System.Windows.Forms.Panel();
|
||
this.colorDialog1 = new System.Windows.Forms.ColorDialog();
|
||
this.btnColor = new System.Windows.Forms.Button();
|
||
((System.ComponentModel.ISupportInitialize)(this.tbGridValue)).BeginInit();
|
||
this.panel1.SuspendLayout();
|
||
this.SuspendLayout();
|
||
//
|
||
// chkShowGrid
|
||
//
|
||
this.chkShowGrid.Appearance = System.Windows.Forms.Appearance.Button;
|
||
//this.chkShowGrid.BackgroundImage = global::XKRS.UI.Model.Winform.Properties.Resources.grid;
|
||
this.chkShowGrid.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
|
||
this.chkShowGrid.Dock = System.Windows.Forms.DockStyle.Top;
|
||
this.chkShowGrid.Location = new System.Drawing.Point(0, 0);
|
||
this.chkShowGrid.Name = "chkShowGrid";
|
||
this.chkShowGrid.Size = new System.Drawing.Size(32, 30);
|
||
this.chkShowGrid.TabIndex = 0;
|
||
this.chkShowGrid.UseVisualStyleBackColor = true;
|
||
this.chkShowGrid.CheckedChanged += new System.EventHandler(this.chkShowGrid_CheckedChanged);
|
||
//
|
||
// tbGridValue
|
||
//
|
||
this.tbGridValue.AutoSize = false;
|
||
this.tbGridValue.Dock = System.Windows.Forms.DockStyle.Bottom;
|
||
this.tbGridValue.Location = new System.Drawing.Point(0, 21);
|
||
this.tbGridValue.Name = "tbGridValue";
|
||
this.tbGridValue.Orientation = System.Windows.Forms.Orientation.Vertical;
|
||
this.tbGridValue.Size = new System.Drawing.Size(32, 121);
|
||
this.tbGridValue.TabIndex = 1;
|
||
this.tbGridValue.TickStyle = System.Windows.Forms.TickStyle.Both;
|
||
this.tbGridValue.ValueChanged += new System.EventHandler(this.tbGridValue_ValueChanged);
|
||
//
|
||
// panel1
|
||
//
|
||
this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
||
| System.Windows.Forms.AnchorStyles.Right)));
|
||
this.panel1.Controls.Add(this.chkShowGrid);
|
||
this.panel1.Controls.Add(this.tbGridValue);
|
||
this.panel1.Location = new System.Drawing.Point(1, 1);
|
||
this.panel1.Name = "panel1";
|
||
this.panel1.Size = new System.Drawing.Size(32, 142);
|
||
this.panel1.TabIndex = 2;
|
||
//
|
||
// btnColor
|
||
//
|
||
this.btnColor.BackColor = System.Drawing.Color.Red;
|
||
this.btnColor.Location = new System.Drawing.Point(4, 150);
|
||
this.btnColor.Name = "btnColor";
|
||
this.btnColor.Size = new System.Drawing.Size(25, 23);
|
||
this.btnColor.TabIndex = 3;
|
||
this.btnColor.Text = " ";
|
||
this.btnColor.UseVisualStyleBackColor = false;
|
||
this.btnColor.Click += new System.EventHandler(this.btnColor_Click);
|
||
//
|
||
// GridCtrl
|
||
//
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Inherit;
|
||
this.Controls.Add(this.btnColor);
|
||
this.Controls.Add(this.panel1);
|
||
this.Font = new System.Drawing.Font("Tahoma", 11F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.World, ((byte)(134)));
|
||
this.Name = "GridCtrl";
|
||
this.Size = new System.Drawing.Size(32, 192);
|
||
((System.ComponentModel.ISupportInitialize)(this.tbGridValue)).EndInit();
|
||
this.panel1.ResumeLayout(false);
|
||
this.ResumeLayout(false);
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private System.Windows.Forms.CheckBox chkShowGrid;
|
||
private System.Windows.Forms.TrackBar tbGridValue;
|
||
private System.Windows.Forms.Panel panel1;
|
||
private System.Windows.Forms.ColorDialog colorDialog1;
|
||
private System.Windows.Forms.Button btnColor;
|
||
}
|
||
}
|