122 lines
5.3 KiB
C#
122 lines
5.3 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.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.AutoSize = true;
|
|
this.UseSecurityCK.Checked = true;
|
|
this.UseSecurityCK.CheckState = System.Windows.Forms.CheckState.Checked;
|
|
this.UseSecurityCK.Location = new System.Drawing.Point(335, 3);
|
|
this.UseSecurityCK.Name = "UseSecurityCK";
|
|
this.UseSecurityCK.Size = new System.Drawing.Size(86, 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(327, 21);
|
|
this.UrlCB.TabIndex = 0;
|
|
//
|
|
// ConnectServerCtrl
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
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;
|
|
}
|
|
}
|