master
1namespace Notepad.Presentation.Views.Shell {
2 partial class WindowShell
3 {
4 /// <summary>
5 /// Required designer variable.
6 /// </summary>
7 private System.ComponentModel.IContainer components = null;
8
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
22 #region Windows Form Designer generated code
23
24 /// <summary>
25 /// Required method for Designer support - do not modify
26 /// the contents of this method with the code editor.
27 /// </summary>
28 private void InitializeComponent()
29 {
30 this.uxMainMenuStrip = new System.Windows.Forms.MenuStrip();
31 this.uxEditorTextBox = new System.Windows.Forms.RichTextBox();
32 this.uxStatusBar = new System.Windows.Forms.StatusStrip();
33 this.SuspendLayout();
34 //
35 // uxMainMenuStrip
36 //
37 this.uxMainMenuStrip.Location = new System.Drawing.Point(0, 0);
38 this.uxMainMenuStrip.Name = "uxMainMenuStrip";
39 this.uxMainMenuStrip.Size = new System.Drawing.Size(292, 24);
40 this.uxMainMenuStrip.TabIndex = 0;
41 this.uxMainMenuStrip.Text = "menuStrip1";
42 //
43 // uxEditorTextBox
44 //
45 this.uxEditorTextBox.Dock = System.Windows.Forms.DockStyle.Fill;
46 this.uxEditorTextBox.Location = new System.Drawing.Point(0, 24);
47 this.uxEditorTextBox.Name = "uxEditorTextBox";
48 this.uxEditorTextBox.Size = new System.Drawing.Size(292, 249);
49 this.uxEditorTextBox.TabIndex = 1;
50 this.uxEditorTextBox.Text = "";
51 //
52 // uxStatusBar
53 //
54 this.uxStatusBar.Location = new System.Drawing.Point(0, 251);
55 this.uxStatusBar.Name = "uxStatusBar";
56 this.uxStatusBar.Size = new System.Drawing.Size(292, 22);
57 this.uxStatusBar.TabIndex = 2;
58 this.uxStatusBar.Text = "statusStrip1";
59 //
60 // MainShellView
61 //
62 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
63 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
64 this.ClientSize = new System.Drawing.Size(292, 273);
65 this.Controls.Add(this.uxStatusBar);
66 this.Controls.Add(this.uxEditorTextBox);
67 this.Controls.Add(this.uxMainMenuStrip);
68 this.MainMenuStrip = this.uxMainMenuStrip;
69 this.Name = "MainShellView";
70 this.Text = "Notepad";
71 this.ResumeLayout(false);
72 this.PerformLayout();
73
74 }
75
76 #endregion
77
78 private System.Windows.Forms.MenuStrip uxMainMenuStrip;
79 private System.Windows.Forms.RichTextBox uxEditorTextBox;
80 private System.Windows.Forms.StatusStrip uxStatusBar;
81 }
82}