OSDN Git Service

Added sample plugin that demonstrates how to add GUI tab to Radegast via plugin
[radegast/radegast.git] / plugins / Radegast.Plugin.DemoTab / DemoTab.Designer.cs
1 namespace DemoTab
2 {
3     partial class DemoTab
4     {
5         /// <summary> 
6         /// Required designer variable.
7         /// </summary>
8         private System.ComponentModel.IContainer components = null;
9
10         /// <summary> 
11         /// Clean up any resources being used.
12         /// </summary>
13         /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
14         protected override void Dispose(bool disposing)
15         {
16             if (disposing && (components != null))
17             {
18                 components.Dispose();
19             }
20             base.Dispose(disposing);
21         }
22
23         #region Component Designer generated code
24
25         /// <summary> 
26         /// Required method for Designer support - do not modify 
27         /// the contents of this method with the code editor.
28         /// </summary>
29         private void InitializeComponent()
30         {
31             this.btnSaySomething = new System.Windows.Forms.Button();
32             this.label1 = new System.Windows.Forms.Label();
33             this.txtChat = new System.Windows.Forms.TextBox();
34             this.SuspendLayout();
35             // 
36             // btnSaySomething
37             // 
38             this.btnSaySomething.Location = new System.Drawing.Point(18, 23);
39             this.btnSaySomething.Name = "btnSaySomething";
40             this.btnSaySomething.Size = new System.Drawing.Size(159, 23);
41             this.btnSaySomething.TabIndex = 0;
42             this.btnSaySomething.Text = "Say Something";
43             this.btnSaySomething.UseVisualStyleBackColor = true;
44             this.btnSaySomething.Click += new System.EventHandler(this.btnSaySomething_Click);
45             // 
46             // label1
47             // 
48             this.label1.AutoSize = true;
49             this.label1.Location = new System.Drawing.Point(15, 62);
50             this.label1.Name = "label1";
51             this.label1.Size = new System.Drawing.Size(73, 13);
52             this.label1.TabIndex = 1;
53             this.label1.Text = "Last chat line:";
54             // 
55             // txtChat
56             // 
57             this.txtChat.Location = new System.Drawing.Point(94, 59);
58             this.txtChat.Name = "txtChat";
59             this.txtChat.Size = new System.Drawing.Size(247, 20);
60             this.txtChat.TabIndex = 2;
61             // 
62             // DemoTab
63             // 
64             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
65             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
66             this.Controls.Add(this.txtChat);
67             this.Controls.Add(this.label1);
68             this.Controls.Add(this.btnSaySomething);
69             this.Name = "DemoTab";
70             this.Size = new System.Drawing.Size(458, 290);
71             this.ResumeLayout(false);
72             this.PerformLayout();
73
74         }
75
76         #endregion
77
78         private System.Windows.Forms.Button btnSaySomething;
79         private System.Windows.Forms.Label label1;
80         private System.Windows.Forms.TextBox txtChat;
81     }
82 }