429 lines
18 KiB
C#
429 lines
18 KiB
C#
namespace TestClient
|
|
{
|
|
partial class MainForm
|
|
{
|
|
/// <summary>
|
|
/// Variabile di progettazione necessaria.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Pulire le risorse in uso.
|
|
/// </summary>
|
|
/// <param name="disposing">ha valore true se le risorse gestite devono essere eliminate, false in caso contrario.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Codice generato da Progettazione Windows Form
|
|
|
|
/// <summary>
|
|
/// Metodo necessario per il supporto della finestra di progettazione. Non modificare
|
|
/// il contenuto del metodo con l'editor di codice.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
this.statusStrip1 = new System.Windows.Forms.StatusStrip();
|
|
this.toolStripStatusLabel1 = new System.Windows.Forms.ToolStripStatusLabel();
|
|
this.toolStripProgressBar1 = new System.Windows.Forms.ToolStripProgressBar();
|
|
this.lblClock = new System.Windows.Forms.ToolStripStatusLabel();
|
|
this.groupBox1 = new System.Windows.Forms.GroupBox();
|
|
this.chkEnrolled = new System.Windows.Forms.CheckBox();
|
|
this.chkLocalOk = new System.Windows.Forms.CheckBox();
|
|
this.chkCloudOk = new System.Windows.Forms.CheckBox();
|
|
this.txtConnParam = new System.Windows.Forms.TextBox();
|
|
this.label4 = new System.Windows.Forms.Label();
|
|
this.chkTestMode = new System.Windows.Forms.CheckBox();
|
|
this.txtMConnectID = new System.Windows.Forms.TextBox();
|
|
this.label3 = new System.Windows.Forms.Label();
|
|
this.groupBox2 = new System.Windows.Forms.GroupBox();
|
|
this.btnTryUserLogin = new System.Windows.Forms.Button();
|
|
this.btnGetUserList = new System.Windows.Forms.Button();
|
|
this.btnGetOrgCode = new System.Windows.Forms.Button();
|
|
this.btnTryAuth = new System.Windows.Forms.Button();
|
|
this.btnInit = new System.Windows.Forms.Button();
|
|
this.btnResetParam = new System.Windows.Forms.Button();
|
|
this.tableLayoutPanel1 = new System.Windows.Forms.TableLayoutPanel();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.label5 = new System.Windows.Forms.Label();
|
|
this.lblReqStatus = new System.Windows.Forms.Label();
|
|
this.lblRetData = new System.Windows.Forms.Label();
|
|
this.pictureBox1 = new System.Windows.Forms.PictureBox();
|
|
this.label6 = new System.Windows.Forms.Label();
|
|
this.lblConsole = new System.Windows.Forms.Label();
|
|
this.statusStrip1.SuspendLayout();
|
|
this.groupBox1.SuspendLayout();
|
|
this.groupBox2.SuspendLayout();
|
|
this.tableLayoutPanel1.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// statusStrip1
|
|
//
|
|
this.statusStrip1.ImageScalingSize = new System.Drawing.Size(20, 20);
|
|
this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.toolStripStatusLabel1,
|
|
this.toolStripProgressBar1,
|
|
this.lblClock});
|
|
this.statusStrip1.Location = new System.Drawing.Point(0, 685);
|
|
this.statusStrip1.Name = "statusStrip1";
|
|
this.statusStrip1.Size = new System.Drawing.Size(1007, 25);
|
|
this.statusStrip1.TabIndex = 7;
|
|
this.statusStrip1.Text = "statusStrip1";
|
|
//
|
|
// toolStripStatusLabel1
|
|
//
|
|
this.toolStripStatusLabel1.Name = "toolStripStatusLabel1";
|
|
this.toolStripStatusLabel1.Size = new System.Drawing.Size(104, 20);
|
|
this.toolStripStatusLabel1.Text = "MConnectSDK";
|
|
//
|
|
// toolStripProgressBar1
|
|
//
|
|
this.toolStripProgressBar1.Name = "toolStripProgressBar1";
|
|
this.toolStripProgressBar1.Size = new System.Drawing.Size(100, 19);
|
|
this.toolStripProgressBar1.Style = System.Windows.Forms.ProgressBarStyle.Marquee;
|
|
//
|
|
// lblClock
|
|
//
|
|
this.lblClock.Name = "lblClock";
|
|
this.lblClock.Size = new System.Drawing.Size(27, 20);
|
|
this.lblClock.Text = "---";
|
|
//
|
|
// groupBox1
|
|
//
|
|
this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.groupBox1.AutoSize = true;
|
|
this.groupBox1.Controls.Add(this.chkEnrolled);
|
|
this.groupBox1.Controls.Add(this.chkLocalOk);
|
|
this.groupBox1.Controls.Add(this.chkCloudOk);
|
|
this.groupBox1.Controls.Add(this.txtConnParam);
|
|
this.groupBox1.Controls.Add(this.label4);
|
|
this.groupBox1.Controls.Add(this.chkTestMode);
|
|
this.groupBox1.Controls.Add(this.txtMConnectID);
|
|
this.groupBox1.Controls.Add(this.label3);
|
|
this.groupBox1.Location = new System.Drawing.Point(13, 12);
|
|
this.groupBox1.Name = "groupBox1";
|
|
this.groupBox1.Size = new System.Drawing.Size(982, 101);
|
|
this.groupBox1.TabIndex = 11;
|
|
this.groupBox1.TabStop = false;
|
|
this.groupBox1.Text = "Connection Parameters";
|
|
//
|
|
// chkEnrolled
|
|
//
|
|
this.chkEnrolled.AutoSize = true;
|
|
this.chkEnrolled.Location = new System.Drawing.Point(536, 58);
|
|
this.chkEnrolled.Name = "chkEnrolled";
|
|
this.chkEnrolled.Size = new System.Drawing.Size(110, 21);
|
|
this.chkEnrolled.TabIndex = 18;
|
|
this.chkEnrolled.Text = "Enroll Status";
|
|
this.chkEnrolled.UseVisualStyleBackColor = true;
|
|
this.chkEnrolled.Click += new System.EventHandler(this.chkEnrolled_Click);
|
|
//
|
|
// chkLocalOk
|
|
//
|
|
this.chkLocalOk.AutoSize = true;
|
|
this.chkLocalOk.Checked = true;
|
|
this.chkLocalOk.CheckState = System.Windows.Forms.CheckState.Checked;
|
|
this.chkLocalOk.Location = new System.Drawing.Point(676, 29);
|
|
this.chkLocalOk.Name = "chkLocalOk";
|
|
this.chkLocalOk.Size = new System.Drawing.Size(108, 21);
|
|
this.chkLocalOk.TabIndex = 17;
|
|
this.chkLocalOk.Text = "Local Status";
|
|
this.chkLocalOk.UseVisualStyleBackColor = true;
|
|
this.chkLocalOk.Click += new System.EventHandler(this.chkLocalOk_Click);
|
|
//
|
|
// chkCloudOk
|
|
//
|
|
this.chkCloudOk.AutoSize = true;
|
|
this.chkCloudOk.Checked = true;
|
|
this.chkCloudOk.CheckState = System.Windows.Forms.CheckState.Checked;
|
|
this.chkCloudOk.Location = new System.Drawing.Point(536, 29);
|
|
this.chkCloudOk.Name = "chkCloudOk";
|
|
this.chkCloudOk.Size = new System.Drawing.Size(110, 21);
|
|
this.chkCloudOk.TabIndex = 16;
|
|
this.chkCloudOk.Text = "Cloud Status";
|
|
this.chkCloudOk.UseVisualStyleBackColor = true;
|
|
this.chkCloudOk.Click += new System.EventHandler(this.chkCloudOk_Click);
|
|
//
|
|
// txtConnParam
|
|
//
|
|
this.txtConnParam.Location = new System.Drawing.Point(103, 58);
|
|
this.txtConnParam.Name = "txtConnParam";
|
|
this.txtConnParam.Size = new System.Drawing.Size(268, 22);
|
|
this.txtConnParam.TabIndex = 15;
|
|
//
|
|
// label4
|
|
//
|
|
this.label4.AutoSize = true;
|
|
this.label4.Location = new System.Drawing.Point(35, 62);
|
|
this.label4.Name = "label4";
|
|
this.label4.Size = new System.Drawing.Size(61, 17);
|
|
this.label4.TabIndex = 14;
|
|
this.label4.Text = "connPar";
|
|
//
|
|
// chkTestMode
|
|
//
|
|
this.chkTestMode.AutoSize = true;
|
|
this.chkTestMode.Location = new System.Drawing.Point(399, 29);
|
|
this.chkTestMode.Name = "chkTestMode";
|
|
this.chkTestMode.Size = new System.Drawing.Size(97, 21);
|
|
this.chkTestMode.TabIndex = 13;
|
|
this.chkTestMode.Text = "Test Mode";
|
|
this.chkTestMode.UseVisualStyleBackColor = true;
|
|
this.chkTestMode.Click += new System.EventHandler(this.chkTestMode_Click);
|
|
//
|
|
// txtMConnectID
|
|
//
|
|
this.txtMConnectID.Location = new System.Drawing.Point(103, 30);
|
|
this.txtMConnectID.Name = "txtMConnectID";
|
|
this.txtMConnectID.Size = new System.Drawing.Size(268, 22);
|
|
this.txtMConnectID.TabIndex = 12;
|
|
//
|
|
// label3
|
|
//
|
|
this.label3.AutoSize = true;
|
|
this.label3.Location = new System.Drawing.Point(13, 33);
|
|
this.label3.Name = "label3";
|
|
this.label3.Size = new System.Drawing.Size(84, 17);
|
|
this.label3.TabIndex = 11;
|
|
this.label3.Text = "MConnectID";
|
|
//
|
|
// groupBox2
|
|
//
|
|
this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.groupBox2.Controls.Add(this.btnTryUserLogin);
|
|
this.groupBox2.Controls.Add(this.btnGetUserList);
|
|
this.groupBox2.Controls.Add(this.btnGetOrgCode);
|
|
this.groupBox2.Controls.Add(this.btnTryAuth);
|
|
this.groupBox2.Controls.Add(this.btnInit);
|
|
this.groupBox2.Controls.Add(this.btnResetParam);
|
|
this.groupBox2.Location = new System.Drawing.Point(13, 119);
|
|
this.groupBox2.Name = "groupBox2";
|
|
this.groupBox2.Size = new System.Drawing.Size(982, 100);
|
|
this.groupBox2.TabIndex = 14;
|
|
this.groupBox2.TabStop = false;
|
|
this.groupBox2.Text = "Metodi";
|
|
//
|
|
// btnTryUserLogin
|
|
//
|
|
this.btnTryUserLogin.Location = new System.Drawing.Point(736, 32);
|
|
this.btnTryUserLogin.Name = "btnTryUserLogin";
|
|
this.btnTryUserLogin.Size = new System.Drawing.Size(118, 49);
|
|
this.btnTryUserLogin.TabIndex = 19;
|
|
this.btnTryUserLogin.Text = "tryUserLogin";
|
|
this.btnTryUserLogin.UseVisualStyleBackColor = true;
|
|
//
|
|
// btnGetUserList
|
|
//
|
|
this.btnGetUserList.Location = new System.Drawing.Point(590, 32);
|
|
this.btnGetUserList.Name = "btnGetUserList";
|
|
this.btnGetUserList.Size = new System.Drawing.Size(118, 49);
|
|
this.btnGetUserList.TabIndex = 18;
|
|
this.btnGetUserList.Text = "getUserList";
|
|
this.btnGetUserList.UseVisualStyleBackColor = true;
|
|
//
|
|
// btnGetOrgCode
|
|
//
|
|
this.btnGetOrgCode.Location = new System.Drawing.Point(444, 32);
|
|
this.btnGetOrgCode.Name = "btnGetOrgCode";
|
|
this.btnGetOrgCode.Size = new System.Drawing.Size(118, 49);
|
|
this.btnGetOrgCode.TabIndex = 17;
|
|
this.btnGetOrgCode.Text = "getOrgCode";
|
|
this.btnGetOrgCode.UseVisualStyleBackColor = true;
|
|
//
|
|
// btnTryAuth
|
|
//
|
|
this.btnTryAuth.Location = new System.Drawing.Point(298, 32);
|
|
this.btnTryAuth.Name = "btnTryAuth";
|
|
this.btnTryAuth.Size = new System.Drawing.Size(118, 49);
|
|
this.btnTryAuth.TabIndex = 16;
|
|
this.btnTryAuth.Text = "tryAuthorize";
|
|
this.btnTryAuth.UseVisualStyleBackColor = true;
|
|
//
|
|
// btnInit
|
|
//
|
|
this.btnInit.Location = new System.Drawing.Point(152, 32);
|
|
this.btnInit.Name = "btnInit";
|
|
this.btnInit.Size = new System.Drawing.Size(118, 49);
|
|
this.btnInit.TabIndex = 15;
|
|
this.btnInit.Text = "Init";
|
|
this.btnInit.UseVisualStyleBackColor = true;
|
|
this.btnInit.Click += new System.EventHandler(this.btnInit_Click);
|
|
//
|
|
// btnResetParam
|
|
//
|
|
this.btnResetParam.Location = new System.Drawing.Point(6, 32);
|
|
this.btnResetParam.Name = "btnResetParam";
|
|
this.btnResetParam.Size = new System.Drawing.Size(118, 49);
|
|
this.btnResetParam.TabIndex = 14;
|
|
this.btnResetParam.Text = "Reset Param";
|
|
this.btnResetParam.UseVisualStyleBackColor = true;
|
|
this.btnResetParam.Click += new System.EventHandler(this.btnResetParam_Click);
|
|
//
|
|
// tableLayoutPanel1
|
|
//
|
|
this.tableLayoutPanel1.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
| System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.tableLayoutPanel1.ColumnCount = 4;
|
|
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 20F));
|
|
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 20F));
|
|
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 30F));
|
|
this.tableLayoutPanel1.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 30F));
|
|
this.tableLayoutPanel1.Controls.Add(this.label1, 0, 0);
|
|
this.tableLayoutPanel1.Controls.Add(this.label2, 1, 0);
|
|
this.tableLayoutPanel1.Controls.Add(this.label5, 2, 0);
|
|
this.tableLayoutPanel1.Controls.Add(this.lblReqStatus, 0, 1);
|
|
this.tableLayoutPanel1.Controls.Add(this.lblRetData, 1, 1);
|
|
this.tableLayoutPanel1.Controls.Add(this.pictureBox1, 2, 1);
|
|
this.tableLayoutPanel1.Controls.Add(this.label6, 3, 0);
|
|
this.tableLayoutPanel1.Controls.Add(this.lblConsole, 3, 1);
|
|
this.tableLayoutPanel1.Location = new System.Drawing.Point(12, 225);
|
|
this.tableLayoutPanel1.Name = "tableLayoutPanel1";
|
|
this.tableLayoutPanel1.RowCount = 2;
|
|
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10.90909F));
|
|
this.tableLayoutPanel1.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 89.09091F));
|
|
this.tableLayoutPanel1.Size = new System.Drawing.Size(983, 457);
|
|
this.tableLayoutPanel1.TabIndex = 15;
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(3, 0);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(105, 17);
|
|
this.label1.TabIndex = 0;
|
|
this.label1.Text = "Request Status";
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.AutoSize = true;
|
|
this.label2.Location = new System.Drawing.Point(199, 0);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(85, 17);
|
|
this.label2.TabIndex = 1;
|
|
this.label2.Text = "Return Data";
|
|
//
|
|
// label5
|
|
//
|
|
this.label5.AutoSize = true;
|
|
this.label5.Location = new System.Drawing.Point(395, 0);
|
|
this.label5.Name = "label5";
|
|
this.label5.Size = new System.Drawing.Size(64, 17);
|
|
this.label5.TabIndex = 2;
|
|
this.label5.Text = "QR code";
|
|
//
|
|
// lblReqStatus
|
|
//
|
|
this.lblReqStatus.AutoSize = true;
|
|
this.lblReqStatus.Location = new System.Drawing.Point(3, 49);
|
|
this.lblReqStatus.Name = "lblReqStatus";
|
|
this.lblReqStatus.Size = new System.Drawing.Size(20, 17);
|
|
this.lblReqStatus.TabIndex = 3;
|
|
this.lblReqStatus.Text = "...";
|
|
//
|
|
// lblRetData
|
|
//
|
|
this.lblRetData.AutoSize = true;
|
|
this.lblRetData.Location = new System.Drawing.Point(199, 49);
|
|
this.lblRetData.Name = "lblRetData";
|
|
this.lblRetData.Size = new System.Drawing.Size(20, 17);
|
|
this.lblRetData.TabIndex = 4;
|
|
this.lblRetData.Text = "...";
|
|
//
|
|
// pictureBox1
|
|
//
|
|
this.pictureBox1.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.pictureBox1.Location = new System.Drawing.Point(395, 52);
|
|
this.pictureBox1.Name = "pictureBox1";
|
|
this.pictureBox1.Size = new System.Drawing.Size(288, 402);
|
|
this.pictureBox1.TabIndex = 5;
|
|
this.pictureBox1.TabStop = false;
|
|
//
|
|
// label6
|
|
//
|
|
this.label6.AutoSize = true;
|
|
this.label6.Location = new System.Drawing.Point(689, 0);
|
|
this.label6.Name = "label6";
|
|
this.label6.Size = new System.Drawing.Size(38, 17);
|
|
this.label6.TabIndex = 6;
|
|
this.label6.Text = "LOG";
|
|
//
|
|
// lblConsole
|
|
//
|
|
this.lblConsole.AutoSize = true;
|
|
this.lblConsole.BackColor = System.Drawing.SystemColors.Desktop;
|
|
this.lblConsole.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.lblConsole.ForeColor = System.Drawing.Color.Lime;
|
|
this.lblConsole.Location = new System.Drawing.Point(689, 49);
|
|
this.lblConsole.Name = "lblConsole";
|
|
this.lblConsole.Size = new System.Drawing.Size(291, 408);
|
|
this.lblConsole.TabIndex = 7;
|
|
this.lblConsole.Text = "...";
|
|
//
|
|
// MainForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(1007, 710);
|
|
this.Controls.Add(this.tableLayoutPanel1);
|
|
this.Controls.Add(this.groupBox2);
|
|
this.Controls.Add(this.groupBox1);
|
|
this.Controls.Add(this.statusStrip1);
|
|
this.Name = "MainForm";
|
|
this.Text = "POC MConnectSDK";
|
|
this.statusStrip1.ResumeLayout(false);
|
|
this.statusStrip1.PerformLayout();
|
|
this.groupBox1.ResumeLayout(false);
|
|
this.groupBox1.PerformLayout();
|
|
this.groupBox2.ResumeLayout(false);
|
|
this.tableLayoutPanel1.ResumeLayout(false);
|
|
this.tableLayoutPanel1.PerformLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
private System.Windows.Forms.StatusStrip statusStrip1;
|
|
private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabel1;
|
|
private System.Windows.Forms.ToolStripProgressBar toolStripProgressBar1;
|
|
private System.Windows.Forms.ToolStripStatusLabel lblClock;
|
|
private System.Windows.Forms.GroupBox groupBox1;
|
|
private System.Windows.Forms.CheckBox chkTestMode;
|
|
private System.Windows.Forms.TextBox txtMConnectID;
|
|
private System.Windows.Forms.Label label3;
|
|
private System.Windows.Forms.TextBox txtConnParam;
|
|
private System.Windows.Forms.Label label4;
|
|
private System.Windows.Forms.GroupBox groupBox2;
|
|
private System.Windows.Forms.Button btnInit;
|
|
private System.Windows.Forms.Button btnResetParam;
|
|
private System.Windows.Forms.CheckBox chkCloudOk;
|
|
private System.Windows.Forms.CheckBox chkLocalOk;
|
|
private System.Windows.Forms.CheckBox chkEnrolled;
|
|
private System.Windows.Forms.Button btnTryUserLogin;
|
|
private System.Windows.Forms.Button btnGetUserList;
|
|
private System.Windows.Forms.Button btnGetOrgCode;
|
|
private System.Windows.Forms.Button btnTryAuth;
|
|
private System.Windows.Forms.TableLayoutPanel tableLayoutPanel1;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Label label2;
|
|
private System.Windows.Forms.Label label5;
|
|
private System.Windows.Forms.Label lblReqStatus;
|
|
private System.Windows.Forms.Label lblRetData;
|
|
private System.Windows.Forms.PictureBox pictureBox1;
|
|
private System.Windows.Forms.Label label6;
|
|
private System.Windows.Forms.Label lblConsole;
|
|
}
|
|
}
|
|
|