namespace TestApp
{
partial class Form1
{
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
this.button2 = new System.Windows.Forms.Button();
this.ActivityTypeSelector = new System.Windows.Forms.ComboBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.UsernameInput = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// button2
//
this.button2.Location = new System.Drawing.Point(48, 116);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(186, 53);
this.button2.TabIndex = 1;
this.button2.Text = "Queue Up Database Message";
this.button2.UseVisualStyleBackColor = true;
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// ActivityTypeSelector
//
this.ActivityTypeSelector.FormattingEnabled = true;
this.ActivityTypeSelector.Items.AddRange(new object[] {
"Check-In",
"Build (broken)",
"Build (successful)"});
this.ActivityTypeSelector.Location = new System.Drawing.Point(106, 44);
this.ActivityTypeSelector.Name = "ActivityTypeSelector";
this.ActivityTypeSelector.Size = new System.Drawing.Size(128, 21);
this.ActivityTypeSelector.TabIndex = 2;
this.ActivityTypeSelector.Text = "Check-In";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(29, 47);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(151, 13);
this.label1.TabIndex = 3;
this.label1.Text = "Activity AwardedAchievement:";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(42, 23);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(58, 13);
this.label2.TabIndex = 4;
this.label2.Text = "Username:";
//
// UsernameInput
//
this.UsernameInput.Location = new System.Drawing.Point(106, 20);
this.UsernameInput.Name = "UsernameInput";
this.UsernameInput.Size = new System.Drawing.Size(128, 20);
this.UsernameInput.TabIndex = 5;
this.UsernameInput.Text = "testuser";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(284, 232);
this.Controls.Add(this.UsernameInput);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.ActivityTypeSelector);
this.Controls.Add(this.button2);
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button button2;
private System.Windows.Forms.ComboBox ActivityTypeSelector;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox UsernameInput;
}
}