Winify – Blame information for rev 69

Subversion Repositories:
Rev:
Rev Author Line No. Line
67 office 1 using System.ComponentModel;
2 using System.Windows.Forms;
3  
4 namespace Winify
43 office 5 {
6 partial class LogViewForm
7 {
8 /// <summary>
9 /// Required designer variable.
10 /// </summary>
67 office 11 private IContainer components = null;
43 office 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(LogViewForm));
22 this.textBox1 = new System.Windows.Forms.TextBox();
23 this.SuspendLayout();
24 //
25 // textBox1
26 //
27 this.textBox1.Dock = System.Windows.Forms.DockStyle.Fill;
28 this.textBox1.Location = new System.Drawing.Point(0, 0);
29 this.textBox1.Multiline = true;
30 this.textBox1.Name = "textBox1";
31 this.textBox1.ReadOnly = true;
32 this.textBox1.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
33 this.textBox1.Size = new System.Drawing.Size(800, 450);
34 this.textBox1.TabIndex = 0;
35 //
36 // LogViewForm
37 //
38 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
39 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
40 this.ClientSize = new System.Drawing.Size(800, 450);
41 this.Controls.Add(this.textBox1);
42 this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
43 this.Name = "LogViewForm";
44 this.Text = "Winify: Log View";
69 office 45 this.Load += new System.EventHandler(this.LogViewForm_Load);
43 office 46 this.ResumeLayout(false);
47 this.PerformLayout();
48  
49 }
50  
51 #endregion
52  
67 office 53 private TextBox textBox1;
43 office 54 }
55 }