FrmSelectColumnDisplay.Designer.cs 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. namespace ProjectBase.Controls
  2. {
  3. partial class FrmSelectColumnDisplay
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, 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 Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.components = new System.ComponentModel.Container();
  29. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmSelectColumnDisplay));
  30. this.panel1 = new System.Windows.Forms.Panel();
  31. this.btn_OK = new DevExpress.XtraEditors.SimpleButton();
  32. this.imageCollection1 = new DevExpress.Utils.ImageCollection(this.components);
  33. this.check_SelectAll = new System.Windows.Forms.CheckBox();
  34. this.check_Inverse = new System.Windows.Forms.CheckBox();
  35. ((System.ComponentModel.ISupportInitialize)(this.imageCollection1)).BeginInit();
  36. this.SuspendLayout();
  37. //
  38. // panel1
  39. //
  40. this.panel1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  41. | System.Windows.Forms.AnchorStyles.Left)
  42. | System.Windows.Forms.AnchorStyles.Right)));
  43. this.panel1.Location = new System.Drawing.Point(14, 14);
  44. this.panel1.Name = "panel1";
  45. this.panel1.Size = new System.Drawing.Size(306, 309);
  46. this.panel1.TabIndex = 0;
  47. //
  48. // btn_OK
  49. //
  50. this.btn_OK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  51. this.btn_OK.DialogResult = System.Windows.Forms.DialogResult.OK;
  52. this.btn_OK.ImageIndex = 0;
  53. this.btn_OK.ImageList = this.imageCollection1;
  54. this.btn_OK.Location = new System.Drawing.Point(248, 341);
  55. this.btn_OK.Name = "btn_OK";
  56. this.btn_OK.Size = new System.Drawing.Size(72, 23);
  57. this.btn_OK.TabIndex = 1;
  58. this.btn_OK.Text = "确定(&O)";
  59. //
  60. // imageCollection1
  61. //
  62. this.imageCollection1.ImageStream = ((DevExpress.Utils.ImageCollectionStreamer)(resources.GetObject("imageCollection1.ImageStream")));
  63. //
  64. // check_SelectAll
  65. //
  66. this.check_SelectAll.AutoSize = true;
  67. this.check_SelectAll.Location = new System.Drawing.Point(15, 330);
  68. this.check_SelectAll.Name = "check_SelectAll";
  69. this.check_SelectAll.Size = new System.Drawing.Size(91, 18);
  70. this.check_SelectAll.TabIndex = 2;
  71. this.check_SelectAll.Text = "全选/全不选";
  72. this.check_SelectAll.UseVisualStyleBackColor = true;
  73. this.check_SelectAll.CheckedChanged += new System.EventHandler(this.check_SelectAll_CheckedChanged);
  74. //
  75. // check_Inverse
  76. //
  77. this.check_Inverse.AutoSize = true;
  78. this.check_Inverse.Location = new System.Drawing.Point(128, 330);
  79. this.check_Inverse.Name = "check_Inverse";
  80. this.check_Inverse.Size = new System.Drawing.Size(50, 18);
  81. this.check_Inverse.TabIndex = 3;
  82. this.check_Inverse.Text = "反选";
  83. this.check_Inverse.UseVisualStyleBackColor = true;
  84. this.check_Inverse.CheckedChanged += new System.EventHandler(this.check_Inverse_CheckedChanged);
  85. //
  86. // FrmSelectColumnDisplay
  87. //
  88. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
  89. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  90. this.ClientSize = new System.Drawing.Size(334, 387);
  91. this.Controls.Add(this.check_Inverse);
  92. this.Controls.Add(this.check_SelectAll);
  93. this.Controls.Add(this.btn_OK);
  94. this.Controls.Add(this.panel1);
  95. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
  96. this.MaximizeBox = false;
  97. this.MinimizeBox = false;
  98. this.Name = "FrmSelectColumnDisplay";
  99. this.ShowInTaskbar = false;
  100. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  101. this.Text = "设置列的可见性";
  102. this.Load += new System.EventHandler(this.FrmSelectColumnDisplay_Load);
  103. ((System.ComponentModel.ISupportInitialize)(this.imageCollection1)).EndInit();
  104. this.ResumeLayout(false);
  105. this.PerformLayout();
  106. }
  107. #endregion
  108. private System.Windows.Forms.Panel panel1;
  109. private DevExpress.XtraEditors.SimpleButton btn_OK;
  110. private System.Windows.Forms.CheckBox check_SelectAll;
  111. private System.Windows.Forms.CheckBox check_Inverse;
  112. private DevExpress.Utils.ImageCollection imageCollection1;
  113. }
  114. }