Inheritance: VisualControlContainment, ISeparatorSource
        /// <summary>
        /// Initialize a new instance of the KryptonSplitContainerActionList class.
        /// </summary>
        /// <param name="owner">Designer that owns this action list instance.</param>
        public KryptonSplitContainerActionList(KryptonSplitContainerDesigner owner)
            : base(owner.Component)
        {
            _splitContainer = owner.Component as KryptonSplitContainer;

            // Assuming we were correctly passed an actual component...
            if (_splitContainer != null)
            {
                // Get access to the actual Orientation propertry
                PropertyDescriptor orientationProp = TypeDescriptor.GetProperties(_splitContainer)["Orientation"];

                // If we succeeded in getting the property
                if (orientationProp != null)
                {
                    // Decide on the next action to take given the current setting
                    if ((Orientation)orientationProp.GetValue(_splitContainer) == Orientation.Vertical)
                        _action = "Horizontal splitter orientation";
                    else
                        _action = "Vertical splitter orientation";
                }
            }

            // Cache service used to notify when a property has changed
            _service = (IComponentChangeService)GetService(typeof(IComponentChangeService));
        }
Example #2
0
        //public Log(String tabName, Delegate del)
        public Log(String tabName, int targetsNumber, Boolean preProcess, Boolean process, Boolean control)
        {
            _PreProcess = preProcess;
            _Process = process;
            _Control = control;

            _NavigatorTab = new KryptonPage();
            _CloseButton = new ButtonSpecAny();

            _NavigatorTab.Name = tabName + "Tab";
            _NavigatorTab.Text = tabName;

            _CloseButton.Type = ComponentFactory.Krypton.Toolkit.PaletteButtonSpecStyle.PendantClose;
            _NavigatorTab.ButtonSpecs.AddRange(new ComponentFactory.Krypton.Toolkit.ButtonSpecAny[] {
            _CloseButton});

            _NavigatorTab.ButtonSpecs[0].Tag = _NavigatorTab;

            _AddLogsGridViewDel = new processOnLog(AddLogsGridView);

            _SplitContainer = new KryptonSplitContainer();
            _SplitContainer.Cursor = System.Windows.Forms.Cursors.Default;
            _SplitContainer.Dock = System.Windows.Forms.DockStyle.Fill;
            _SplitContainer.FixedPanel = System.Windows.Forms.FixedPanel.Panel1;
            _SplitContainer.Location = new System.Drawing.Point(0, 0);
            _SplitContainer.Orientation = System.Windows.Forms.Orientation.Horizontal;
            _SplitContainer.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.ProfessionalSystem;
            _SplitContainer.SplitterWidth = 0;
            _SplitContainer.SplitterDistance = 49;
            _SplitContainer.Panel1.Padding = new System.Windows.Forms.Padding(200, 15, 200, 15);
            _SplitContainer.Panel1.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.ProfessionalSystem;
            _SplitContainer.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.ProfessionalSystem;
            _SplitContainer.Panel2.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.ProfessionalSystem;
            _SplitContainer.Panel2.Padding = new System.Windows.Forms.Padding(20, 10, 20, 20);

            _NavigatorTab.Controls.Add(_SplitContainer);

            _ComboBox = new KryptonComboBox();
            _ComboBox.Dock = System.Windows.Forms.DockStyle.Fill;
            _SplitContainer.Panel1.Controls.Add(_ComboBox);
            _ComboBox.SelectedIndexChanged += new EventHandler(DisplayLogsGridView);

            _LogsGridViewList = new List<LogsGrid>();
        }
        /// <summary>
        /// Initialize a new instance of the KryptonSplitContainerGlyph class.
        /// </summary>
        /// <param name="selectionService">Reference to the selection service.</param>
        /// <param name="behaviorService">Reference to the behavior service.</param>
        /// <param name="adorner">Reference to the containing adorner.</param>
        /// <param name="relatedDesigner">Reference to the containing designer.</param>
        public KryptonSplitContainerGlyph(ISelectionService selectionService,
                                          BehaviorService behaviorService,
                                          Adorner adorner,
                                          IDesigner relatedDesigner)
            : base(new KryptonSplitContainerBehavior(relatedDesigner))
        {
            Debug.Assert(selectionService != null);
            Debug.Assert(behaviorService != null);
            Debug.Assert(adorner != null);
            Debug.Assert(relatedDesigner != null);

            // Remember incoming references
            _selectionService = selectionService;
            _behaviorService = behaviorService;
            _adorner = adorner;

            // Find the related control
            _splitContainer = relatedDesigner.Component as KryptonSplitContainer;

            // We want to know whenever the selection has changed or a property has changed
            _selectionService.SelectionChanged += new EventHandler(OnSelectionChanged);
        }
 private void InitializeComponent()
 {
     this.components             = new System.ComponentModel.Container();
     this.kryptonSplitContainer1 = new ComponentFactory.Krypton.Toolkit.KryptonSplitContainer();
     this.ktvExplorer            = new ComponentFactory.Krypton.Toolkit.KryptonTreeView();
     this.ilExplorer             = new System.Windows.Forms.ImageList(this.components);
     this.colName         = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colType         = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colLastModified = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     ((System.ComponentModel.ISupportInitialize)(this.kryptonSplitContainer1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonSplitContainer1.Panel1)).BeginInit();
     this.kryptonSplitContainer1.Panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonSplitContainer1.Panel2)).BeginInit();
     this.kryptonSplitContainer1.Panel2.SuspendLayout();
     this.kryptonSplitContainer1.SuspendLayout();
     this.SuspendLayout();
     //
     // kryptonSplitContainer1
     //
     this.kryptonSplitContainer1.Cursor   = System.Windows.Forms.Cursors.Default;
     this.kryptonSplitContainer1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.kryptonSplitContainer1.Location = new System.Drawing.Point(0, 0);
     this.kryptonSplitContainer1.Name     = "kryptonSplitContainer1";
     //
     // kryptonSplitContainer1.Panel1
     //
     this.kryptonSplitContainer1.Panel1.Controls.Add(this.ktvExplorer);
     //
     // kryptonSplitContainer1.Panel2
     //
     this.kryptonSplitContainer1.Size             = new System.Drawing.Size(905, 504);
     this.kryptonSplitContainer1.SplitterDistance = 301;
     this.kryptonSplitContainer1.TabIndex         = 0;
     //
     // ktvExplorer
     //
     this.ktvExplorer.Dock            = System.Windows.Forms.DockStyle.Fill;
     this.ktvExplorer.Location        = new System.Drawing.Point(0, 0);
     this.ktvExplorer.Name            = "ktvExplorer";
     this.ktvExplorer.Size            = new System.Drawing.Size(301, 504);
     this.ktvExplorer.StateImageList  = this.ilExplorer;
     this.ktvExplorer.TabIndex        = 0;
     this.ktvExplorer.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.ktvExplorer_NodeMouseClick);
     this.ktvExplorer.MouseClick     += new System.Windows.Forms.MouseEventHandler(this.ktvExplorer_MouseClick);
     //
     // ilExplorer
     //
     this.ilExplorer.ColorDepth       = System.Windows.Forms.ColorDepth.Depth8Bit;
     this.ilExplorer.ImageSize        = new System.Drawing.Size(16, 16);
     this.ilExplorer.TransparentColor = System.Drawing.Color.Transparent;
     //
     // colName
     //
     this.colName.Text  = "Name";
     this.colName.Width = 225;
     //
     // colType
     //
     this.colType.Text  = "Type";
     this.colType.Width = 181;
     //
     // colLastModified
     //
     this.colLastModified.Text  = "Last Modified";
     this.colLastModified.Width = 212;
     //
     // KryptonExplorer
     //
     this.BackColor = System.Drawing.Color.Transparent;
     this.Controls.Add(this.kryptonSplitContainer1);
     this.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Name = "KryptonExplorer";
     this.Size = new System.Drawing.Size(905, 504);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonSplitContainer1.Panel1)).EndInit();
     this.kryptonSplitContainer1.Panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonSplitContainer1.Panel2)).EndInit();
     this.kryptonSplitContainer1.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonSplitContainer1)).EndInit();
     this.kryptonSplitContainer1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
        /// <summary>
        /// Initialize a new instance of the KryptonSplitterPanel class.
        /// </summary>
        /// <param name="container">Reference to owning container.</param>
        public KryptonSplitterPanel(KryptonSplitContainer container)
        {
            Debug.Assert(container != null);

            _container = container;
        }
 private void InitializeComponent()
 {
     this.components             = new System.ComponentModel.Container();
     this.kryptonSplitContainer1 = new ComponentFactory.Krypton.Toolkit.KryptonSplitContainer();
     this.ktvExplorer            = new ComponentFactory.Krypton.Toolkit.KryptonTreeView();
     this.ilExplorer             = new System.Windows.Forms.ImageList(this.components);
     this.klvFileList            = new ExtendedControls.ExtendedToolkit.Controls.KryptonControls.KryptonListView();
     this.colName         = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colType         = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colLastModified = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     ((System.ComponentModel.ISupportInitialize)(this.kryptonSplitContainer1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonSplitContainer1.Panel1)).BeginInit();
     this.kryptonSplitContainer1.Panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonSplitContainer1.Panel2)).BeginInit();
     this.kryptonSplitContainer1.Panel2.SuspendLayout();
     this.kryptonSplitContainer1.SuspendLayout();
     this.SuspendLayout();
     //
     // kryptonSplitContainer1
     //
     this.kryptonSplitContainer1.Cursor   = System.Windows.Forms.Cursors.Default;
     this.kryptonSplitContainer1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.kryptonSplitContainer1.Location = new System.Drawing.Point(0, 0);
     this.kryptonSplitContainer1.Name     = "kryptonSplitContainer1";
     //
     // kryptonSplitContainer1.Panel1
     //
     this.kryptonSplitContainer1.Panel1.Controls.Add(this.ktvExplorer);
     //
     // kryptonSplitContainer1.Panel2
     //
     this.kryptonSplitContainer1.Panel2.Controls.Add(this.klvFileList);
     this.kryptonSplitContainer1.Size             = new System.Drawing.Size(905, 504);
     this.kryptonSplitContainer1.SplitterDistance = 301;
     this.kryptonSplitContainer1.TabIndex         = 0;
     //
     // ktvExplorer
     //
     this.ktvExplorer.Dock            = System.Windows.Forms.DockStyle.Fill;
     this.ktvExplorer.Location        = new System.Drawing.Point(0, 0);
     this.ktvExplorer.Name            = "ktvExplorer";
     this.ktvExplorer.Size            = new System.Drawing.Size(301, 504);
     this.ktvExplorer.StateImageList  = this.ilExplorer;
     this.ktvExplorer.TabIndex        = 0;
     this.ktvExplorer.NodeMouseClick += new System.Windows.Forms.TreeNodeMouseClickEventHandler(this.ktvExplorer_NodeMouseClick);
     this.ktvExplorer.MouseClick     += new System.Windows.Forms.MouseEventHandler(this.ktvExplorer_MouseClick);
     //
     // ilExplorer
     //
     this.ilExplorer.ColorDepth       = System.Windows.Forms.ColorDepth.Depth8Bit;
     this.ilExplorer.ImageSize        = new System.Drawing.Size(16, 16);
     this.ilExplorer.TransparentColor = System.Drawing.Color.Transparent;
     //
     // klvFileList
     //
     this.klvFileList.AlternateRowColour        = System.Drawing.Color.FromArgb(((int)(((byte)(187)))), ((int)(((byte)(206)))), ((int)(((byte)(230)))));
     this.klvFileList.AlternateRowColourEnabled = true;
     this.klvFileList.AutoSizeLastColumn        = true;
     this.klvFileList.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.colName,
         this.colType,
         this.colLastModified
     });
     this.klvFileList.Dock                            = System.Windows.Forms.DockStyle.Fill;
     this.klvFileList.EnableDragDrop                  = false;
     this.klvFileList.EnableHeaderGlow                = false;
     this.klvFileList.EnableHeaderHotTrack            = false;
     this.klvFileList.EnableHeaderRendering           = true;
     this.klvFileList.EnableSelectionBorder           = false;
     this.klvFileList.EnableSorting                   = true;
     this.klvFileList.EnableVistaCheckBoxes           = true;
     this.klvFileList.ForceLeftAlign                  = false;
     this.klvFileList.FullRowSelect                   = true;
     this.klvFileList.HideSelection                   = false;
     this.klvFileList.ItemHeight                      = 0;
     this.klvFileList.LineAfter                       = -1;
     this.klvFileList.LineBefore                      = -1;
     this.klvFileList.Location                        = new System.Drawing.Point(0, 0);
     this.klvFileList.Name                            = "klvFileList";
     this.klvFileList.OwnerDraw                       = true;
     this.klvFileList.PersistentColours               = false;
     this.klvFileList.SelectEntireRowOnSubItem        = true;
     this.klvFileList.Size                            = new System.Drawing.Size(599, 504);
     this.klvFileList.SmallImageList                  = this.ilExplorer;
     this.klvFileList.StateImageList                  = this.ilExplorer;
     this.klvFileList.TabIndex                        = 1;
     this.klvFileList.UseCompatibleStateImageBehavior = false;
     this.klvFileList.UseKryptonRenderer              = true;
     this.klvFileList.UseStyledColours                = false;
     this.klvFileList.View                            = System.Windows.Forms.View.Details;
     //
     // colName
     //
     this.colName.Text  = "Name";
     this.colName.Width = 225;
     //
     // colType
     //
     this.colType.Text  = "Type";
     this.colType.Width = 181;
     //
     // colLastModified
     //
     this.colLastModified.Text  = "Last Modified";
     this.colLastModified.Width = 212;
     //
     // KryptonExplorer
     //
     this.BackColor = System.Drawing.Color.Transparent;
     this.Controls.Add(this.kryptonSplitContainer1);
     this.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Name = "KryptonExplorer";
     this.Size = new System.Drawing.Size(905, 504);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonSplitContainer1.Panel1)).EndInit();
     this.kryptonSplitContainer1.Panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonSplitContainer1.Panel2)).EndInit();
     this.kryptonSplitContainer1.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonSplitContainer1)).EndInit();
     this.kryptonSplitContainer1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Initialize a new instance of the KryptonSplitContainerBehavior class.
 /// </summary>
 /// <param name="relatedDesigner">Reference to the containing designer.</param>
 public KryptonSplitContainerBehavior(IDesigner relatedDesigner)
 {
     _splitContainer = relatedDesigner.Component as KryptonSplitContainer;
 }
        /// <summary>
        /// Initializes the designer with the specified component.
        /// </summary>
        /// <param name="component">The IComponent to associate with the designer.</param>
        public override void Initialize(IComponent component)
        {
            Debug.Assert(component != null);

            // Validate the parameter reference
            if (component == null) throw new ArgumentNullException("component");

            // Let base class do standard stuff
            base.Initialize(component);

            // The resizing handles around the control need to change depending on the
            // value of the AutoSize and AutoSizeMode properties. When in AutoSize you
            // do not get the resizing handles, otherwise you do.
            AutoResizeHandles = true;

            // Acquire service interfaces
            _designerHost = (IDesignerHost)GetService(typeof(IDesignerHost));
            _selectionService = (ISelectionService)GetService(typeof(ISelectionService));
            _behaviorService = (BehaviorService)GetService(typeof(BehaviorService));

            // Remember the actual control being designed
            _splitContainer = component as KryptonSplitContainer;

            // Create a new adorner and add our splitter glyph
            _adorner = new Adorner();
            _adorner.Glyphs.Add(new KryptonSplitContainerGlyph(_selectionService, _behaviorService, _adorner, this));
            _behaviorService.Adorners.Add(_adorner);

            // Let the two panels in the container be designable
            if (_splitContainer != null)
            {
                EnableDesignMode(_splitContainer.Panel1, "Panel1");
                EnableDesignMode(_splitContainer.Panel2, "Panel2");
            }
        }
