Spring – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System.ComponentModel;
2 using System.Windows.Forms;
3  
4 namespace Spring.Tutorial
5 {
6 partial class Tutorial
7 {
8 /// <summary>
9 /// Required designer variable.
10 /// </summary>
11 private IContainer components = null;
12  
13 #region Windows Form Designer generated code
14  
15 /// <summary>
16 /// Required method for Designer support - do not modify
17 /// the contents of this method with the code editor.
18 /// </summary>
19 private void InitializeComponent()
20 {
21 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Tutorial));
22 this.richTextBox1 = new System.Windows.Forms.RichTextBox();
23 this.SuspendLayout();
24 //
25 // richTextBox1
26 //
27 this.richTextBox1.BackColor = System.Drawing.Color.White;
28 this.richTextBox1.CausesValidation = false;
29 this.richTextBox1.Dock = System.Windows.Forms.DockStyle.Fill;
30 this.richTextBox1.Location = new System.Drawing.Point(0, 0);
31 this.richTextBox1.Name = "richTextBox1";
32 this.richTextBox1.ReadOnly = true;
33 this.richTextBox1.ShortcutsEnabled = false;
34 this.richTextBox1.Size = new System.Drawing.Size(332, 420);
35 this.richTextBox1.TabIndex = 0;
36 this.richTextBox1.Text = "";
37 this.richTextBox1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.RichTextBox1_KeyDown);
38 //
39 // Tutorial
40 //
41 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
42 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
43 this.ClientSize = new System.Drawing.Size(332, 420);
44 this.Controls.Add(this.richTextBox1);
45 this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
46 this.MaximizeBox = false;
47 this.MaximumSize = new System.Drawing.Size(348, 458);
48 this.MinimizeBox = false;
49 this.MinimumSize = new System.Drawing.Size(348, 458);
50 this.Name = "Tutorial";
51 this.Text = "Tutorial";
52 this.Load += new System.EventHandler(this.Tutorial_Load);
53 this.Move += new System.EventHandler(this.Form_Move);
54 this.ResumeLayout(false);
55  
56 }
57  
58 #endregion
59  
60 private RichTextBox richTextBox1;
61 }
62 }