109 lines
4.5 KiB
C#
109 lines
4.5 KiB
C#
|
namespace _3auth_test
|
|||
|
{
|
|||
|
partial class MainInterface
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Required designer variable.
|
|||
|
/// </summary>
|
|||
|
private System.ComponentModel.IContainer components = null;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Clean up any resources being used.
|
|||
|
/// </summary>
|
|||
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|||
|
protected override void Dispose(bool disposing)
|
|||
|
{
|
|||
|
if (disposing && (components != null))
|
|||
|
{
|
|||
|
components.Dispose();
|
|||
|
}
|
|||
|
base.Dispose(disposing);
|
|||
|
}
|
|||
|
|
|||
|
#region Windows Form Designer generated code
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// Required method for Designer support - do not modify
|
|||
|
/// the contents of this method with the code editor.
|
|||
|
/// </summary>
|
|||
|
private void InitializeComponent()
|
|||
|
{
|
|||
|
this.testing_session = new System.Windows.Forms.Label();
|
|||
|
this.testing_id = new System.Windows.Forms.Label();
|
|||
|
this.testing_session_label = new System.Windows.Forms.Label();
|
|||
|
this.testing_id_label = new System.Windows.Forms.Label();
|
|||
|
this.testing_get_values = new System.Windows.Forms.Button();
|
|||
|
this.SuspendLayout();
|
|||
|
//
|
|||
|
// testing_session
|
|||
|
//
|
|||
|
this.testing_session.AutoSize = true;
|
|||
|
this.testing_session.Location = new System.Drawing.Point(111, 47);
|
|||
|
this.testing_session.Name = "testing_session";
|
|||
|
this.testing_session.Size = new System.Drawing.Size(89, 13);
|
|||
|
this.testing_session.TabIndex = 0;
|
|||
|
this.testing_session.Text = "<session id here>";
|
|||
|
//
|
|||
|
// testing_id
|
|||
|
//
|
|||
|
this.testing_id.AutoSize = true;
|
|||
|
this.testing_id.Location = new System.Drawing.Point(111, 60);
|
|||
|
this.testing_id.Name = "testing_id";
|
|||
|
this.testing_id.Size = new System.Drawing.Size(74, 13);
|
|||
|
this.testing_id.TabIndex = 1;
|
|||
|
this.testing_id.Text = "<user id here>";
|
|||
|
//
|
|||
|
// testing_session_label
|
|||
|
//
|
|||
|
this.testing_session_label.AutoSize = true;
|
|||
|
this.testing_session_label.Location = new System.Drawing.Point(44, 47);
|
|||
|
this.testing_session_label.Name = "testing_session_label";
|
|||
|
this.testing_session_label.Size = new System.Drawing.Size(61, 13);
|
|||
|
this.testing_session_label.TabIndex = 2;
|
|||
|
this.testing_session_label.Text = "Session ID:";
|
|||
|
//
|
|||
|
// testing_id_label
|
|||
|
//
|
|||
|
this.testing_id_label.AutoSize = true;
|
|||
|
this.testing_id_label.Location = new System.Drawing.Point(59, 60);
|
|||
|
this.testing_id_label.Name = "testing_id_label";
|
|||
|
this.testing_id_label.Size = new System.Drawing.Size(46, 13);
|
|||
|
this.testing_id_label.TabIndex = 3;
|
|||
|
this.testing_id_label.Text = "User ID:";
|
|||
|
//
|
|||
|
// testing_get_values
|
|||
|
//
|
|||
|
this.testing_get_values.Location = new System.Drawing.Point(89, 94);
|
|||
|
this.testing_get_values.Name = "testing_get_values";
|
|||
|
this.testing_get_values.Size = new System.Drawing.Size(75, 23);
|
|||
|
this.testing_get_values.TabIndex = 4;
|
|||
|
this.testing_get_values.Text = "get values";
|
|||
|
this.testing_get_values.UseVisualStyleBackColor = true;
|
|||
|
this.testing_get_values.Click += new System.EventHandler(this.testing_get_values_Click);
|
|||
|
//
|
|||
|
// MainInterface
|
|||
|
//
|
|||
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|||
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|||
|
this.ClientSize = new System.Drawing.Size(391, 183);
|
|||
|
this.Controls.Add(this.testing_get_values);
|
|||
|
this.Controls.Add(this.testing_id_label);
|
|||
|
this.Controls.Add(this.testing_session_label);
|
|||
|
this.Controls.Add(this.testing_id);
|
|||
|
this.Controls.Add(this.testing_session);
|
|||
|
this.Name = "MainInterface";
|
|||
|
this.Text = "MainInterface";
|
|||
|
this.ResumeLayout(false);
|
|||
|
this.PerformLayout();
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
#endregion
|
|||
|
|
|||
|
private System.Windows.Forms.Label testing_session;
|
|||
|
private System.Windows.Forms.Label testing_id;
|
|||
|
private System.Windows.Forms.Label testing_session_label;
|
|||
|
private System.Windows.Forms.Label testing_id_label;
|
|||
|
private System.Windows.Forms.Button testing_get_values;
|
|||
|
}
|
|||
|
}
|