SwInterlock.Designer.cs 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. namespace Aitex.Core.Backend
  2. {
  3. partial class SwInterlock
  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 Component 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. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
  29. this.btnSave = new System.Windows.Forms.Button();
  30. this.dataGridView1 = new System.Windows.Forms.DataGridView();
  31. this.checkBox1 = new System.Windows.Forms.CheckBox();
  32. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
  33. this.SuspendLayout();
  34. //
  35. // btnSave
  36. //
  37. this.btnSave.Location = new System.Drawing.Point(379, 3);
  38. this.btnSave.Name = "btnSave";
  39. this.btnSave.Size = new System.Drawing.Size(69, 23);
  40. this.btnSave.TabIndex = 1;
  41. this.btnSave.Text = "保存";
  42. this.btnSave.UseVisualStyleBackColor = true;
  43. this.btnSave.Click += new System.EventHandler(this.btnSave_Click);
  44. //
  45. // dataGridView1
  46. //
  47. this.dataGridView1.AllowUserToAddRows = false;
  48. this.dataGridView1.AllowUserToDeleteRows = false;
  49. this.dataGridView1.AllowUserToResizeColumns = false;
  50. this.dataGridView1.AllowUserToResizeRows = false;
  51. this.dataGridView1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
  52. | System.Windows.Forms.AnchorStyles.Right)));
  53. this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  54. dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
  55. dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Window;
  56. dataGridViewCellStyle1.Font = new System.Drawing.Font("宋体", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  57. dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.ControlText;
  58. dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
  59. dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
  60. dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
  61. this.dataGridView1.DefaultCellStyle = dataGridViewCellStyle1;
  62. this.dataGridView1.Location = new System.Drawing.Point(3, 32);
  63. this.dataGridView1.MultiSelect = false;
  64. this.dataGridView1.Name = "dataGridView1";
  65. this.dataGridView1.ReadOnly = true;
  66. this.dataGridView1.RowTemplate.Height = 23;
  67. this.dataGridView1.Size = new System.Drawing.Size(924, 653);
  68. this.dataGridView1.TabIndex = 2;
  69. this.dataGridView1.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dataGridView1_CellContentClick);
  70. this.dataGridView1.SelectionChanged += new System.EventHandler(this.dataGridView1_SelectionChanged);
  71. //
  72. // checkBox1
  73. //
  74. this.checkBox1.AutoSize = true;
  75. this.checkBox1.Location = new System.Drawing.Point(13, 7);
  76. this.checkBox1.Name = "checkBox1";
  77. this.checkBox1.Size = new System.Drawing.Size(204, 16);
  78. this.checkBox1.TabIndex = 3;
  79. this.checkBox1.Text = "允许修改互锁文件(请谨慎操作)";
  80. this.checkBox1.UseVisualStyleBackColor = true;
  81. this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged);
  82. //
  83. // SwInterlock
  84. //
  85. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  86. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  87. this.AutoScroll = true;
  88. this.BackColor = System.Drawing.Color.White;
  89. this.Controls.Add(this.checkBox1);
  90. this.Controls.Add(this.dataGridView1);
  91. this.Controls.Add(this.btnSave);
  92. this.Name = "SwInterlock";
  93. this.Size = new System.Drawing.Size(983, 740);
  94. this.Load += new System.EventHandler(this.SwInterlock_Load);
  95. ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
  96. this.ResumeLayout(false);
  97. this.PerformLayout();
  98. }
  99. #endregion
  100. private System.Windows.Forms.Button btnSave;
  101. private System.Windows.Forms.DataGridView dataGridView1;
  102. private System.Windows.Forms.CheckBox checkBox1;
  103. }
  104. }