ChangeMaster.Designer.cs 3.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. namespace UAS_LabelMachine
  2. {
  3. partial class ChangeMaster
  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.Master = new System.Windows.Forms.Label();
  29. this.MasterCombox = new System.Windows.Forms.ComboBox();
  30. this.button1 = new System.Windows.Forms.Button();
  31. this.SuspendLayout();
  32. //
  33. // Master
  34. //
  35. this.Master.AutoSize = true;
  36. this.Master.BackColor = System.Drawing.Color.Transparent;
  37. this.Master.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  38. this.Master.Location = new System.Drawing.Point(29, 97);
  39. this.Master.Margin = new System.Windows.Forms.Padding(6, 0, 6, 0);
  40. this.Master.Name = "Master";
  41. this.Master.Size = new System.Drawing.Size(82, 41);
  42. this.Master.TabIndex = 10;
  43. this.Master.Text = "账套";
  44. //
  45. // MasterCombox
  46. //
  47. this.MasterCombox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  48. this.MasterCombox.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  49. this.MasterCombox.FormattingEnabled = true;
  50. this.MasterCombox.Location = new System.Drawing.Point(141, 94);
  51. this.MasterCombox.Margin = new System.Windows.Forms.Padding(6);
  52. this.MasterCombox.Name = "MasterCombox";
  53. this.MasterCombox.Size = new System.Drawing.Size(346, 49);
  54. this.MasterCombox.TabIndex = 9;
  55. //
  56. // button1
  57. //
  58. this.button1.Location = new System.Drawing.Point(189, 225);
  59. this.button1.Name = "button1";
  60. this.button1.Size = new System.Drawing.Size(130, 39);
  61. this.button1.TabIndex = 11;
  62. this.button1.Text = "确认";
  63. this.button1.UseVisualStyleBackColor = true;
  64. this.button1.Click += new System.EventHandler(this.button1_Click);
  65. //
  66. // ChangeMaster
  67. //
  68. this.AutoScaleDimensions = new System.Drawing.SizeF(12F, 24F);
  69. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  70. this.ClientSize = new System.Drawing.Size(513, 308);
  71. this.Controls.Add(this.button1);
  72. this.Controls.Add(this.Master);
  73. this.Controls.Add(this.MasterCombox);
  74. this.MaximizeBox = false;
  75. this.Name = "ChangeMaster";
  76. this.Text = "切换账套";
  77. this.Load += new System.EventHandler(this.ChangeMaster_Load);
  78. this.ResumeLayout(false);
  79. this.PerformLayout();
  80. }
  81. #endregion
  82. private System.Windows.Forms.Label Master;
  83. private System.Windows.Forms.ComboBox MasterCombox;
  84. private System.Windows.Forms.Button button1;
  85. }
  86. }