frmTable.Designer.cs
上传用户:xianghe012
上传日期:2022-07-02
资源大小:77k
文件大小:4k
源码类别:

GIS编程

开发平台:

C#

  1. namespace ArcMap
  2. {
  3.     partial class frmTable
  4.     {
  5.         /// <summary>
  6.         /// 必需的设计器变量。
  7.         /// </summary>
  8.         private System.ComponentModel.IContainer components = null;
  9.         /// <summary>
  10.         /// 清理所有正在使用的资源。
  11.         /// </summary>
  12.         /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
  13.         protected override void Dispose(bool disposing)
  14.         {
  15.             if (disposing && (components != null))
  16.             {
  17.                 components.Dispose();
  18.             }
  19.             base.Dispose(disposing);
  20.         }
  21.         #region Windows 窗体设计器生成的代码
  22.         /// <summary>
  23.         /// 设计器支持所需的方法 - 不要
  24.         /// 使用代码编辑器修改此方法的内容。
  25.         /// </summary>
  26.         private void InitializeComponent()
  27.         {
  28.             this.dtGridView = new System.Windows.Forms.DataGridView();
  29.             this.statusStrip1 = new System.Windows.Forms.StatusStrip();
  30.             this.tbarTotalRecords = new System.Windows.Forms.ToolStripStatusLabel();
  31.             ((System.ComponentModel.ISupportInitialize)(this.dtGridView)).BeginInit();
  32.             this.statusStrip1.SuspendLayout();
  33.             this.SuspendLayout();
  34.             // 
  35.             // dtGridView
  36.             // 
  37.             this.dtGridView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  38.             this.dtGridView.Dock = System.Windows.Forms.DockStyle.Fill;
  39.             this.dtGridView.Location = new System.Drawing.Point(0, 0);
  40.             this.dtGridView.Name = "dtGridView";
  41.             this.dtGridView.RowTemplate.Height = 23;
  42.             this.dtGridView.Size = new System.Drawing.Size(625, 415);
  43.             this.dtGridView.TabIndex = 0;
  44.             this.dtGridView.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dtGridView_CellDoubleClick);
  45.             // 
  46.             // statusStrip1
  47.             // 
  48.             this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  49.             this.tbarTotalRecords});
  50.             this.statusStrip1.Location = new System.Drawing.Point(0, 393);
  51.             this.statusStrip1.Name = "statusStrip1";
  52.             this.statusStrip1.Size = new System.Drawing.Size(625, 22);
  53.             this.statusStrip1.TabIndex = 1;
  54.             this.statusStrip1.Text = "statusStrip1";
  55.             // 
  56.             // tbarTotalRecords
  57.             // 
  58.             this.tbarTotalRecords.Name = "tbarTotalRecords";
  59.             this.tbarTotalRecords.Size = new System.Drawing.Size(0, 17);
  60.             // 
  61.             // frmTable
  62.             // 
  63.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  64.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  65.             this.ClientSize = new System.Drawing.Size(625, 415);
  66.             this.Controls.Add(this.statusStrip1);
  67.             this.Controls.Add(this.dtGridView);
  68.             this.Name = "frmTable";
  69.             this.Text = "属性表信息";
  70.             this.Load += new System.EventHandler(this.frmTable_Load);
  71.             ((System.ComponentModel.ISupportInitialize)(this.dtGridView)).EndInit();
  72.             this.statusStrip1.ResumeLayout(false);
  73.             this.statusStrip1.PerformLayout();
  74.             this.ResumeLayout(false);
  75.             this.PerformLayout();
  76.         }
  77.         #endregion
  78.         private System.Windows.Forms.DataGridView dtGridView;
  79.         private System.Windows.Forms.StatusStrip statusStrip1;
  80.         private System.Windows.Forms.ToolStripStatusLabel tbarTotalRecords;
  81.     }
  82. }