Files
mapo-iob-test/IOB-OPC-UA/Applications/ClientControls.Net4/Common/Client/ConnectServerCtrl.Designer.cs
T
2021-12-15 18:10:10 +01:00

169 lines
7.7 KiB
C#

/* ========================================================================
* Copyright (c) 2005-2020 The OPC Foundation, Inc. All rights reserved.
*
* OPC Foundation MIT License 1.00
*
* Permission is hereby granted, free of charge, to any person
* obtaining a copy of this software and associated documentation
* files (the "Software"), to deal in the Software without
* restriction, including without limitation the rights to use,
* copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following
* conditions:
*
* The above copyright notice and this permission notice shall be
* included in all copies or substantial portions of the Software.
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
* OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
* WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*
* The complete license agreement can be found here:
* http://opcfoundation.org/License/MIT/1.00/
* ======================================================================*/
namespace Opc.Ua.Client.Controls
{
partial class ConnectServerCtrl
{
/// <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 Component 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.ConnectBTN = new System.Windows.Forms.Button();
this.UseSecurityCK = new System.Windows.Forms.CheckBox();
this.UrlCB = new System.Windows.Forms.ComboBox();
this.userName = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.passwd = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// ConnectBTN
//
this.ConnectBTN.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.ConnectBTN.Location = new System.Drawing.Point(425, 0);
this.ConnectBTN.Name = "ConnectBTN";
this.ConnectBTN.Size = new System.Drawing.Size(75, 23);
this.ConnectBTN.TabIndex = 2;
this.ConnectBTN.Text = "Connect";
this.ConnectBTN.UseVisualStyleBackColor = true;
this.ConnectBTN.Click += new System.EventHandler(this.Server_ConnectMI_Click);
//
// UseSecurityCK
//
this.UseSecurityCK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.UseSecurityCK.Checked = true;
this.UseSecurityCK.CheckState = System.Windows.Forms.CheckState.Checked;
this.UseSecurityCK.Location = new System.Drawing.Point(346, 3);
this.UseSecurityCK.Name = "UseSecurityCK";
this.UseSecurityCK.Size = new System.Drawing.Size(91, 17);
this.UseSecurityCK.TabIndex = 1;
this.UseSecurityCK.Text = "Use Security";
this.UseSecurityCK.UseVisualStyleBackColor = true;
//
// UrlCB
//
this.UrlCB.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.UrlCB.FormattingEnabled = true;
this.UrlCB.Location = new System.Drawing.Point(0, 1);
this.UrlCB.Name = "UrlCB";
this.UrlCB.Size = new System.Drawing.Size(168, 21);
this.UrlCB.TabIndex = 0;
//
// userName
//
this.userName.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.userName.Location = new System.Drawing.Point(187, 2);
this.userName.Name = "userName";
this.userName.Size = new System.Drawing.Size(71, 20);
this.userName.TabIndex = 3;
//
// label1
//
this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(171, 5);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(15, 13);
this.label1.TabIndex = 4;
this.label1.Text = "U";
//
// label2
//
this.label2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(262, 5);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(14, 13);
this.label2.TabIndex = 6;
this.label2.Text = "P";
//
// passwd
//
this.passwd.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.passwd.Location = new System.Drawing.Point(278, 2);
this.passwd.Name = "passwd";
this.passwd.Size = new System.Drawing.Size(62, 20);
this.passwd.TabIndex = 5;
//
// ConnectServerCtrl
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.label2);
this.Controls.Add(this.passwd);
this.Controls.Add(this.label1);
this.Controls.Add(this.userName);
this.Controls.Add(this.ConnectBTN);
this.Controls.Add(this.UseSecurityCK);
this.Controls.Add(this.UrlCB);
this.MaximumSize = new System.Drawing.Size(2048, 23);
this.MinimumSize = new System.Drawing.Size(500, 23);
this.Name = "ConnectServerCtrl";
this.Size = new System.Drawing.Size(500, 23);
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button ConnectBTN;
private System.Windows.Forms.CheckBox UseSecurityCK;
private System.Windows.Forms.ComboBox UrlCB;
private System.Windows.Forms.TextBox userName;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.TextBox passwd;
}
}