Spring – Blame information for rev 2

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System.ComponentModel;
2 using System.Windows.Forms;
3  
4 namespace Spring.About
5 {
6 partial class AboutForm
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(AboutForm));
22 this.pictureBox1 = new System.Windows.Forms.PictureBox();
23 this.VersionTextBox = new System.Windows.Forms.TextBox();
24 this.textBox1 = new System.Windows.Forms.TextBox();
25 ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
26 this.SuspendLayout();
27 //
28 // pictureBox1
29 //
30 this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
31 this.pictureBox1.Location = new System.Drawing.Point(13, 13);
32 this.pictureBox1.MaximumSize = new System.Drawing.Size(156, 156);
33 this.pictureBox1.MinimumSize = new System.Drawing.Size(156, 156);
34 this.pictureBox1.Name = "pictureBox1";
35 this.pictureBox1.Size = new System.Drawing.Size(156, 156);
36 this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
37 this.pictureBox1.TabIndex = 0;
38 this.pictureBox1.TabStop = false;
39 //
40 // VersionTextBox
41 //
42 this.VersionTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
43 this.VersionTextBox.Enabled = false;
44 this.VersionTextBox.ImeMode = System.Windows.Forms.ImeMode.Disable;
45 this.VersionTextBox.Location = new System.Drawing.Point(179, 14);
46 this.VersionTextBox.Multiline = true;
47 this.VersionTextBox.Name = "VersionTextBox";
48 this.VersionTextBox.ReadOnly = true;
49 this.VersionTextBox.Size = new System.Drawing.Size(235, 22);
50 this.VersionTextBox.TabIndex = 5;
51 this.VersionTextBox.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
52 //
53 // textBox1
54 //
55 this.textBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
56 this.textBox1.Enabled = false;
57 this.textBox1.ImeMode = System.Windows.Forms.ImeMode.Disable;
58 this.textBox1.Location = new System.Drawing.Point(179, 42);
59 this.textBox1.Multiline = true;
60 this.textBox1.Name = "textBox1";
61 this.textBox1.ReadOnly = true;
62 this.textBox1.Size = new System.Drawing.Size(235, 126);
63 this.textBox1.TabIndex = 4;
64 this.textBox1.Text = resources.GetString("textBox1.Text");
65 this.textBox1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
66 //
67 // AboutForm
68 //
69 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
70 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
2 office 71 this.ClientSize = new System.Drawing.Size(436, 193);
1 office 72 this.Controls.Add(this.VersionTextBox);
73 this.Controls.Add(this.textBox1);
74 this.Controls.Add(this.pictureBox1);
75 this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
76 this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
77 this.MaximizeBox = false;
78 this.MaximumSize = new System.Drawing.Size(442, 218);
79 this.MinimizeBox = false;
80 this.MinimumSize = new System.Drawing.Size(442, 218);
81 this.Name = "AboutForm";
82 this.Text = "About";
2 office 83 this.Load += new System.EventHandler(this.AboutForm_Load);
1 office 84 this.Shown += new System.EventHandler(this.AboutForm_Shown);
85 ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
86 this.ResumeLayout(false);
87 this.PerformLayout();
88  
89 }
90  
91 #endregion
92  
93 private PictureBox pictureBox1;
94 private TextBox VersionTextBox;
95 private TextBox textBox1;
96 }
97 }