You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

159 lines
8.2 KiB

  1. namespace ManagementSystem
  2. {
  3. partial class XMLSetting
  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.dgvDataMaintain = new System.Windows.Forms.DataGridView();
  29. this.cAdd = new System.Windows.Forms.DataGridViewButtonColumn();
  30. this.cAccountingSubID = new System.Windows.Forms.DataGridViewTextBoxColumn();
  31. this.cAccountingSubName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  32. this.cDC = new System.Windows.Forms.DataGridViewComboBoxColumn();
  33. this.btnConfirm = new System.Windows.Forms.Button();
  34. this.btnCancle = new System.Windows.Forms.Button();
  35. this.btnClean = new System.Windows.Forms.Button();
  36. ((System.ComponentModel.ISupportInitialize)(this.dgvDataMaintain)).BeginInit();
  37. this.SuspendLayout();
  38. //
  39. // dgvDataMaintain
  40. //
  41. this.dgvDataMaintain.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  42. | System.Windows.Forms.AnchorStyles.Left)
  43. | System.Windows.Forms.AnchorStyles.Right)));
  44. this.dgvDataMaintain.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  45. this.dgvDataMaintain.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  46. this.cAdd,
  47. this.cAccountingSubID,
  48. this.cAccountingSubName,
  49. this.cDC});
  50. this.dgvDataMaintain.EditMode = System.Windows.Forms.DataGridViewEditMode.EditOnEnter;
  51. this.dgvDataMaintain.Location = new System.Drawing.Point(14, 14);
  52. this.dgvDataMaintain.Margin = new System.Windows.Forms.Padding(5);
  53. this.dgvDataMaintain.Name = "dgvDataMaintain";
  54. this.dgvDataMaintain.RowTemplate.Height = 24;
  55. this.dgvDataMaintain.Size = new System.Drawing.Size(483, 198);
  56. this.dgvDataMaintain.TabIndex = 12;
  57. this.dgvDataMaintain.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvDataMaintain_CellContentClick);
  58. this.dgvDataMaintain.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvDataMaintain_CellEndEdit);
  59. this.dgvDataMaintain.CellEnter += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvDataMaintain_CellEnter);
  60. this.dgvDataMaintain.RowsAdded += new System.Windows.Forms.DataGridViewRowsAddedEventHandler(this.dgvDataMaintain_RowsAdded);
  61. this.dgvDataMaintain.RowValidated += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvDataMaintain_RowValidated);
  62. this.dgvDataMaintain.RowValidating += new System.Windows.Forms.DataGridViewCellCancelEventHandler(this.dgvDataMaintain_RowValidating);
  63. //
  64. // cAdd
  65. //
  66. this.cAdd.HeaderText = "…";
  67. this.cAdd.Name = "cAdd";
  68. this.cAdd.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  69. this.cAdd.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  70. this.cAdd.Text = "…";
  71. this.cAdd.Width = 30;
  72. //
  73. // cAccountingSubID
  74. //
  75. this.cAccountingSubID.HeaderText = "科目代號";
  76. this.cAccountingSubID.Name = "cAccountingSubID";
  77. //
  78. // cAccountingSubName
  79. //
  80. this.cAccountingSubName.HeaderText = "科目名稱";
  81. this.cAccountingSubName.Name = "cAccountingSubName";
  82. this.cAccountingSubName.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  83. this.cAccountingSubName.Width = 200;
  84. //
  85. // cDC
  86. //
  87. this.cDC.HeaderText = "借貸設定";
  88. this.cDC.Name = "cDC";
  89. this.cDC.Resizable = System.Windows.Forms.DataGridViewTriState.True;
  90. this.cDC.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
  91. //
  92. // btnConfirm
  93. //
  94. this.btnConfirm.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  95. this.btnConfirm.Location = new System.Drawing.Point(238, 220);
  96. this.btnConfirm.Name = "btnConfirm";
  97. this.btnConfirm.Size = new System.Drawing.Size(83, 36);
  98. this.btnConfirm.TabIndex = 13;
  99. this.btnConfirm.Text = "確 認";
  100. this.btnConfirm.UseVisualStyleBackColor = true;
  101. this.btnConfirm.Click += new System.EventHandler(this.btnConfirm_Click);
  102. //
  103. // btnCancle
  104. //
  105. this.btnCancle.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  106. this.btnCancle.Location = new System.Drawing.Point(413, 220);
  107. this.btnCancle.Name = "btnCancle";
  108. this.btnCancle.Size = new System.Drawing.Size(83, 36);
  109. this.btnCancle.TabIndex = 13;
  110. this.btnCancle.Text = "取 消";
  111. this.btnCancle.UseVisualStyleBackColor = true;
  112. this.btnCancle.Click += new System.EventHandler(this.btnCancle_Click);
  113. //
  114. // btnClean
  115. //
  116. this.btnClean.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  117. this.btnClean.Location = new System.Drawing.Point(327, 220);
  118. this.btnClean.Name = "btnClean";
  119. this.btnClean.Size = new System.Drawing.Size(80, 36);
  120. this.btnClean.TabIndex = 13;
  121. this.btnClean.Text = "清 除";
  122. this.btnClean.UseVisualStyleBackColor = true;
  123. this.btnClean.Click += new System.EventHandler(this.btnClean_Click);
  124. //
  125. // XMLSetting
  126. //
  127. this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 20F);
  128. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  129. this.ClientSize = new System.Drawing.Size(511, 268);
  130. this.Controls.Add(this.btnClean);
  131. this.Controls.Add(this.btnCancle);
  132. this.Controls.Add(this.btnConfirm);
  133. this.Controls.Add(this.dgvDataMaintain);
  134. this.Font = new System.Drawing.Font("微軟正黑體", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
  135. this.Margin = new System.Windows.Forms.Padding(5);
  136. this.MaximizeBox = false;
  137. this.MinimizeBox = false;
  138. this.Name = "XMLSetting";
  139. this.Text = "設定分錄格式";
  140. this.Load += new System.EventHandler(this.XMLSetting_Load);
  141. ((System.ComponentModel.ISupportInitialize)(this.dgvDataMaintain)).EndInit();
  142. this.ResumeLayout(false);
  143. }
  144. #endregion
  145. private System.Windows.Forms.DataGridView dgvDataMaintain;
  146. private System.Windows.Forms.Button btnConfirm;
  147. private System.Windows.Forms.Button btnCancle;
  148. private System.Windows.Forms.DataGridViewButtonColumn cAdd;
  149. private System.Windows.Forms.DataGridViewTextBoxColumn cAccountingSubID;
  150. private System.Windows.Forms.DataGridViewTextBoxColumn cAccountingSubName;
  151. private System.Windows.Forms.DataGridViewComboBoxColumn cDC;
  152. private System.Windows.Forms.Button btnClean;
  153. }
  154. }