📄 layerpropertiescontrol.designer.cs
字号:
namespace LayerPropertiesControl
{
partial class AxLayerPropertiesControl
{
/// <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.layerGridView = new System.Windows.Forms.DataGridView();
this.colLayerName = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.colLayerAliasName = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.colVisible = new System.Windows.Forms.DataGridViewCheckBoxColumn();
this.colSelectable = new System.Windows.Forms.DataGridViewCheckBoxColumn();
this.colSymbol = new System.Windows.Forms.DataGridViewImageColumn();
this.colDataSource = new System.Windows.Forms.DataGridViewTextBoxColumn();
((System.ComponentModel.ISupportInitialize)(this.layerGridView)).BeginInit();
this.SuspendLayout();
//
// layerGridView
//
this.layerGridView.AllowUserToAddRows = false;
this.layerGridView.AllowUserToResizeRows = false;
this.layerGridView.BackgroundColor = System.Drawing.SystemColors.ControlLight;
this.layerGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.layerGridView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.colLayerName,
this.colLayerAliasName,
this.colVisible,
this.colSelectable,
this.colSymbol,
this.colDataSource});
this.layerGridView.Dock = System.Windows.Forms.DockStyle.Fill;
this.layerGridView.Location = new System.Drawing.Point(0, 0);
this.layerGridView.Name = "layerGridView";
this.layerGridView.RowHeadersWidth = 5;
this.layerGridView.RowTemplate.Height = 23;
this.layerGridView.Size = new System.Drawing.Size(447, 192);
this.layerGridView.TabIndex = 0;
this.layerGridView.CellLeave += new System.Windows.Forms.DataGridViewCellEventHandler(this.layerGridView_CellLeave);
this.layerGridView.CurrentCellDirtyStateChanged += new System.EventHandler(this.layerGridView_CurrentCellDirtyStateChanged);
this.layerGridView.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.layerGridView_CellValueChanged);
//
// colLayerName
//
this.colLayerName.HeaderText = "图层名称";
this.colLayerName.Name = "colLayerName";
this.colLayerName.ReadOnly = true;
this.colLayerName.Width = 200;
//
// colLayerAliasName
//
this.colLayerAliasName.HeaderText = "图层别名";
this.colLayerAliasName.Name = "colLayerAliasName";
this.colLayerAliasName.Width = 150;
//
// colVisible
//
this.colVisible.HeaderText = "可见";
this.colVisible.Name = "colVisible";
this.colVisible.Width = 20;
//
// colSelectable
//
this.colSelectable.HeaderText = "可选";
this.colSelectable.Name = "colSelectable";
this.colSelectable.Width = 20;
//
// colSymbol
//
this.colSymbol.HeaderText = "样式";
this.colSymbol.Name = "colSymbol";
this.colSymbol.Width = 50;
//
// colDataSource
//
this.colDataSource.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
this.colDataSource.HeaderText = "数据源";
this.colDataSource.MinimumWidth = 100;
this.colDataSource.Name = "colDataSource";
//
// AxLayerPropertiesControl
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.layerGridView);
this.Name = "AxLayerPropertiesControl";
this.Size = new System.Drawing.Size(447, 192);
this.Load += new System.EventHandler(this.AxLayerPropertiesControl_Load);
((System.ComponentModel.ISupportInitialize)(this.layerGridView)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.DataGridView layerGridView;
private System.Windows.Forms.DataGridViewTextBoxColumn colLayerName;
private System.Windows.Forms.DataGridViewTextBoxColumn colLayerAliasName;
private System.Windows.Forms.DataGridViewCheckBoxColumn colVisible;
private System.Windows.Forms.DataGridViewCheckBoxColumn colSelectable;
private System.Windows.Forms.DataGridViewImageColumn colSymbol;
private System.Windows.Forms.DataGridViewTextBoxColumn colDataSource;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -