Note.Designer.cs 4.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. namespace MOTINOVA_Motor_Factory_Set
  2. {
  3. partial class Note
  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. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Note));
  29. this.richTextBox_Note = new System.Windows.Forms.RichTextBox();
  30. this.button_NoteRead = new System.Windows.Forms.Button();
  31. this.button_NoteWrite = new System.Windows.Forms.Button();
  32. this.SuspendLayout();
  33. //
  34. // richTextBox_Note
  35. //
  36. this.richTextBox_Note.Location = new System.Drawing.Point(12, 12);
  37. this.richTextBox_Note.Name = "richTextBox_Note";
  38. this.richTextBox_Note.Size = new System.Drawing.Size(397, 337);
  39. this.richTextBox_Note.TabIndex = 0;
  40. this.richTextBox_Note.Text = "";
  41. //
  42. // button_NoteRead
  43. //
  44. this.button_NoteRead.BackColor = System.Drawing.Color.Green;
  45. this.button_NoteRead.ForeColor = System.Drawing.Color.White;
  46. this.button_NoteRead.Location = new System.Drawing.Point(415, 12);
  47. this.button_NoteRead.Name = "button_NoteRead";
  48. this.button_NoteRead.Size = new System.Drawing.Size(64, 40);
  49. this.button_NoteRead.TabIndex = 1;
  50. this.button_NoteRead.Text = "读入";
  51. this.button_NoteRead.UseVisualStyleBackColor = false;
  52. this.button_NoteRead.Click += new System.EventHandler(this.button_NoteRead_Click);
  53. //
  54. // button_NoteWrite
  55. //
  56. this.button_NoteWrite.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
  57. this.button_NoteWrite.ForeColor = System.Drawing.Color.White;
  58. this.button_NoteWrite.Location = new System.Drawing.Point(415, 60);
  59. this.button_NoteWrite.Name = "button_NoteWrite";
  60. this.button_NoteWrite.Size = new System.Drawing.Size(64, 40);
  61. this.button_NoteWrite.TabIndex = 2;
  62. this.button_NoteWrite.Text = "保存";
  63. this.button_NoteWrite.UseVisualStyleBackColor = false;
  64. this.button_NoteWrite.Click += new System.EventHandler(this.button_NoteWrite_Click);
  65. //
  66. // Note
  67. //
  68. this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F);
  69. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  70. this.BackColor = System.Drawing.Color.White;
  71. this.ClientSize = new System.Drawing.Size(484, 361);
  72. this.Controls.Add(this.button_NoteWrite);
  73. this.Controls.Add(this.button_NoteRead);
  74. this.Controls.Add(this.richTextBox_Note);
  75. this.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
  76. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  77. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  78. this.Margin = new System.Windows.Forms.Padding(5);
  79. this.MaximizeBox = false;
  80. this.Name = "Note";
  81. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  82. this.Text = "Note";
  83. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Note_FormClosing);
  84. this.Load += new System.EventHandler(this.Note_Load);
  85. this.ResumeLayout(false);
  86. }
  87. #endregion
  88. private System.Windows.Forms.RichTextBox richTextBox_Note;
  89. private System.Windows.Forms.Button button_NoteRead;
  90. private System.Windows.Forms.Button button_NoteWrite;
  91. }
  92. }