ModifyForm.Designer.cs 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. namespace Oreo.FaultLog.Views
  2. {
  3. partial class ModifyForm
  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.panel1 = new System.Windows.Forms.Panel();
  29. this.BtSave = new System.Windows.Forms.Button();
  30. this.faultLogModifyPartial1 = new Oreo.FaultLog.Partials.FaultLogModifyPartial();
  31. this.BtCancel = new System.Windows.Forms.Button();
  32. this.panel1.SuspendLayout();
  33. this.SuspendLayout();
  34. //
  35. // panel1
  36. //
  37. this.panel1.Controls.Add(this.BtSave);
  38. this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
  39. this.panel1.Location = new System.Drawing.Point(0, 328);
  40. this.panel1.Name = "panel1";
  41. this.panel1.Size = new System.Drawing.Size(700, 33);
  42. this.panel1.TabIndex = 5;
  43. //
  44. // BtSave
  45. //
  46. this.BtSave.FlatAppearance.BorderSize = 0;
  47. this.BtSave.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  48. this.BtSave.ForeColor = System.Drawing.Color.White;
  49. this.BtSave.Location = new System.Drawing.Point(223, 6);
  50. this.BtSave.Name = "BtSave";
  51. this.BtSave.Size = new System.Drawing.Size(301, 23);
  52. this.BtSave.TabIndex = 0;
  53. this.BtSave.Text = "保存";
  54. this.BtSave.UseVisualStyleBackColor = true;
  55. this.BtSave.Click += new System.EventHandler(this.BtSave_Click);
  56. //
  57. // faultLogModifyPartial1
  58. //
  59. this.faultLogModifyPartial1.BackColor = System.Drawing.Color.White;
  60. this.faultLogModifyPartial1.Dock = System.Windows.Forms.DockStyle.Bottom;
  61. this.faultLogModifyPartial1.Id = 0;
  62. this.faultLogModifyPartial1.Location = new System.Drawing.Point(0, 57);
  63. this.faultLogModifyPartial1.Name = "faultLogModifyPartial1";
  64. this.faultLogModifyPartial1.Size = new System.Drawing.Size(700, 271);
  65. this.faultLogModifyPartial1.TabIndex = 6;
  66. //
  67. // BtCancel
  68. //
  69. this.BtCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  70. this.BtCancel.FlatAppearance.BorderSize = 0;
  71. this.BtCancel.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  72. this.BtCancel.ForeColor = System.Drawing.Color.White;
  73. this.BtCancel.Location = new System.Drawing.Point(657, 12);
  74. this.BtCancel.Name = "BtCancel";
  75. this.BtCancel.Size = new System.Drawing.Size(31, 23);
  76. this.BtCancel.TabIndex = 1;
  77. this.BtCancel.Text = "X";
  78. this.BtCancel.UseVisualStyleBackColor = true;
  79. this.BtCancel.Click += new System.EventHandler(this.BtCancel_Click);
  80. //
  81. // ModifyForm
  82. //
  83. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  84. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  85. this.BackColor = System.Drawing.Color.Salmon;
  86. this.CancelButton = this.BtCancel;
  87. this.ClientSize = new System.Drawing.Size(700, 361);
  88. this.Controls.Add(this.BtCancel);
  89. this.Controls.Add(this.faultLogModifyPartial1);
  90. this.Controls.Add(this.panel1);
  91. this.Name = "ModifyForm";
  92. this.Text = "ModifyForm";
  93. this.Load += new System.EventHandler(this.ModifyForm_Load);
  94. this.panel1.ResumeLayout(false);
  95. this.ResumeLayout(false);
  96. }
  97. #endregion
  98. private System.Windows.Forms.Panel panel1;
  99. private System.Windows.Forms.Button BtSave;
  100. private Partials.FaultLogModifyPartial faultLogModifyPartial1;
  101. private System.Windows.Forms.Button BtCancel;
  102. }
  103. }