B2S.Server Sample Plugin
Sample plugin implementation for the B2S.Server
Go to:
Overview 
 All Classes Namespaces Files Functions Properties Pages
Frontend.Designer.cs
Go to the documentation of this file.
1 namespace B2SServerSamplePluginCSharp
2 {
3  partial class Frontend
4  {
8  private System.ComponentModel.IContainer components = null;
9 
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 Windows Form Designer generated code
24 
29  private void InitializeComponent()
30  {
31  System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frontend));
32  this.label1 = new System.Windows.Forms.Label();
33  this.CloseButton = new System.Windows.Forms.Button();
34  this.VersionLabel = new System.Windows.Forms.Label();
35  this.DocuLinkLabel = new System.Windows.Forms.LinkLabel();
36  this.SuspendLayout();
37  //
38  // label1
39  //
40  this.label1.AutoSize = true;
41  this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 24F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
42  this.label1.Location = new System.Drawing.Point(12, 9);
43  this.label1.Name = "label1";
44  this.label1.Size = new System.Drawing.Size(470, 37);
45  this.label1.TabIndex = 0;
46  this.label1.Text = "B2S.Server Sample Plugin C#";
47  //
48  // CloseButton
49  //
50  this.CloseButton.Dock = System.Windows.Forms.DockStyle.Bottom;
51  this.CloseButton.Location = new System.Drawing.Point(0, 172);
52  this.CloseButton.Name = "CloseButton";
53  this.CloseButton.Size = new System.Drawing.Size(489, 23);
54  this.CloseButton.TabIndex = 1;
55  this.CloseButton.Text = "Close";
56  this.CloseButton.UseVisualStyleBackColor = true;
57  this.CloseButton.Click += new System.EventHandler(this.CloseButton_Click);
58  //
59  // VersionLabel
60  //
61  this.VersionLabel.Location = new System.Drawing.Point(16, 58);
62  this.VersionLabel.Name = "VersionLabel";
63  this.VersionLabel.Size = new System.Drawing.Size(461, 23);
64  this.VersionLabel.TabIndex = 2;
65  this.VersionLabel.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
66  this.VersionLabel.Click += new System.EventHandler(this.VersionLabel_Click);
67  //
68  // DocuLinkLabel
69  //
70  this.DocuLinkLabel.AutoSize = true;
71  this.DocuLinkLabel.Location = new System.Drawing.Point(78, 126);
72  this.DocuLinkLabel.Name = "DocuLinkLabel";
73  this.DocuLinkLabel.Size = new System.Drawing.Size(332, 13);
74  this.DocuLinkLabel.TabIndex = 3;
75  this.DocuLinkLabel.TabStop = true;
76  this.DocuLinkLabel.Text = "Follow this link for the documention on the B2S.Server Sample Plugin";
77  this.DocuLinkLabel.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.DocuLinkLabel_LinkClicked);
78  //
79  // Frontend
80  //
81  this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
82  this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
83  this.ClientSize = new System.Drawing.Size(489, 195);
84  this.Controls.Add(this.DocuLinkLabel);
85  this.Controls.Add(this.VersionLabel);
86  this.Controls.Add(this.CloseButton);
87  this.Controls.Add(this.label1);
88  this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
89  this.Name = "Frontend";
90  this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
91  this.Text = "B2S.Server sample plugin C# frontend";
92  this.Load += new System.EventHandler(this.Frontend_Load);
93  this.ResumeLayout(false);
94  this.PerformLayout();
95 
96  }
97 
98  #endregion
99 
100  private System.Windows.Forms.Label label1;
101  private System.Windows.Forms.Button CloseButton;
102  private System.Windows.Forms.Label VersionLabel;
103  private System.Windows.Forms.LinkLabel DocuLinkLabel;
104  }
105 }