ARCed.Dialogs.NoteForm.InitializeComponent C# (CSharp) Метод

InitializeComponent() приватный Метод

Required method for Designer support - do not modify the contents of this method with the code editor.
private InitializeComponent ( ) : void
Результат void
		private void InitializeComponent()
		{
			this.components = new System.ComponentModel.Container();
			System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(NoteForm));
			this.buttonCancel = new System.Windows.Forms.Button();
			this.buttonOK = new System.Windows.Forms.Button();
			this.buttonCopy = new System.Windows.Forms.Button();
			this.buttonPaste = new System.Windows.Forms.Button();
			this.textBoxNotes = new System.Windows.Forms.TextBox();
			this.contextMenuNotes = new System.Windows.Forms.ContextMenuStrip(this.components);
			this.buttonCutContext = new System.Windows.Forms.ToolStripMenuItem();
			this.buttonCopyContext = new System.Windows.Forms.ToolStripMenuItem();
			this.buttonPasteContext = new System.Windows.Forms.ToolStripMenuItem();
			this.buttonSelectAllContext = new System.Windows.Forms.ToolStripMenuItem();
			this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
			this.buttonFont = new System.Windows.Forms.ToolStripMenuItem();
			this.buttonSelectAll = new System.Windows.Forms.Button();
			this.buttonCut = new System.Windows.Forms.Button();
			this.contextMenuNotes.SuspendLayout();
			this.SuspendLayout();
			// 
			// buttonCancel
			// 
			resources.ApplyResources(this.buttonCancel, "buttonCancel");
			this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
			this.buttonCancel.Name = "buttonCancel";
			this.buttonCancel.UseVisualStyleBackColor = true;
			// 
			// buttonOK
			// 
			resources.ApplyResources(this.buttonOK, "buttonOK");
			this.buttonOK.Name = "buttonOK";
			this.buttonOK.UseVisualStyleBackColor = true;
			this.buttonOK.Click += new System.EventHandler(this.ButtonOkClick);
			// 
			// buttonCopy
			// 
			resources.ApplyResources(this.buttonCopy, "buttonCopy");
			this.buttonCopy.Image = global::ARCed.Properties.Resources.Copy;
			this.buttonCopy.Name = "buttonCopy";
			this.buttonCopy.UseVisualStyleBackColor = true;
			this.buttonCopy.Click += new System.EventHandler(this.ButtonCopyClick);
			// 
			// buttonPaste
			// 
			resources.ApplyResources(this.buttonPaste, "buttonPaste");
			this.buttonPaste.Image = global::ARCed.Properties.Resources.Paste;
			this.buttonPaste.Name = "buttonPaste";
			this.buttonPaste.UseVisualStyleBackColor = true;
			this.buttonPaste.Click += new System.EventHandler(this.ButtonPasteClick);
			// 
			// textBoxNotes
			// 
			this.textBoxNotes.AcceptsReturn = true;
			resources.ApplyResources(this.textBoxNotes, "textBoxNotes");
			this.textBoxNotes.ContextMenuStrip = this.contextMenuNotes;
			this.textBoxNotes.Name = "textBoxNotes";
			// 
			// contextMenuNotes
			// 
			this.contextMenuNotes.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.buttonCutContext,
            this.buttonCopyContext,
            this.buttonPasteContext,
            this.buttonSelectAllContext,
            this.toolStripSeparator2,
            this.buttonFont});
			this.contextMenuNotes.Name = "contextMenuNotes";
			resources.ApplyResources(this.contextMenuNotes, "contextMenuNotes");
			// 
			// buttonCutContext
			// 
			this.buttonCutContext.Image = global::ARCed.Properties.Resources.Cut;
			this.buttonCutContext.Name = "buttonCutContext";
			resources.ApplyResources(this.buttonCutContext, "buttonCutContext");
			this.buttonCutContext.Click += new System.EventHandler(this.ButtonCutClick);
			// 
			// buttonCopyContext
			// 
			this.buttonCopyContext.Image = global::ARCed.Properties.Resources.Copy;
			this.buttonCopyContext.Name = "buttonCopyContext";
			resources.ApplyResources(this.buttonCopyContext, "buttonCopyContext");
			this.buttonCopyContext.Click += new System.EventHandler(this.ButtonCopyClick);
			// 
			// buttonPasteContext
			// 
			this.buttonPasteContext.Image = global::ARCed.Properties.Resources.Paste;
			this.buttonPasteContext.Name = "buttonPasteContext";
			resources.ApplyResources(this.buttonPasteContext, "buttonPasteContext");
			this.buttonPasteContext.Click += new System.EventHandler(this.ButtonPasteClick);
			// 
			// buttonSelectAllContext
			// 
			this.buttonSelectAllContext.Image = global::ARCed.Properties.Resources.SelectAll;
			this.buttonSelectAllContext.Name = "buttonSelectAllContext";
			resources.ApplyResources(this.buttonSelectAllContext, "buttonSelectAllContext");
			this.buttonSelectAllContext.Click += new System.EventHandler(this.ButtonSelectAllClick);
			// 
			// toolStripSeparator2
			// 
			this.toolStripSeparator2.Name = "toolStripSeparator2";
			resources.ApplyResources(this.toolStripSeparator2, "toolStripSeparator2");
			// 
			// buttonFont
			// 
			this.buttonFont.Image = global::ARCed.Properties.Resources.Font;
			this.buttonFont.Name = "buttonFont";
			resources.ApplyResources(this.buttonFont, "buttonFont");
			this.buttonFont.Click += new System.EventHandler(this.ButtonFontClick);
			// 
			// buttonSelectAll
			// 
			resources.ApplyResources(this.buttonSelectAll, "buttonSelectAll");
			this.buttonSelectAll.Image = global::ARCed.Properties.Resources.SelectAll;
			this.buttonSelectAll.Name = "buttonSelectAll";
			this.buttonSelectAll.UseVisualStyleBackColor = true;
			this.buttonSelectAll.Click += new System.EventHandler(this.ButtonSelectAllClick);
			// 
			// buttonCut
			// 
			resources.ApplyResources(this.buttonCut, "buttonCut");
			this.buttonCut.Image = global::ARCed.Properties.Resources.Cut;
			this.buttonCut.Name = "buttonCut";
			this.buttonCut.UseVisualStyleBackColor = true;
			this.buttonCut.Click += new System.EventHandler(this.ButtonCutClick);
			// 
			// NoteForm
			// 
			this.AcceptButton = this.buttonOK;
			resources.ApplyResources(this, "$this");
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.CancelButton = this.buttonCancel;
			this.Controls.Add(this.textBoxNotes);
			this.Controls.Add(this.buttonOK);
			this.Controls.Add(this.buttonSelectAll);
			this.Controls.Add(this.buttonCut);
			this.Controls.Add(this.buttonCancel);
			this.Controls.Add(this.buttonPaste);
			this.Controls.Add(this.buttonCopy);
			this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
			this.Name = "NoteForm";
			this.contextMenuNotes.ResumeLayout(false);
			this.ResumeLayout(false);
			this.PerformLayout();

		}