IdentifyPluginControl.Designer.cs 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. namespace Tofly.SearchUI.Win
  2. {
  3. partial class IdentifyPluginControl
  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 组件设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.label1 = new System.Windows.Forms.Label();
  29. this.txtLayerName = new System.Windows.Forms.TextBox();
  30. this.chkCanEdit = new System.Windows.Forms.CheckBox();
  31. this.SuspendLayout();
  32. //
  33. // label1
  34. //
  35. this.label1.AutoSize = true;
  36. this.label1.Location = new System.Drawing.Point(22, 51);
  37. this.label1.Name = "label1";
  38. this.label1.Size = new System.Drawing.Size(113, 12);
  39. this.label1.TabIndex = 0;
  40. this.label1.Text = "指定查询图层名称:";
  41. //
  42. // txtLayerName
  43. //
  44. this.txtLayerName.Location = new System.Drawing.Point(141, 48);
  45. this.txtLayerName.Name = "txtLayerName";
  46. this.txtLayerName.Size = new System.Drawing.Size(235, 21);
  47. this.txtLayerName.TabIndex = 1;
  48. //
  49. // chkCanEdit
  50. //
  51. this.chkCanEdit.AutoSize = true;
  52. this.chkCanEdit.Location = new System.Drawing.Point(141, 16);
  53. this.chkCanEdit.Name = "chkCanEdit";
  54. this.chkCanEdit.Size = new System.Drawing.Size(144, 16);
  55. this.chkCanEdit.TabIndex = 2;
  56. this.chkCanEdit.Text = "是否可编辑(暂不可用)";
  57. this.chkCanEdit.UseVisualStyleBackColor = true;
  58. //
  59. // IdentifyPluginControl
  60. //
  61. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  62. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  63. this.Controls.Add(this.chkCanEdit);
  64. this.Controls.Add(this.txtLayerName);
  65. this.Controls.Add(this.label1);
  66. this.Height = 87;
  67. this.LocationLeft = 15;
  68. this.LocationTop = 15;
  69. this.Name = "IdentifyPluginControl";
  70. this.Size = new System.Drawing.Size(409, 87);
  71. this.Width = 409;
  72. this.ResumeLayout(false);
  73. this.PerformLayout();
  74. }
  75. #endregion
  76. private System.Windows.Forms.Label label1;
  77. private System.Windows.Forms.TextBox txtLayerName;
  78. private System.Windows.Forms.CheckBox chkCanEdit;
  79. }
  80. }