/* ========================================================================
* 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 EventListViewCtrl
{
///
/// 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 Component 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.PopupMenu = new System.Windows.Forms.ContextMenuStrip(this.components);
this.DetailsMI = new System.Windows.Forms.ToolStripMenuItem();
this.DeleteMI = new System.Windows.Forms.ToolStripMenuItem();
this.EventsDV = new System.Windows.Forms.DataGridView();
this.RightPN = new System.Windows.Forms.Panel();
this.ImageList = new System.Windows.Forms.ImageList(this.components);
this.BrowseCTRL = new Opc.Ua.Client.Controls.BrowseNodeCtrl();
this.ClearMI = new System.Windows.Forms.ToolStripMenuItem();
this.Separator01 = new System.Windows.Forms.ToolStripSeparator();
this.PopupMenu.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.EventsDV)).BeginInit();
this.RightPN.SuspendLayout();
this.SuspendLayout();
//
// PopupMenu
//
this.PopupMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.DetailsMI,
this.DeleteMI,
this.Separator01,
this.ClearMI});
this.PopupMenu.Name = "PopupMenu";
this.PopupMenu.Size = new System.Drawing.Size(153, 98);
//
// DetailsMI
//
this.DetailsMI.Name = "DetailsMI";
this.DetailsMI.Size = new System.Drawing.Size(152, 22);
this.DetailsMI.Text = "Details...";
this.DetailsMI.Click += new System.EventHandler(this.DetailsMI_Click);
//
// DeleteMI
//
this.DeleteMI.Name = "DeleteMI";
this.DeleteMI.Size = new System.Drawing.Size(152, 22);
this.DeleteMI.Text = "Delete";
this.DeleteMI.Click += new System.EventHandler(this.DeleteMI_Click);
//
// EventsDV
//
this.EventsDV.AllowUserToAddRows = false;
this.EventsDV.AllowUserToDeleteRows = false;
this.EventsDV.AllowUserToResizeRows = false;
this.EventsDV.BackgroundColor = System.Drawing.SystemColors.Window;
this.EventsDV.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.EventsDV.ContextMenuStrip = this.PopupMenu;
this.EventsDV.Dock = System.Windows.Forms.DockStyle.Fill;
this.EventsDV.EditMode = System.Windows.Forms.DataGridViewEditMode.EditProgrammatically;
this.EventsDV.Location = new System.Drawing.Point(0, 0);
this.EventsDV.Name = "EventsDV";
this.EventsDV.RowHeadersVisible = false;
this.EventsDV.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
this.EventsDV.Size = new System.Drawing.Size(754, 346);
this.EventsDV.TabIndex = 0;
this.EventsDV.ColumnAdded += new System.Windows.Forms.DataGridViewColumnEventHandler(this.EventsDV_ColumnAdded);
//
// RightPN
//
this.RightPN.Controls.Add(this.EventsDV);
this.RightPN.Controls.Add(this.BrowseCTRL);
this.RightPN.Dock = System.Windows.Forms.DockStyle.Fill;
this.RightPN.Location = new System.Drawing.Point(0, 0);
this.RightPN.Name = "RightPN";
this.RightPN.Size = new System.Drawing.Size(754, 346);
this.RightPN.TabIndex = 3;
//
// ImageList
//
this.ImageList.ColorDepth = System.Windows.Forms.ColorDepth.Depth24Bit;
this.ImageList.ImageSize = new System.Drawing.Size(16, 16);
this.ImageList.TransparentColor = System.Drawing.Color.White;
//
// BrowseCTRL
//
this.BrowseCTRL.AttributesListCollapsed = false;
this.BrowseCTRL.Dock = System.Windows.Forms.DockStyle.Fill;
this.BrowseCTRL.Location = new System.Drawing.Point(0, 0);
this.BrowseCTRL.Name = "BrowseCTRL";
this.BrowseCTRL.Size = new System.Drawing.Size(754, 346);
this.BrowseCTRL.SplitterDistance = 387;
this.BrowseCTRL.TabIndex = 1;
this.BrowseCTRL.View = null;
//
// ClearMI
//
this.ClearMI.Name = "ClearMI";
this.ClearMI.Size = new System.Drawing.Size(152, 22);
this.ClearMI.Text = "Clear";
this.ClearMI.Click += new System.EventHandler(this.ClearMI_Click);
//
// Separator01
//
this.Separator01.Name = "Separator01";
this.Separator01.Size = new System.Drawing.Size(149, 6);
//
// EventListViewCtrl
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.RightPN);
this.Name = "EventListViewCtrl";
this.Size = new System.Drawing.Size(754, 346);
this.PopupMenu.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.EventsDV)).EndInit();
this.RightPN.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.ContextMenuStrip PopupMenu;
private System.Windows.Forms.DataGridView EventsDV;
private System.Windows.Forms.Panel RightPN;
private System.Windows.Forms.ImageList ImageList;
private System.Windows.Forms.ToolStripMenuItem DetailsMI;
private System.Windows.Forms.ToolStripMenuItem DeleteMI;
private BrowseNodeCtrl BrowseCTRL;
private System.Windows.Forms.ToolStripMenuItem ClearMI;
private System.Windows.Forms.ToolStripSeparator Separator01;
}
}