Example #9
0
 public KryptonSplitContainerProxy(KryptonSplitContainer splitContainer)
 {
     _splitContainer = splitContainer;
 }
Example #10
0
 private void InitializeComponent()
 {
     this.kpnlButtons            = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.panel1                 = new System.Windows.Forms.Panel();
     this.kryptonPanel1          = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kryptonSplitContainer1 = new ComponentFactory.Krypton.Toolkit.KryptonSplitContainer();
     this.kpgControlProperties   = new KryptonToolkitSuiteExtendedCore.KryptonPropertyGrid();
     this.kryptonPanel2          = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kpnlInstructions       = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.klblInstructions       = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kbtnClose              = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     ((System.ComponentModel.ISupportInitialize)(this.kpnlButtons)).BeginInit();
     this.kpnlButtons.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonSplitContainer1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonSplitContainer1.Panel1)).BeginInit();
     this.kryptonSplitContainer1.Panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonSplitContainer1.Panel2)).BeginInit();
     this.kryptonSplitContainer1.Panel2.SuspendLayout();
     this.kryptonSplitContainer1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kpnlInstructions)).BeginInit();
     this.kpnlInstructions.SuspendLayout();
     this.SuspendLayout();
     //
     // kpnlButtons
     //
     this.kpnlButtons.Controls.Add(this.kbtnClose);
     this.kpnlButtons.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.kpnlButtons.Location = new System.Drawing.Point(0, 725);
     this.kpnlButtons.Name     = "kpnlButtons";
     this.kpnlButtons.Size     = new System.Drawing.Size(1196, 50);
     this.kpnlButtons.TabIndex = 0;
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.SystemColors.ControlDarkDark;
     this.panel1.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Location  = new System.Drawing.Point(0, 722);
     this.panel1.Name      = "panel1";
     this.panel1.Size      = new System.Drawing.Size(1196, 3);
     this.panel1.TabIndex  = 1;
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.kryptonSplitContainer1);
     this.kryptonPanel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.kryptonPanel1.Location = new System.Drawing.Point(0, 0);
     this.kryptonPanel1.Name     = "kryptonPanel1";
     this.kryptonPanel1.Size     = new System.Drawing.Size(1196, 722);
     this.kryptonPanel1.TabIndex = 2;
     //
     // kryptonSplitContainer1
     //
     this.kryptonSplitContainer1.Cursor   = System.Windows.Forms.Cursors.Default;
     this.kryptonSplitContainer1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.kryptonSplitContainer1.Location = new System.Drawing.Point(0, 0);
     this.kryptonSplitContainer1.Name     = "kryptonSplitContainer1";
     //
     // kryptonSplitContainer1.Panel1
     //
     this.kryptonSplitContainer1.Panel1.Controls.Add(this.kpgControlProperties);
     //
     // kryptonSplitContainer1.Panel2
     //
     this.kryptonSplitContainer1.Panel2.Controls.Add(this.kryptonPanel2);
     this.kryptonSplitContainer1.Panel2.Controls.Add(this.kpnlInstructions);
     this.kryptonSplitContainer1.Size             = new System.Drawing.Size(1196, 722);
     this.kryptonSplitContainer1.SplitterDistance = 398;
     this.kryptonSplitContainer1.TabIndex         = 1;
     //
     // kpgControlProperties
     //
     this.kpgControlProperties.BackColor         = System.Drawing.SystemColors.ActiveCaption;
     this.kpgControlProperties.CategoryForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(57)))), ((int)(((byte)(91)))));
     this.kpgControlProperties.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.kpgControlProperties.HelpBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(187)))), ((int)(((byte)(206)))), ((int)(((byte)(230)))));
     this.kpgControlProperties.HelpForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(57)))), ((int)(((byte)(91)))));
     this.kpgControlProperties.LineColor     = System.Drawing.Color.FromArgb(((int)(((byte)(179)))), ((int)(((byte)(196)))), ((int)(((byte)(216)))));
     this.kpgControlProperties.Location      = new System.Drawing.Point(0, 0);
     this.kpgControlProperties.Name          = "kpgControlProperties";
     this.kpgControlProperties.Size          = new System.Drawing.Size(398, 722);
     this.kpgControlProperties.TabIndex      = 0;
     this.kpgControlProperties.ViewBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(187)))), ((int)(((byte)(206)))), ((int)(((byte)(230)))));
     //
     // kryptonPanel2
     //
     this.kryptonPanel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.kryptonPanel2.Location = new System.Drawing.Point(0, 113);
     this.kryptonPanel2.Name     = "kryptonPanel2";
     this.kryptonPanel2.Size     = new System.Drawing.Size(793, 609);
     this.kryptonPanel2.TabIndex = 2;
     //
     // kpnlInstructions
     //
     this.kpnlInstructions.Controls.Add(this.klblInstructions);
     this.kpnlInstructions.Dock     = System.Windows.Forms.DockStyle.Top;
     this.kpnlInstructions.Location = new System.Drawing.Point(0, 0);
     this.kpnlInstructions.Name     = "kpnlInstructions";
     this.kpnlInstructions.Size     = new System.Drawing.Size(793, 113);
     this.kpnlInstructions.TabIndex = 1;
     //
     // klblInstructions
     //
     this.klblInstructions.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.klblInstructions.Location = new System.Drawing.Point(0, 0);
     this.klblInstructions.Name     = "klblInstructions";
     this.klblInstructions.Size     = new System.Drawing.Size(793, 113);
     this.klblInstructions.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.klblInstructions.TabIndex    = 0;
     this.klblInstructions.Values.Text = "kryptonLabel1";
     //
     // kbtnClose
     //
     this.kbtnClose.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.kbtnClose.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.kbtnClose.Location     = new System.Drawing.Point(1091, 11);
     this.kbtnClose.Name         = "kbtnClose";
     this.kbtnClose.Size         = new System.Drawing.Size(90, 25);
     this.kbtnClose.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnClose.TabIndex    = 0;
     this.kbtnClose.Values.Text = "&Close";
     this.kbtnClose.Click      += new System.EventHandler(this.kbtnClose_Click);
     //
     // ControlContainer
     //
     this.Controls.Add(this.kryptonPanel1);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.kpnlButtons);
     this.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Name = "ControlContainer";
     this.Size = new System.Drawing.Size(1196, 775);
     ((System.ComponentModel.ISupportInitialize)(this.kpnlButtons)).EndInit();
     this.kpnlButtons.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
     this.kryptonPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonSplitContainer1.Panel1)).EndInit();
     this.kryptonSplitContainer1.Panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonSplitContainer1.Panel2)).EndInit();
     this.kryptonSplitContainer1.Panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonSplitContainer1)).EndInit();
     this.kryptonSplitContainer1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.kpnlInstructions)).EndInit();
     this.kpnlInstructions.ResumeLayout(false);
     this.kpnlInstructions.PerformLayout();
     this.ResumeLayout(false);
 }