1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- namespace MOTINOVA_Motor_Factory_Set
- {
- partial class Note
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Note));
- this.richTextBox_Note = new System.Windows.Forms.RichTextBox();
- this.button_NoteRead = new System.Windows.Forms.Button();
- this.button_NoteWrite = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // richTextBox_Note
- //
- this.richTextBox_Note.Location = new System.Drawing.Point(12, 12);
- this.richTextBox_Note.Name = "richTextBox_Note";
- this.richTextBox_Note.Size = new System.Drawing.Size(397, 337);
- this.richTextBox_Note.TabIndex = 0;
- this.richTextBox_Note.Text = "";
- //
- // button_NoteRead
- //
- this.button_NoteRead.BackColor = System.Drawing.Color.Green;
- this.button_NoteRead.ForeColor = System.Drawing.Color.White;
- this.button_NoteRead.Location = new System.Drawing.Point(415, 12);
- this.button_NoteRead.Name = "button_NoteRead";
- this.button_NoteRead.Size = new System.Drawing.Size(64, 40);
- this.button_NoteRead.TabIndex = 1;
- this.button_NoteRead.Text = "读入";
- this.button_NoteRead.UseVisualStyleBackColor = false;
- this.button_NoteRead.Click += new System.EventHandler(this.button_NoteRead_Click);
- //
- // button_NoteWrite
- //
- this.button_NoteWrite.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(128)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
- this.button_NoteWrite.ForeColor = System.Drawing.Color.White;
- this.button_NoteWrite.Location = new System.Drawing.Point(415, 60);
- this.button_NoteWrite.Name = "button_NoteWrite";
- this.button_NoteWrite.Size = new System.Drawing.Size(64, 40);
- this.button_NoteWrite.TabIndex = 2;
- this.button_NoteWrite.Text = "保存";
- this.button_NoteWrite.UseVisualStyleBackColor = false;
- this.button_NoteWrite.Click += new System.EventHandler(this.button_NoteWrite_Click);
- //
- // Note
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 21F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.BackColor = System.Drawing.Color.White;
- this.ClientSize = new System.Drawing.Size(484, 361);
- this.Controls.Add(this.button_NoteWrite);
- this.Controls.Add(this.button_NoteRead);
- this.Controls.Add(this.richTextBox_Note);
- this.Font = new System.Drawing.Font("微软雅黑", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
- this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
- this.Margin = new System.Windows.Forms.Padding(5);
- this.MaximizeBox = false;
- this.Name = "Note";
- this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
- this.Text = "Note";
- this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.Note_FormClosing);
- this.Load += new System.EventHandler(this.Note_Load);
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.RichTextBox richTextBox_Note;
- private System.Windows.Forms.Button button_NoteRead;
- private System.Windows.Forms.Button button_NoteWrite;
- }
- }
|