frmTable.Designer.cs
资源名称:arcMAP.rar [点击查看]
上传用户:xianghe012
上传日期:2022-07-02
资源大小:77k
文件大小:4k
源码类别:
GIS编程
开发平台:
C#
- namespace ArcMap
- {
- partial class frmTable
- {
- /// <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 Windows 窗体设计器生成的代码
- /// <summary>
- /// 设计器支持所需的方法 - 不要
- /// 使用代码编辑器修改此方法的内容。
- /// </summary>
- private void InitializeComponent()
- {
- this.dtGridView = new System.Windows.Forms.DataGridView();
- this.statusStrip1 = new System.Windows.Forms.StatusStrip();
- this.tbarTotalRecords = new System.Windows.Forms.ToolStripStatusLabel();
- ((System.ComponentModel.ISupportInitialize)(this.dtGridView)).BeginInit();
- this.statusStrip1.SuspendLayout();
- this.SuspendLayout();
- //
- // dtGridView
- //
- this.dtGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
- this.dtGridView.Dock = System.Windows.Forms.DockStyle.Fill;
- this.dtGridView.Location = new System.Drawing.Point(0, 0);
- this.dtGridView.Name = "dtGridView";
- this.dtGridView.RowTemplate.Height = 23;
- this.dtGridView.Size = new System.Drawing.Size(625, 415);
- this.dtGridView.TabIndex = 0;
- this.dtGridView.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dtGridView_CellDoubleClick);
- //
- // statusStrip1
- //
- this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
- this.tbarTotalRecords});
- this.statusStrip1.Location = new System.Drawing.Point(0, 393);
- this.statusStrip1.Name = "statusStrip1";
- this.statusStrip1.Size = new System.Drawing.Size(625, 22);
- this.statusStrip1.TabIndex = 1;
- this.statusStrip1.Text = "statusStrip1";
- //
- // tbarTotalRecords
- //
- this.tbarTotalRecords.Name = "tbarTotalRecords";
- this.tbarTotalRecords.Size = new System.Drawing.Size(0, 17);
- //
- // frmTable
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(625, 415);
- this.Controls.Add(this.statusStrip1);
- this.Controls.Add(this.dtGridView);
- this.Name = "frmTable";
- this.Text = "属性表信息";
- this.Load += new System.EventHandler(this.frmTable_Load);
- ((System.ComponentModel.ISupportInitialize)(this.dtGridView)).EndInit();
- this.statusStrip1.ResumeLayout(false);
- this.statusStrip1.PerformLayout();
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.DataGridView dtGridView;
- private System.Windows.Forms.StatusStrip statusStrip1;
- private System.Windows.Forms.ToolStripStatusLabel tbarTotalRecords;
- }
- }