Korero – Blame information for rev 2

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 
2 namespace Korero.Chat
3 {
4 partial class AutoResponseForm
5 {
6 /// <summary>
7 /// Required designer variable.
8 /// </summary>
9 private System.ComponentModel.IContainer components = null;
10  
11 /// <summary>
12 /// Clean up any resources being used.
13 /// </summary>
14 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
15 protected override void Dispose(bool disposing)
16 {
17 if (disposing && (components != null))
18 {
19 components.Dispose();
20 }
21 base.Dispose(disposing);
22 }
23  
24 #region Windows Form Designer generated code
25  
26 /// <summary>
27 /// Required method for Designer support - do not modify
28 /// the contents of this method with the code editor.
29 /// </summary>
30 private void InitializeComponent()
31 {
32 System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AutoResponseForm));
33 this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
34 this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel();
35 this.button1 = new System.Windows.Forms.Button();
36 this.richTextBox1 = new System.Windows.Forms.RichTextBox();
37 this.tableLayoutPanel1.SuspendLayout();
38 this.tableLayoutPanel2.SuspendLayout();
39 this.SuspendLayout();
40 //
41 // tableLayoutPanel1
42 //
43 this.tableLayoutPanel1.ColumnCount = 1;
44 this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F));
45 this.tableLayoutPanel1.Controls.Add(this.tableLayoutPanel2, 0, 1);
46 this.tableLayoutPanel1.Controls.Add(this.richTextBox1, 0, 0);
47 this.tableLayoutPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
48 this.tableLayoutPanel1.Location = new System.Drawing.Point(0, 0);
49 this.tableLayoutPanel1.Name = "tableLayoutPanel1";
50 this.tableLayoutPanel1.RowCount = 2;
51 this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 80F));
52 this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 20F));
53 this.tableLayoutPanel1.Size = new System.Drawing.Size(568, 165);
54 this.tableLayoutPanel1.TabIndex = 0;
55 //
56 // tableLayoutPanel2
57 //
58 this.tableLayoutPanel2.ColumnCount = 3;
59 this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
60 this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
61 this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33.33333F));
62 this.tableLayoutPanel2.Controls.Add(this.button1, 1, 0);
63 this.tableLayoutPanel2.Dock = System.Windows.Forms.DockStyle.Fill;
64 this.tableLayoutPanel2.Location = new System.Drawing.Point(3, 135);
65 this.tableLayoutPanel2.Name = "tableLayoutPanel2";
66 this.tableLayoutPanel2.RowCount = 1;
67 this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 100F));
68 this.tableLayoutPanel2.Size = new System.Drawing.Size(562, 27);
69 this.tableLayoutPanel2.TabIndex = 0;
70 //
71 // button1
72 //
73 this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right)));
74 this.button1.Location = new System.Drawing.Point(190, 3);
75 this.button1.Name = "button1";
76 this.button1.Size = new System.Drawing.Size(181, 21);
77 this.button1.TabIndex = 0;
78 this.button1.Text = "Set";
79 this.button1.UseVisualStyleBackColor = true;
80 this.button1.Click += new System.EventHandler(this.Button1_Click);
81 //
82 // richTextBox1
83 //
84 this.richTextBox1.BorderStyle = System.Windows.Forms.BorderStyle.None;
85 this.richTextBox1.DataBindings.Add(new System.Windows.Forms.Binding("Text", global::Korero.Properties.Settings.Default, "AutoResponseText", true, System.Windows.Forms.DataSourceUpdateMode.OnPropertyChanged));
86 this.richTextBox1.Dock = System.Windows.Forms.DockStyle.Fill;
87 this.richTextBox1.Location = new System.Drawing.Point(3, 3);
88 this.richTextBox1.MaxLength = 1023;
89 this.richTextBox1.Name = "richTextBox1";
90 this.richTextBox1.Size = new System.Drawing.Size(562, 126);
91 this.richTextBox1.TabIndex = 1;
92 this.richTextBox1.Text = global::Korero.Properties.Settings.Default.AutoResponseText;
93 //
94 // AutoResponseForm
95 //
96 this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
97 this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
98 this.ClientSize = new System.Drawing.Size(568, 165);
99 this.Controls.Add(this.tableLayoutPanel1);
100 this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
101 this.MaximizeBox = false;
102 this.Name = "AutoResponseForm";
103 this.Text = "Korero: Set Auto Response";
2 office 104 this.Load += new System.EventHandler(this.AutoResponseForm_Load);
1 office 105 this.tableLayoutPanel1.ResumeLayout(false);
106 this.tableLayoutPanel2.ResumeLayout(false);
107 this.ResumeLayout(false);
108  
109 }
110  
111 #endregion
112  
113 private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
114 private System.Windows.Forms.TableLayoutPanel tableLayoutPanel2;
115 private System.Windows.Forms.Button button1;
116 private System.Windows.Forms.RichTextBox richTextBox1;
117 }
118 }