/* ========================================================================
* 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 EditArrayDlg
{
///
/// 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.components = new System.ComponentModel.Container();
this.CancelBTN = new System.Windows.Forms.Button();
this.OkBTN = new System.Windows.Forms.Button();
this.BottomPN = new System.Windows.Forms.Panel();
this.MainPN = new System.Windows.Forms.Panel();
this.ArrayDV = new System.Windows.Forms.DataGridView();
this.ValueDGC = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.PopupMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
this.InsertMI = new System.Windows.Forms.ToolStripMenuItem();
this.DeleteMI = new System.Windows.Forms.ToolStripMenuItem();
this.BottomPN.SuspendLayout();
this.MainPN.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.ArrayDV)).BeginInit();
this.PopupMenu.SuspendLayout();
this.SuspendLayout();
//
// CancelBTN
//
this.CancelBTN.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.CancelBTN.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.CancelBTN.Location = new System.Drawing.Point(369, 4);
this.CancelBTN.Name = "CancelBTN";
this.CancelBTN.Size = new System.Drawing.Size(75, 23);
this.CancelBTN.TabIndex = 0;
this.CancelBTN.Text = "Cancel";
this.CancelBTN.UseVisualStyleBackColor = true;
//
// OkBTN
//
this.OkBTN.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.OkBTN.Location = new System.Drawing.Point(3, 4);
this.OkBTN.Name = "OkBTN";
this.OkBTN.Size = new System.Drawing.Size(75, 23);
this.OkBTN.TabIndex = 1;
this.OkBTN.Text = "OK";
this.OkBTN.UseVisualStyleBackColor = true;
this.OkBTN.Click += new System.EventHandler(this.OkBTN_Click);
//
// BottomPN
//
this.BottomPN.Controls.Add(this.OkBTN);
this.BottomPN.Controls.Add(this.CancelBTN);
this.BottomPN.Dock = System.Windows.Forms.DockStyle.Bottom;
this.BottomPN.Location = new System.Drawing.Point(0, 242);
this.BottomPN.Name = "BottomPN";
this.BottomPN.Size = new System.Drawing.Size(447, 30);
this.BottomPN.TabIndex = 0;
//
// MainPN
//
this.MainPN.Controls.Add(this.ArrayDV);
this.MainPN.Dock = System.Windows.Forms.DockStyle.Fill;
this.MainPN.Location = new System.Drawing.Point(0, 0);
this.MainPN.Name = "MainPN";
this.MainPN.Padding = new System.Windows.Forms.Padding(3);
this.MainPN.Size = new System.Drawing.Size(447, 242);
this.MainPN.TabIndex = 1;
//
// ArrayDV
//
this.ArrayDV.AllowUserToResizeRows = false;
this.ArrayDV.BackgroundColor = System.Drawing.SystemColors.Control;
this.ArrayDV.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.ArrayDV.ColumnHeadersVisible = false;
this.ArrayDV.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.ValueDGC});
this.ArrayDV.Dock = System.Windows.Forms.DockStyle.Fill;
this.ArrayDV.Location = new System.Drawing.Point(3, 3);
this.ArrayDV.Name = "ArrayDV";
this.ArrayDV.RowHeadersWidthSizeMode = System.Windows.Forms.DataGridViewRowHeadersWidthSizeMode.AutoSizeToAllHeaders;
this.ArrayDV.Size = new System.Drawing.Size(441, 236);
this.ArrayDV.TabIndex = 0;
this.ArrayDV.CellValidating += new System.Windows.Forms.DataGridViewCellValidatingEventHandler(this.ArrayDV_CellValidating);
//
// ValueDGC
//
this.ValueDGC.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.Fill;
this.ValueDGC.DataPropertyName = "Value";
this.ValueDGC.HeaderText = "Value";
this.ValueDGC.Name = "ValueDGC";
//
// PopupMenu
//
this.PopupMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.InsertMI,
this.DeleteMI});
this.PopupMenu.Name = "PopupMenu";
this.PopupMenu.Size = new System.Drawing.Size(108, 48);
//
// InsertMI
//
this.InsertMI.Name = "InsertMI";
this.InsertMI.Size = new System.Drawing.Size(107, 22);
this.InsertMI.Text = "Insert";
this.InsertMI.Click += new System.EventHandler(this.InsertMI_Click);
//
// DeleteMI
//
this.DeleteMI.Name = "DeleteMI";
this.DeleteMI.Size = new System.Drawing.Size(107, 22);
this.DeleteMI.Text = "Delete";
this.DeleteMI.Click += new System.EventHandler(this.DeleteMI_Click);
//
// EditArrayDlg
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.CancelBTN;
this.ClientSize = new System.Drawing.Size(447, 272);
this.ContextMenuStrip = this.PopupMenu;
this.Controls.Add(this.MainPN);
this.Controls.Add(this.BottomPN);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.Name = "EditArrayDlg";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "Edit Value";
this.BottomPN.ResumeLayout(false);
this.MainPN.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.ArrayDV)).EndInit();
this.PopupMenu.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button CancelBTN;
private System.Windows.Forms.Button OkBTN;
private System.Windows.Forms.Panel BottomPN;
private System.Windows.Forms.Panel MainPN;
private System.Windows.Forms.DataGridView ArrayDV;
private System.Windows.Forms.DataGridViewTextBoxColumn ValueDGC;
private System.Windows.Forms.ContextMenuStrip PopupMenu;
private System.Windows.Forms.ToolStripMenuItem DeleteMI;
private System.Windows.Forms.ToolStripMenuItem InsertMI;
}
}