示例#1
0
        /// <summary>Propagates the file list.</summary>
        /// <param name="directoryPath">The directory path.</param>
        /// <param name="listBox">The list box.</param>
        /// <returns>
        ///   <br />
        /// </returns>
        public static List <string> PropagateFileList(string directoryPath, KryptonListBox listBox)
        {
            Utilities utilities = new Utilities();

            try
            {
                if (utilities.GetFileList().Length <= 0)
                {
                    PropagateFileList(directoryPath);
                }

                foreach (string file in utilities.GetFileList())
                {
                    listBox.Items.Add(file);

                    utilities._fileNames.Add(file);
                }
            }
            catch (Exception e)
            {
                throw;
            }

            return(utilities._fileNames);
        }
示例#2
0
 public static void InitialiseTypefaceStyles(KryptonListBox typefaceStyleSelection)
 {
     foreach (FontStyle style in Enum.GetValues(typeof(FontStyle)))
     {
         typefaceStyleSelection.Items.Add(style.ToString());
     }
 }
示例#3
0
            private void InitializeComponent()
            {
                _listBox = new KryptonListBox();

                _listBox.ListBox.PreviewKeyDown += (obj, e) =>
                {
                    if (e.KeyCode == Keys.Enter && _listBox.SelectedIndex != -1)
                    {
                        InsertWord((String)_listBox.SelectedItem);
                        ResetListBox();
                        this.control.CurrentCell.Value = this.editControl.Text = _formerValue = this.EditedFormattedValue.ToString();

                        this.editControl.Focus();
                        this.editControl.SelectionStart = this.editControl.Text.Length;
                    }
                };
                _listBox.ListBox.MouseClick += (sender, e) =>
                {
                    if (_listBox.SelectedIndex != -1)
                    {
                        InsertWord((String)_listBox.SelectedItem);
                        ResetListBox();
                        this.control.CurrentCell.Value = this.editControl.Text = _formerValue = this.EditedFormattedValue.ToString();

                        this.editControl.Focus();
                        this.editControl.SelectionStart = this.editControl.Text.Length;
                    }
                };

                _listBox.ListBox.DrawItem += ListBox_DrawItem;
            }
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(KryptonSparkleMainWindows));
     this.kryptonPanel1         = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.klstActions           = new ComponentFactory.Krypton.Toolkit.KryptonListBox();
     this.kryptonLabelExtended1 = new ExtendedStandardControls.KryptonLabelExtended();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.kryptonLabelExtended1);
     this.kryptonPanel1.Controls.Add(this.klstActions);
     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(527, 351);
     this.kryptonPanel1.TabIndex = 0;
     //
     // klstActions
     //
     this.klstActions.Location = new System.Drawing.Point(12, 48);
     this.klstActions.Name     = "klstActions";
     this.klstActions.Size     = new System.Drawing.Size(503, 291);
     this.klstActions.TabIndex = 1;
     //
     // kryptonLabelExtended1
     //
     this.kryptonLabelExtended1.Image                      = null;
     this.kryptonLabelExtended1.Location                   = new System.Drawing.Point(12, 12);
     this.kryptonLabelExtended1.LongTextTypeface           = null;
     this.kryptonLabelExtended1.Name                       = "kryptonLabelExtended1";
     this.kryptonLabelExtended1.ShortTextTypeface          = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabelExtended1.Size                       = new System.Drawing.Size(305, 21);
     this.kryptonLabelExtended1.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabelExtended1.TabIndex                   = 1;
     this.kryptonLabelExtended1.StateCommonTextColourOne   = System.Drawing.Color.Empty;
     this.kryptonLabelExtended1.StateCommonTextColourTwo   = System.Drawing.Color.Empty;
     this.kryptonLabelExtended1.Values.Text                = "KryptonSparkle - Background Activity Monitor";
     //
     // KryptonSparkleMainWindows
     //
     this.ClientSize = new System.Drawing.Size(527, 351);
     this.Controls.Add(this.kryptonPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "KryptonSparkleMainWindows";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.Manual;
     this.Text            = "Software Update - Debug Window";
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
     this.kryptonPanel1.ResumeLayout(false);
     this.kryptonPanel1.PerformLayout();
     this.ResumeLayout(false);
 }
示例#5
0
        /// <summary>
        /// Initialize a new instance of the KryptonListBoxActionList class.
        /// </summary>
        /// <param name="owner">Designer that owns this action list instance.</param>
        public KryptonListBoxActionList(KryptonListBoxDesigner owner)
            : base(owner.Component)
        {
            // Remember the list box instance
            _listBox = owner.Component as KryptonListBox;

            // Cache service used to notify when a property has changed
            _service = (IComponentChangeService)GetService(typeof(IComponentChangeService));
        }
示例#6
0
        private void InitializeComponent()
        {
            _listBox = new KryptonListBox();


            this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.this_KeyDown);
            this.KeyUp   += new System.Windows.Forms.KeyEventHandler(this.this_KeyUp);


            _listBox.ListBox.KeyDown += (obj, e) =>
            {
                if (e.KeyCode == Keys.Enter && _listBox.SelectedIndex != -1)
                {
                    InsertWord((String)_listBox.SelectedItem);
                    ResetListBox();
                    _formerValue = this.Text;
                    UpdateListBox();
                    this.Focus();
                    this.SelectionStart = this.Text.Length;
                }
            };


            _listBox.ListBox.MouseClick += (sender, e) =>
            {
                if (_listBox.SelectedIndex != -1)
                {
                    InsertWord((String)_listBox.SelectedItem);
                    ResetListBox();
                    _formerValue = this.Text;
                    UpdateListBox();
                    this.Focus();
                    this.SelectionStart = this.Text.Length;
                }
            };

            _listBox.ListBox.DrawItem += ListBox_DrawItem;

            this.LostFocus += (sender, e) =>
            {
                if (!this._listBox.ListBox.Focused)
                {
                    ResetListBox();
                }
            };

            this.GotFocus += (sender, e) =>
            {
                if (!InitialFinish)
                {
                    _listBox.Visible = false;
                    InitialFinish    = true;
                }
            };
        }
示例#7
0
        public static void PopulateListBox(KryptonListBox listBox, string directory)
        {
            DirectoryInfo directoryInfo = new DirectoryInfo(directory);

            FileInfo[] fileInfo = directoryInfo.GetFiles();

            foreach (FileInfo item in fileInfo)
            {
                listBox.Items.Add(item);
            }
        }
示例#8
0
        private void MoveItemDown()
        {
            KryptonListBox list = this.CurrentListBox;

            KryptonListItem item  = (KryptonListItem)list.SelectedItem;
            int             index = list.SelectedIndex;

            list.Items.RemoveAt(index);
            list.Items.Insert(index + 1, item);
            list.SelectedItem = item;
            this.Changed      = true;
        }
示例#9
0
 public static void PopulateListBox(KryptonListBox listBox, List <string> fileListing)
 {
     if (fileListing.Count > 0)
     {
         foreach (string item in fileListing)
         {
             listBox.Items.Add(item);
         }
     }
     else
     {
         KryptonMessageBox.Show("", "", MessageBoxButtons.OK, MessageBoxIcon.Information);
     }
 }
示例#10
0
 /// <summary>Populates the ListBox.</summary>
 /// <param name="listBox">The list box.</param>
 /// <param name="fileListing">The file listing.</param>
 public static void PopulateListBox(KryptonListBox listBox, List <string> fileListing)
 {
     if (fileListing.Count > 0)
     {
         foreach (string item in fileListing)
         {
             listBox.Items.Add(item);
         }
     }
     else
     {
         KryptonMessageBox.Show("There are currently no items in the list/directory.", "Empty List", MessageBoxButtons.OK, MessageBoxIcon.Information);
     }
 }
示例#11
0
            public override void DetachEditingControl()
            {
                ResetListBox();
                base.DetachEditingControl();
                KryptonDataGridViewTextBoxEditingControl Tb = (KryptonDataGridViewTextBoxEditingControl)DataGridView.EditingControl;
                ComTextColumn col = (ComTextColumn)OwningColumn;


                Tb.PreviewKeyDown -= this_KeyDown;
                Tb.KeyUp          -= this_KeyUp;

                this.editControl.GotFocus -= editControl_GotFocus;
                this.Values      = null;
                this.IsMultiple  = false;
                this.control     = null;
                this.editControl = null;
                this._listBox    = null;
                this.action      = null;
                InitialFinish    = false;
            }
示例#12
0
        /// <summary>
        /// Imports the content from file.
        /// </summary>
        /// <param name="filePath">The file path.</param>
        /// <param name="listBox">The list box.</param>
        public static void ImportContentFromFile(string filePath, KryptonListBox listBox)
        {
            List <string> fileData = new List <string>();

            using (StreamReader reader = new StreamReader(filePath))
            {
                string line;

                while ((line = reader.ReadLine()) != null)
                {
                    fileData.Add(line);
                }
            }

            if (fileData.Count != 0)
            {
                foreach (string item in fileData)
                {
                    listBox.Items.Add(item);
                }
            }
        }
示例#13
0
        void ClearAllControls(IEnumerable controls)
        {
            foreach (Control c in controls)
            {
                KryptonComboBox combo = c as KryptonComboBox;
                if (combo != null)
                {
                    combo.SelectedIndex = -1;
                    continue;
                }

                KryptonTextBox text = c as KryptonTextBox;
                if (text != null)
                {
                    text.Text = string.Empty;
                    continue;
                }

                KryptonCheckBox check = c as KryptonCheckBox;
                if (check != null)
                {
                    check.Checked = false;
                }

                KryptonListBox list = c as KryptonListBox;
                if (list != null)
                {
                    list.Items.Clear();
                }

                TableLayoutPanel table = c as TableLayoutPanel;
                if (table != null)
                {
                    ClearAllControls(table.Controls);
                }
            }
        }
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CustomPaletteColours));
     this.kryptonPanel1                    = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kbtnOk                           = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.ktbHexadecimal                   = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this.kryptonLabel1                    = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kbtnUtiliseAsBaseColour          = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kbtnSaveColour                   = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.panel1                           = new System.Windows.Forms.Panel();
     this.kryptonPanel2                    = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.klstCustomColourSelector         = new ComponentFactory.Krypton.Toolkit.KryptonListBox();
     this.pbxColourPreview                 = new System.Windows.Forms.PictureBox();
     this.kcmbNormalTextSystemColours      = new ComponentFactory.Krypton.Toolkit.KryptonComboBox();
     this.kryptonLabel22                   = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kcmbNormalTextColour             = new ComponentFactory.Krypton.Toolkit.KryptonComboBox();
     this.kryptonLabel21                   = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kbtnGenerateNormalTextBlueValue  = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.knumBlueChannelValue             = new ComponentFactory.Krypton.Toolkit.KryptonNumericUpDown();
     this.kryptonLabel4                    = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kbtnGenerateNormalTextGreenValue = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.knumGreenChannelValue            = new ComponentFactory.Krypton.Toolkit.KryptonNumericUpDown();
     this.kryptonLabel3                    = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kbtnGenerateNormalTextRedValue   = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.knumRedChannelValue              = new ComponentFactory.Krypton.Toolkit.KryptonNumericUpDown();
     this.kryptonLabel2                    = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).BeginInit();
     this.kryptonPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pbxColourPreview)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kcmbNormalTextSystemColours)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kcmbNormalTextColour)).BeginInit();
     this.SuspendLayout();
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.kbtnUtiliseAsBaseColour);
     this.kryptonPanel1.Controls.Add(this.kbtnSaveColour);
     this.kryptonPanel1.Controls.Add(this.kbtnOk);
     this.kryptonPanel1.Controls.Add(this.ktbHexadecimal);
     this.kryptonPanel1.Controls.Add(this.kryptonLabel1);
     this.kryptonPanel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.kryptonPanel1.Location = new System.Drawing.Point(0, 341);
     this.kryptonPanel1.Name     = "kryptonPanel1";
     this.kryptonPanel1.Size     = new System.Drawing.Size(1027, 50);
     this.kryptonPanel1.TabIndex = 1;
     //
     // kbtnOk
     //
     this.kbtnOk.AutoSize     = true;
     this.kbtnOk.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.kbtnOk.Location     = new System.Drawing.Point(983, 8);
     this.kbtnOk.Name         = "kbtnOk";
     this.kbtnOk.Size         = new System.Drawing.Size(32, 30);
     this.kbtnOk.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnOk.TabIndex    = 101;
     this.kbtnOk.Values.Text = "&Ok";
     //
     // ktbHexadecimal
     //
     this.ktbHexadecimal.Hint      = "#000000";
     this.ktbHexadecimal.Location  = new System.Drawing.Point(534, 9);
     this.ktbHexadecimal.MaxLength = 7;
     this.ktbHexadecimal.Name      = "ktbHexadecimal";
     this.ktbHexadecimal.Size      = new System.Drawing.Size(176, 29);
     this.ktbHexadecimal.StateCommon.Content.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ktbHexadecimal.StateCommon.Content.TextH = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Inherit;
     this.ktbHexadecimal.TabIndex  = 85;
     this.ktbHexadecimal.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // kryptonLabel1
     //
     this.kryptonLabel1.Location = new System.Drawing.Point(356, 11);
     this.kryptonLabel1.Name     = "kryptonLabel1";
     this.kryptonLabel1.Size     = new System.Drawing.Size(172, 26);
     this.kryptonLabel1.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel1.TabIndex    = 84;
     this.kryptonLabel1.Values.Text = "Hexadecimal Colour:";
     //
     // kbtnUtiliseAsBaseColour
     //
     this.kbtnUtiliseAsBaseColour.AutoSize     = true;
     this.kbtnUtiliseAsBaseColour.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.kbtnUtiliseAsBaseColour.Location     = new System.Drawing.Point(183, 8);
     this.kbtnUtiliseAsBaseColour.Name         = "kbtnUtiliseAsBaseColour";
     this.kbtnUtiliseAsBaseColour.Size         = new System.Drawing.Size(167, 30);
     this.kbtnUtiliseAsBaseColour.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnUtiliseAsBaseColour.TabIndex    = 103;
     this.kbtnUtiliseAsBaseColour.Values.Text = "Utilise as Base &Colour";
     //
     // kbtnSaveColour
     //
     this.kbtnSaveColour.AutoSize     = true;
     this.kbtnSaveColour.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.kbtnSaveColour.Enabled      = false;
     this.kbtnSaveColour.Location     = new System.Drawing.Point(12, 8);
     this.kbtnSaveColour.Name         = "kbtnSaveColour";
     this.kbtnSaveColour.Size         = new System.Drawing.Size(165, 30);
     this.kbtnSaveColour.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnSaveColour.TabIndex    = 102;
     this.kbtnSaveColour.Values.Text = "Save &Selected Colour";
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.SystemColors.ControlDarkDark;
     this.panel1.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Location  = new System.Drawing.Point(0, 338);
     this.panel1.Name      = "panel1";
     this.panel1.Size      = new System.Drawing.Size(1027, 3);
     this.panel1.TabIndex  = 3;
     //
     // kryptonPanel2
     //
     this.kryptonPanel2.Controls.Add(this.klstCustomColourSelector);
     this.kryptonPanel2.Controls.Add(this.pbxColourPreview);
     this.kryptonPanel2.Controls.Add(this.kcmbNormalTextSystemColours);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel22);
     this.kryptonPanel2.Controls.Add(this.kcmbNormalTextColour);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel21);
     this.kryptonPanel2.Controls.Add(this.kbtnGenerateNormalTextBlueValue);
     this.kryptonPanel2.Controls.Add(this.knumBlueChannelValue);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel4);
     this.kryptonPanel2.Controls.Add(this.kbtnGenerateNormalTextGreenValue);
     this.kryptonPanel2.Controls.Add(this.knumGreenChannelValue);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel3);
     this.kryptonPanel2.Controls.Add(this.kbtnGenerateNormalTextRedValue);
     this.kryptonPanel2.Controls.Add(this.knumRedChannelValue);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel2);
     this.kryptonPanel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.kryptonPanel2.Location = new System.Drawing.Point(0, 0);
     this.kryptonPanel2.Name     = "kryptonPanel2";
     this.kryptonPanel2.Size     = new System.Drawing.Size(1027, 338);
     this.kryptonPanel2.TabIndex = 4;
     //
     // klstCustomColourSelector
     //
     this.klstCustomColourSelector.HorizontalScrollbar = true;
     this.klstCustomColourSelector.Location            = new System.Drawing.Point(12, 12);
     this.klstCustomColourSelector.Name   = "klstCustomColourSelector";
     this.klstCustomColourSelector.Size   = new System.Drawing.Size(335, 257);
     this.klstCustomColourSelector.Sorted = true;
     this.klstCustomColourSelector.StateCommon.Item.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.klstCustomColourSelector.TabIndex = 156;
     //
     // pbxColourPreview
     //
     this.pbxColourPreview.BackColor   = System.Drawing.Color.Transparent;
     this.pbxColourPreview.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
     this.pbxColourPreview.Location    = new System.Drawing.Point(353, 12);
     this.pbxColourPreview.Name        = "pbxColourPreview";
     this.pbxColourPreview.Size        = new System.Drawing.Size(650, 180);
     this.pbxColourPreview.TabIndex    = 155;
     this.pbxColourPreview.TabStop     = false;
     //
     // kcmbNormalTextSystemColours
     //
     this.kcmbNormalTextSystemColours.DropDownStyle  = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.kcmbNormalTextSystemColours.DropDownWidth  = 173;
     this.kcmbNormalTextSystemColours.IntegralHeight = false;
     this.kcmbNormalTextSystemColours.Location       = new System.Drawing.Point(830, 215);
     this.kcmbNormalTextSystemColours.Name           = "kcmbNormalTextSystemColours";
     this.kcmbNormalTextSystemColours.Size           = new System.Drawing.Size(173, 27);
     this.kcmbNormalTextSystemColours.StateCommon.ComboBox.Content.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kcmbNormalTextSystemColours.StateCommon.ComboBox.Content.TextH = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Near;
     this.kcmbNormalTextSystemColours.TabIndex = 154;
     //
     // kryptonLabel22
     //
     this.kryptonLabel22.Location = new System.Drawing.Point(688, 216);
     this.kryptonLabel22.Name     = "kryptonLabel22";
     this.kryptonLabel22.Size     = new System.Drawing.Size(136, 26);
     this.kryptonLabel22.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel22.TabIndex    = 153;
     this.kryptonLabel22.Values.Text = "System Colours:";
     //
     // kcmbNormalTextColour
     //
     this.kcmbNormalTextColour.DropDownStyle  = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.kcmbNormalTextColour.DropDownWidth  = 173;
     this.kcmbNormalTextColour.IntegralHeight = false;
     this.kcmbNormalTextColour.Location       = new System.Drawing.Point(509, 215);
     this.kcmbNormalTextColour.Name           = "kcmbNormalTextColour";
     this.kcmbNormalTextColour.Size           = new System.Drawing.Size(173, 27);
     this.kcmbNormalTextColour.StateCommon.ComboBox.Content.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kcmbNormalTextColour.StateCommon.ComboBox.Content.TextH = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Near;
     this.kcmbNormalTextColour.TabIndex = 152;
     //
     // kryptonLabel21
     //
     this.kryptonLabel21.Location = new System.Drawing.Point(353, 216);
     this.kryptonLabel21.Name     = "kryptonLabel21";
     this.kryptonLabel21.Size     = new System.Drawing.Size(150, 26);
     this.kryptonLabel21.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel21.TabIndex    = 151;
     this.kryptonLabel21.Values.Text = "Standard Colours:";
     //
     // kbtnGenerateNormalTextBlueValue
     //
     this.kbtnGenerateNormalTextBlueValue.AutoSize     = true;
     this.kbtnGenerateNormalTextBlueValue.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.kbtnGenerateNormalTextBlueValue.Location     = new System.Drawing.Point(843, 282);
     this.kbtnGenerateNormalTextBlueValue.Name         = "kbtnGenerateNormalTextBlueValue";
     this.kbtnGenerateNormalTextBlueValue.Size         = new System.Drawing.Size(114, 30);
     this.kbtnGenerateNormalTextBlueValue.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnGenerateNormalTextBlueValue.TabIndex    = 150;
     this.kbtnGenerateNormalTextBlueValue.Values.Text = "Generate &Blue";
     //
     // knumBlueChannelValue
     //
     this.knumBlueChannelValue.Location = new System.Drawing.Point(717, 282);
     this.knumBlueChannelValue.Maximum  = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.knumBlueChannelValue.Name = "knumBlueChannelValue";
     this.knumBlueChannelValue.Size = new System.Drawing.Size(120, 28);
     this.knumBlueChannelValue.StateCommon.Back.Color1    = System.Drawing.Color.Blue;
     this.knumBlueChannelValue.StateCommon.Content.Color1 = System.Drawing.Color.White;
     this.knumBlueChannelValue.StateCommon.Content.Font   = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.knumBlueChannelValue.StateCommon.Content.TextH  = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Inherit;
     this.knumBlueChannelValue.TabIndex = 149;
     //
     // kryptonLabel4
     //
     this.kryptonLabel4.Location = new System.Drawing.Point(649, 284);
     this.kryptonLabel4.Name     = "kryptonLabel4";
     this.kryptonLabel4.Size     = new System.Drawing.Size(50, 26);
     this.kryptonLabel4.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel4.TabIndex    = 148;
     this.kryptonLabel4.Values.Text = "Blue:";
     //
     // kbtnGenerateNormalTextGreenValue
     //
     this.kbtnGenerateNormalTextGreenValue.AutoSize     = true;
     this.kbtnGenerateNormalTextGreenValue.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.kbtnGenerateNormalTextGreenValue.Location     = new System.Drawing.Point(517, 284);
     this.kbtnGenerateNormalTextGreenValue.Name         = "kbtnGenerateNormalTextGreenValue";
     this.kbtnGenerateNormalTextGreenValue.Size         = new System.Drawing.Size(126, 30);
     this.kbtnGenerateNormalTextGreenValue.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnGenerateNormalTextGreenValue.TabIndex    = 147;
     this.kbtnGenerateNormalTextGreenValue.Values.Text = "Generate &Green";
     //
     // knumGreenChannelValue
     //
     this.knumGreenChannelValue.Location = new System.Drawing.Point(391, 284);
     this.knumGreenChannelValue.Maximum  = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.knumGreenChannelValue.Name = "knumGreenChannelValue";
     this.knumGreenChannelValue.Size = new System.Drawing.Size(120, 28);
     this.knumGreenChannelValue.StateCommon.Back.Color1   = System.Drawing.Color.Lime;
     this.knumGreenChannelValue.StateCommon.Content.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.knumGreenChannelValue.StateCommon.Content.TextH = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Inherit;
     this.knumGreenChannelValue.TabIndex = 146;
     //
     // kryptonLabel3
     //
     this.kryptonLabel3.Location = new System.Drawing.Point(323, 284);
     this.kryptonLabel3.Name     = "kryptonLabel3";
     this.kryptonLabel3.Size     = new System.Drawing.Size(62, 26);
     this.kryptonLabel3.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel3.TabIndex    = 145;
     this.kryptonLabel3.Values.Text = "Green:";
     //
     // kbtnGenerateNormalTextRedValue
     //
     this.kbtnGenerateNormalTextRedValue.AutoSize     = true;
     this.kbtnGenerateNormalTextRedValue.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.kbtnGenerateNormalTextRedValue.Location     = new System.Drawing.Point(206, 284);
     this.kbtnGenerateNormalTextRedValue.Name         = "kbtnGenerateNormalTextRedValue";
     this.kbtnGenerateNormalTextRedValue.Size         = new System.Drawing.Size(111, 30);
     this.kbtnGenerateNormalTextRedValue.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnGenerateNormalTextRedValue.TabIndex    = 144;
     this.kbtnGenerateNormalTextRedValue.Values.Text = "Generate &Red";
     //
     // knumRedChannelValue
     //
     this.knumRedChannelValue.Location = new System.Drawing.Point(80, 283);
     this.knumRedChannelValue.Maximum  = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.knumRedChannelValue.Name = "knumRedChannelValue";
     this.knumRedChannelValue.Size = new System.Drawing.Size(120, 28);
     this.knumRedChannelValue.StateCommon.Back.Color1    = System.Drawing.Color.Red;
     this.knumRedChannelValue.StateCommon.Content.Color1 = System.Drawing.Color.White;
     this.knumRedChannelValue.StateCommon.Content.Font   = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.knumRedChannelValue.StateCommon.Content.TextH  = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Inherit;
     this.knumRedChannelValue.TabIndex = 143;
     //
     // kryptonLabel2
     //
     this.kryptonLabel2.Location = new System.Drawing.Point(12, 284);
     this.kryptonLabel2.Name     = "kryptonLabel2";
     this.kryptonLabel2.Size     = new System.Drawing.Size(46, 26);
     this.kryptonLabel2.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel2.TabIndex    = 142;
     this.kryptonLabel2.Values.Text = "Red:";
     //
     // CustomPaletteColours
     //
     this.ClientSize = new System.Drawing.Size(1027, 391);
     this.Controls.Add(this.kryptonPanel2);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.kryptonPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "CustomPaletteColours";
     this.ShowInTaskbar   = false;
     this.Text            = "Define Custom Palette Colours";
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
     this.kryptonPanel1.ResumeLayout(false);
     this.kryptonPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).EndInit();
     this.kryptonPanel2.ResumeLayout(false);
     this.kryptonPanel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pbxColourPreview)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.kcmbNormalTextSystemColours)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.kcmbNormalTextColour)).EndInit();
     this.ResumeLayout(false);
 }
 private void InitializeComponent()
 {
     this.kryptonPanel1      = new Krypton.Toolkit.KryptonPanel();
     this.kbtnCancel         = new Krypton.Toolkit.KryptonButton();
     this.kbtnOk             = new Krypton.Toolkit.KryptonButton();
     this.kgbSelected        = new Krypton.Toolkit.KryptonGroupBox();
     this.klbSelected        = new Krypton.Toolkit.KryptonListBox();
     this.kbtnAddAll         = new Krypton.Toolkit.KryptonButton();
     this.kbtnRemoveSelected = new Krypton.Toolkit.KryptonButton();
     this.kbtnRemoveAll      = new Krypton.Toolkit.KryptonButton();
     this.kbtnAddSelected    = new Krypton.Toolkit.KryptonButton();
     this.kgbAvailable       = new Krypton.Toolkit.KryptonGroupBox();
     this.klblAvailable      = new Krypton.Toolkit.KryptonListBox();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kgbSelected)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kgbSelected.Panel)).BeginInit();
     this.kgbSelected.Panel.SuspendLayout();
     this.kgbSelected.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kgbAvailable)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kgbAvailable.Panel)).BeginInit();
     this.kgbAvailable.Panel.SuspendLayout();
     this.kgbAvailable.SuspendLayout();
     this.SuspendLayout();
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.kbtnCancel);
     this.kryptonPanel1.Controls.Add(this.kbtnOk);
     this.kryptonPanel1.Controls.Add(this.kgbSelected);
     this.kryptonPanel1.Controls.Add(this.kbtnAddAll);
     this.kryptonPanel1.Controls.Add(this.kbtnRemoveSelected);
     this.kryptonPanel1.Controls.Add(this.kbtnRemoveAll);
     this.kryptonPanel1.Controls.Add(this.kbtnAddSelected);
     this.kryptonPanel1.Controls.Add(this.kgbAvailable);
     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(493, 236);
     this.kryptonPanel1.TabIndex = 2;
     //
     // kbtnCancel
     //
     this.kbtnCancel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.kbtnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.kbtnCancel.Location     = new System.Drawing.Point(396, 81);
     this.kbtnCancel.Name         = "kbtnCancel";
     this.kbtnCancel.Size         = new System.Drawing.Size(85, 25);
     this.kbtnCancel.StateCommon.Content.LongText.Font  = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnCancel.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnCancel.TabIndex    = 7;
     this.kbtnCancel.Values.Text = "&Cancel";
     //
     // kbtnOk
     //
     this.kbtnOk.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.kbtnOk.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.kbtnOk.Location     = new System.Drawing.Point(396, 33);
     this.kbtnOk.Name         = "kbtnOk";
     this.kbtnOk.Size         = new System.Drawing.Size(85, 25);
     this.kbtnOk.StateCommon.Content.LongText.Font  = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnOk.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnOk.TabIndex    = 6;
     this.kbtnOk.Values.Text = "O&k";
     //
     // kgbSelected
     //
     this.kgbSelected.Location = new System.Drawing.Point(226, 12);
     this.kgbSelected.Name     = "kgbSelected";
     //
     // kgbSelected.Panel
     //
     this.kgbSelected.Panel.Controls.Add(this.klbSelected);
     this.kgbSelected.Size = new System.Drawing.Size(164, 212);
     this.kgbSelected.StateCommon.Content.LongText.Font  = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kgbSelected.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kgbSelected.TabIndex       = 2;
     this.kgbSelected.Values.Heading = "Selected";
     //
     // klbSelected
     //
     this.klbSelected.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.klbSelected.Location = new System.Drawing.Point(0, 0);
     this.klbSelected.Name     = "klbSelected";
     this.klbSelected.Size     = new System.Drawing.Size(160, 189);
     this.klbSelected.StateCommon.Item.Content.LongText.Font  = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.klbSelected.StateCommon.Item.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.klbSelected.TabIndex              = 1;
     this.klbSelected.SelectedIndexChanged += new System.EventHandler(this.KlbSelected_SelectedIndexChanged);
     //
     // kbtnAddAll
     //
     this.kbtnAddAll.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.kbtnAddAll.Location     = new System.Drawing.Point(182, 90);
     this.kbtnAddAll.Name         = "kbtnAddAll";
     this.kbtnAddAll.Size         = new System.Drawing.Size(38, 25);
     this.kbtnAddAll.StateCommon.Content.LongText.Font  = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnAddAll.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnAddAll.TabIndex    = 5;
     this.kbtnAddAll.Values.Text = ">>";
     this.kbtnAddAll.Click      += new System.EventHandler(this.KbtnAddAll_Click);
     //
     // kbtnRemoveSelected
     //
     this.kbtnRemoveSelected.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.kbtnRemoveSelected.Enabled      = false;
     this.kbtnRemoveSelected.Location     = new System.Drawing.Point(182, 121);
     this.kbtnRemoveSelected.Name         = "kbtnRemoveSelected";
     this.kbtnRemoveSelected.Size         = new System.Drawing.Size(38, 25);
     this.kbtnRemoveSelected.StateCommon.Content.LongText.Font  = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnRemoveSelected.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnRemoveSelected.TabIndex    = 4;
     this.kbtnRemoveSelected.Values.Text = "<";
     this.kbtnRemoveSelected.Click      += new System.EventHandler(this.KbtnRemoveSelected_Click);
     //
     // kbtnRemoveAll
     //
     this.kbtnRemoveAll.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.kbtnRemoveAll.Location     = new System.Drawing.Point(182, 152);
     this.kbtnRemoveAll.Name         = "kbtnRemoveAll";
     this.kbtnRemoveAll.Size         = new System.Drawing.Size(38, 25);
     this.kbtnRemoveAll.StateCommon.Content.LongText.Font  = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnRemoveAll.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnRemoveAll.TabIndex    = 3;
     this.kbtnRemoveAll.Values.Text = "<<";
     this.kbtnRemoveAll.Click      += new System.EventHandler(this.KbtnRemoveAll_Click);
     //
     // kbtnAddSelected
     //
     this.kbtnAddSelected.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.kbtnAddSelected.Enabled      = false;
     this.kbtnAddSelected.Location     = new System.Drawing.Point(182, 59);
     this.kbtnAddSelected.Name         = "kbtnAddSelected";
     this.kbtnAddSelected.Size         = new System.Drawing.Size(38, 25);
     this.kbtnAddSelected.StateCommon.Content.LongText.Font  = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnAddSelected.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnAddSelected.TabIndex    = 2;
     this.kbtnAddSelected.Values.Text = ">";
     this.kbtnAddSelected.Click      += new System.EventHandler(this.KbtnAddSelected_Click);
     //
     // kgbAvailable
     //
     this.kgbAvailable.Location = new System.Drawing.Point(12, 12);
     this.kgbAvailable.Name     = "kgbAvailable";
     //
     // kgbAvailable.Panel
     //
     this.kgbAvailable.Panel.Controls.Add(this.klblAvailable);
     this.kgbAvailable.Size = new System.Drawing.Size(164, 212);
     this.kgbAvailable.StateCommon.Content.LongText.Font  = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kgbAvailable.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kgbAvailable.TabIndex       = 1;
     this.kgbAvailable.Values.Heading = "Available";
     //
     // klblAvailable
     //
     this.klblAvailable.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.klblAvailable.Location = new System.Drawing.Point(0, 0);
     this.klblAvailable.Name     = "klblAvailable";
     this.klblAvailable.Size     = new System.Drawing.Size(160, 189);
     this.klblAvailable.StateCommon.Item.Content.LongText.Font  = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.klblAvailable.StateCommon.Item.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.klblAvailable.TabIndex              = 1;
     this.klblAvailable.SelectedIndexChanged += new System.EventHandler(this.KlblAvailable_SelectedIndexChanged);
     //
     // MenuStripExistingComponentChooser
     //
     this.ClientSize = new System.Drawing.Size(493, 236);
     this.Controls.Add(this.kryptonPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "MenuStripExistingComponentChooser";
     this.ShowIcon        = false;
     this.ShowInTaskbar   = false;
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
     this.kryptonPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kgbSelected.Panel)).EndInit();
     this.kgbSelected.Panel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kgbSelected)).EndInit();
     this.kgbSelected.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kgbAvailable.Panel)).EndInit();
     this.kgbAvailable.Panel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kgbAvailable)).EndInit();
     this.kgbAvailable.ResumeLayout(false);
     this.ResumeLayout(false);
 }
示例#16
0
 private void InitializeComponent()
 {
     ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues popupPositionValues3 = new ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues();
     ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues popupPositionValues2 = new ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues();
     ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues popupPositionValues1 = new ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues();
     this.panel1        = new System.Windows.Forms.Panel();
     this.kryptonPanel1 = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kryptonPanel2 = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kbtnCancel    = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kbtnExport    = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.klbReportBox  = new ComponentFactory.Krypton.Toolkit.KryptonListBox();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).BeginInit();
     this.kryptonPanel2.SuspendLayout();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.SystemColors.ControlDarkDark;
     this.panel1.Dock      = System.Windows.Forms.DockStyle.Fill;
     this.panel1.Location  = new System.Drawing.Point(0, 0);
     this.panel1.Name      = "panel1";
     this.panel1.Size      = new System.Drawing.Size(974, 796);
     this.panel1.TabIndex  = 0;
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.klbReportBox);
     this.kryptonPanel1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.kryptonPanel1.Location = new System.Drawing.Point(0, 0);
     this.kryptonPanel1.Name     = "kryptonPanel1";
     this.kryptonPanel1.Size     = new System.Drawing.Size(974, 743);
     this.kryptonPanel1.TabIndex = 1;
     //
     // kryptonPanel2
     //
     this.kryptonPanel2.Controls.Add(this.kbtnExport);
     this.kryptonPanel2.Controls.Add(this.kbtnCancel);
     this.kryptonPanel2.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.kryptonPanel2.Location = new System.Drawing.Point(0, 745);
     this.kryptonPanel2.Name     = "kryptonPanel2";
     this.kryptonPanel2.Size     = new System.Drawing.Size(974, 51);
     this.kryptonPanel2.TabIndex = 2;
     //
     // kbtnCancel
     //
     this.kbtnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.kbtnCancel.Location     = new System.Drawing.Point(845, 10);
     this.kbtnCancel.Name         = "kbtnCancel";
     this.kbtnCancel.Size         = new System.Drawing.Size(117, 29);
     this.kbtnCancel.StateCommon.Content.LongText.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnCancel.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnCancel.TabIndex = 12;
     popupPositionValues3.PlacementRectangle       = new System.Drawing.Rectangle(0, 0, 0, 0);
     popupPositionValues3.PlacementTarget          = null;
     this.kbtnCancel.ToolTipValues.ToolTipPosition = popupPositionValues3;
     this.kbtnCancel.Values.Text = "&Cancel";
     this.kbtnCancel.Click      += new System.EventHandler(this.kbtnCancel_Click);
     //
     // kbtnExport
     //
     this.kbtnExport.Location = new System.Drawing.Point(12, 10);
     this.kbtnExport.Name     = "kbtnExport";
     this.kbtnExport.Size     = new System.Drawing.Size(117, 29);
     this.kbtnExport.StateCommon.Content.LongText.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnExport.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnExport.TabIndex = 14;
     popupPositionValues2.PlacementRectangle       = new System.Drawing.Rectangle(0, 0, 0, 0);
     popupPositionValues2.PlacementTarget          = null;
     this.kbtnExport.ToolTipValues.ToolTipPosition = popupPositionValues2;
     this.kbtnExport.Values.Text = "&Export";
     this.kbtnExport.Click      += new System.EventHandler(this.kbtnExport_Click);
     //
     // klbReportBox
     //
     this.klbReportBox.Location = new System.Drawing.Point(12, 12);
     this.klbReportBox.Name     = "klbReportBox";
     this.klbReportBox.Size     = new System.Drawing.Size(950, 716);
     this.klbReportBox.StateCommon.Item.Content.LongText.Font  = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.klbReportBox.StateCommon.Item.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.klbReportBox.TabIndex = 0;
     popupPositionValues1.PlacementRectangle         = new System.Drawing.Rectangle(0, 0, 0, 0);
     popupPositionValues1.PlacementTarget            = null;
     this.klbReportBox.ToolTipValues.ToolTipPosition = popupPositionValues1;
     //
     // ReportViewer
     //
     this.ClientSize = new System.Drawing.Size(974, 796);
     this.Controls.Add(this.kryptonPanel2);
     this.Controls.Add(this.kryptonPanel1);
     this.Controls.Add(this.panel1);
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "ReportViewer";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Preview Scan Results for [{0}]";
     this.FormClosing  += new System.Windows.Forms.FormClosingEventHandler(this.ReportViewer_FormClosing);
     this.Load         += new System.EventHandler(this.ReportViewer_Load);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
     this.kryptonPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).EndInit();
     this.kryptonPanel2.ResumeLayout(false);
     this.ResumeLayout(false);
 }
示例#17
0
 // TODO: Finish method
 public static void PropagateRGBColourValues(KryptonListBox klblRGBValues, bool @checked)
 {
     throw new NotImplementedException();
 }
示例#18
0
 private void InitializeComponent()
 {
     this.components       = new System.ComponentModel.Container();
     this.kryptonPanel1    = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kbtnOk           = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kbtnCancel       = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kryptonPanel2    = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kbtnConvertToRGB = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.klbColours       = new ComponentFactory.Krypton.Toolkit.KryptonListBox();
     this.ktxtHexValue     = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this.kryptonLabel5    = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.panel1           = new System.Windows.Forms.Panel();
     this.kbtnExport       = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kbtnLoadFromFile = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.ctxColourList    = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.removeSelectedColourToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).BeginInit();
     this.kryptonPanel2.SuspendLayout();
     this.ctxColourList.SuspendLayout();
     this.SuspendLayout();
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.kbtnLoadFromFile);
     this.kryptonPanel1.Controls.Add(this.kbtnExport);
     this.kryptonPanel1.Controls.Add(this.kbtnOk);
     this.kryptonPanel1.Controls.Add(this.kbtnCancel);
     this.kryptonPanel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.kryptonPanel1.Location = new System.Drawing.Point(0, 622);
     this.kryptonPanel1.Name     = "kryptonPanel1";
     this.kryptonPanel1.Size     = new System.Drawing.Size(816, 51);
     this.kryptonPanel1.TabIndex = 0;
     //
     // kbtnOk
     //
     this.kbtnOk.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.kbtnOk.AutoSize = true;
     this.kbtnOk.Location = new System.Drawing.Point(618, 9);
     this.kbtnOk.Name     = "kbtnOk";
     this.kbtnOk.Size     = new System.Drawing.Size(90, 30);
     this.kbtnOk.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnOk.TabIndex    = 6;
     this.kbtnOk.Values.Text = "&Ok";
     this.kbtnOk.Click      += new System.EventHandler(this.kbtnOk_Click);
     //
     // kbtnCancel
     //
     this.kbtnCancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.kbtnCancel.AutoSize     = true;
     this.kbtnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.kbtnCancel.Location     = new System.Drawing.Point(714, 9);
     this.kbtnCancel.Name         = "kbtnCancel";
     this.kbtnCancel.Size         = new System.Drawing.Size(90, 30);
     this.kbtnCancel.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnCancel.TabIndex    = 7;
     this.kbtnCancel.Values.Text = "Ca&ncel";
     this.kbtnCancel.Click      += new System.EventHandler(this.kbtnCancel_Click);
     //
     // kryptonPanel2
     //
     this.kryptonPanel2.Controls.Add(this.kbtnConvertToRGB);
     this.kryptonPanel2.Controls.Add(this.klbColours);
     this.kryptonPanel2.Controls.Add(this.ktxtHexValue);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel5);
     this.kryptonPanel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.kryptonPanel2.Location = new System.Drawing.Point(0, 0);
     this.kryptonPanel2.Name     = "kryptonPanel2";
     this.kryptonPanel2.Size     = new System.Drawing.Size(816, 622);
     this.kryptonPanel2.TabIndex = 1;
     //
     // kbtnConvertToRGB
     //
     this.kbtnConvertToRGB.AutoSize     = true;
     this.kbtnConvertToRGB.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.kbtnConvertToRGB.Enabled      = false;
     this.kbtnConvertToRGB.Location     = new System.Drawing.Point(308, 577);
     this.kbtnConvertToRGB.Name         = "kbtnConvertToRGB";
     this.kbtnConvertToRGB.Size         = new System.Drawing.Size(124, 30);
     this.kbtnConvertToRGB.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnConvertToRGB.TabIndex    = 32;
     this.kbtnConvertToRGB.Values.Text = "&Convert to RGB";
     this.kbtnConvertToRGB.Click      += new System.EventHandler(this.kbtnConvertToRGB_Click);
     //
     // klbColours
     //
     this.klbColours.ContextMenuStrip = this.ctxColourList;
     this.klbColours.Location         = new System.Drawing.Point(12, 12);
     this.klbColours.Name             = "klbColours";
     this.klbColours.Size             = new System.Drawing.Size(792, 549);
     this.klbColours.StateCommon.Item.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.klbColours.TabIndex = 0;
     //
     // ktxtHexValue
     //
     this.ktxtHexValue.Location  = new System.Drawing.Point(148, 576);
     this.ktxtHexValue.MaxLength = 7;
     this.ktxtHexValue.Name      = "ktxtHexValue";
     this.ktxtHexValue.Size      = new System.Drawing.Size(154, 29);
     this.ktxtHexValue.StateCommon.Content.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ktxtHexValue.TabIndex     = 31;
     this.ktxtHexValue.TextAlign    = System.Windows.Forms.HorizontalAlignment.Center;
     this.ktxtHexValue.TextChanged += new System.EventHandler(this.ktxtHexValue_TextChanged);
     //
     // kryptonLabel5
     //
     this.kryptonLabel5.Location = new System.Drawing.Point(12, 577);
     this.kryptonLabel5.Name     = "kryptonLabel5";
     this.kryptonLabel5.Size     = new System.Drawing.Size(130, 26);
     this.kryptonLabel5.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel5.TabIndex    = 30;
     this.kryptonLabel5.Values.Text = "Hexadecimal: #";
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.SystemColors.ControlDarkDark;
     this.panel1.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Location  = new System.Drawing.Point(0, 619);
     this.panel1.Name      = "panel1";
     this.panel1.Size      = new System.Drawing.Size(816, 3);
     this.panel1.TabIndex  = 2;
     //
     // kbtnExport
     //
     this.kbtnExport.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.kbtnExport.AutoSize = true;
     this.kbtnExport.Enabled  = false;
     this.kbtnExport.Location = new System.Drawing.Point(12, 9);
     this.kbtnExport.Name     = "kbtnExport";
     this.kbtnExport.Size     = new System.Drawing.Size(147, 30);
     this.kbtnExport.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnExport.TabIndex    = 8;
     this.kbtnExport.Values.Text = "E&xport to File";
     this.kbtnExport.Click      += new System.EventHandler(this.kbtnExport_Click);
     //
     // kbtnLoadFromFile
     //
     this.kbtnLoadFromFile.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.kbtnLoadFromFile.AutoSize = true;
     this.kbtnLoadFromFile.Location = new System.Drawing.Point(165, 9);
     this.kbtnLoadFromFile.Name     = "kbtnLoadFromFile";
     this.kbtnLoadFromFile.Size     = new System.Drawing.Size(137, 30);
     this.kbtnLoadFromFile.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnLoadFromFile.TabIndex    = 9;
     this.kbtnLoadFromFile.Values.Text = "&Load from File";
     this.kbtnLoadFromFile.Click      += new System.EventHandler(this.kbtnLoadFromFile_Click);
     //
     // ctxColourList
     //
     this.ctxColourList.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.ctxColourList.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.removeSelectedColourToolStripMenuItem
     });
     this.ctxColourList.Name = "ctxColourList";
     this.ctxColourList.Size = new System.Drawing.Size(204, 48);
     //
     // removeSelectedColourToolStripMenuItem
     //
     this.removeSelectedColourToolStripMenuItem.Name   = "removeSelectedColourToolStripMenuItem";
     this.removeSelectedColourToolStripMenuItem.Size   = new System.Drawing.Size(203, 22);
     this.removeSelectedColourToolStripMenuItem.Text   = "&Remove Selected Colour";
     this.removeSelectedColourToolStripMenuItem.Click += new System.EventHandler(this.removeSelectedColourToolStripMenuItem_Click);
     //
     // HexadecimalToRGBConverter
     //
     this.AcceptButton = this.kbtnCancel;
     this.CancelButton = this.kbtnCancel;
     this.ClientSize   = new System.Drawing.Size(816, 673);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.kryptonPanel2);
     this.Controls.Add(this.kryptonPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "HexadecimalToRGBConverter";
     this.ShowIcon        = false;
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Hexadecimal to RGB Converter";
     this.Load           += new System.EventHandler(this.HexadecimalToRGBConverter_Load);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
     this.kryptonPanel1.ResumeLayout(false);
     this.kryptonPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).EndInit();
     this.kryptonPanel2.ResumeLayout(false);
     this.kryptonPanel2.PerformLayout();
     this.ctxColourList.ResumeLayout(false);
     this.ResumeLayout(false);
 }
示例#19
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ColourSettingsViewer));
     this.kryptonPanel1 = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kchkAutomaticallyUpdateValues = new ComponentFactory.Krypton.Toolkit.KryptonCheckBox();
     this.kbtnOk              = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kryptonPanel2       = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kbtnLoadFromFile    = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kbtnExport          = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.pbxColourPreviewer  = new System.Windows.Forms.PictureBox();
     this.kbtnResetValues     = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kbtnAllColoursAsRGB = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kbtnAllColoursAsHex = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.klblRGBValues       = new ComponentFactory.Krypton.Toolkit.KryptonListBox();
     this.klbHexValues        = new ComponentFactory.Krypton.Toolkit.KryptonListBox();
     this.pictureBox1         = new System.Windows.Forms.PictureBox();
     this.kchkUseUppercase    = new ComponentFactory.Krypton.Toolkit.KryptonCheckBox();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).BeginInit();
     this.kryptonPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pbxColourPreviewer)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.SuspendLayout();
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.kchkAutomaticallyUpdateValues);
     this.kryptonPanel1.Controls.Add(this.kbtnOk);
     this.kryptonPanel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.kryptonPanel1.Location = new System.Drawing.Point(0, 732);
     this.kryptonPanel1.Name     = "kryptonPanel1";
     this.kryptonPanel1.Size     = new System.Drawing.Size(1011, 49);
     this.kryptonPanel1.TabIndex = 0;
     //
     // kchkAutomaticallyUpdateValues
     //
     this.kchkAutomaticallyUpdateValues.Location = new System.Drawing.Point(13, 11);
     this.kchkAutomaticallyUpdateValues.Name     = "kchkAutomaticallyUpdateValues";
     this.kchkAutomaticallyUpdateValues.Size     = new System.Drawing.Size(234, 26);
     this.kchkAutomaticallyUpdateValues.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kchkAutomaticallyUpdateValues.TabIndex    = 36;
     this.kchkAutomaticallyUpdateValues.Values.Text = "&Automatically Update Values";
     //
     // kbtnOk
     //
     this.kbtnOk.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.kbtnOk.AutoSize = true;
     this.kbtnOk.Location = new System.Drawing.Point(909, 7);
     this.kbtnOk.Name     = "kbtnOk";
     this.kbtnOk.Size     = new System.Drawing.Size(90, 30);
     this.kbtnOk.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnOk.TabIndex    = 3;
     this.kbtnOk.Values.Text = "&Ok";
     //
     // kryptonPanel2
     //
     this.kryptonPanel2.Controls.Add(this.kchkUseUppercase);
     this.kryptonPanel2.Controls.Add(this.kbtnLoadFromFile);
     this.kryptonPanel2.Controls.Add(this.kbtnExport);
     this.kryptonPanel2.Controls.Add(this.pbxColourPreviewer);
     this.kryptonPanel2.Controls.Add(this.kbtnResetValues);
     this.kryptonPanel2.Controls.Add(this.kbtnAllColoursAsRGB);
     this.kryptonPanel2.Controls.Add(this.kbtnAllColoursAsHex);
     this.kryptonPanel2.Controls.Add(this.klblRGBValues);
     this.kryptonPanel2.Controls.Add(this.klbHexValues);
     this.kryptonPanel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.kryptonPanel2.Location = new System.Drawing.Point(0, 0);
     this.kryptonPanel2.Name     = "kryptonPanel2";
     this.kryptonPanel2.Size     = new System.Drawing.Size(1011, 732);
     this.kryptonPanel2.TabIndex = 1;
     //
     // kbtnLoadFromFile
     //
     this.kbtnLoadFromFile.AutoSize = true;
     this.kbtnLoadFromFile.Location = new System.Drawing.Point(13, 681);
     this.kbtnLoadFromFile.Name     = "kbtnLoadFromFile";
     this.kbtnLoadFromFile.Size     = new System.Drawing.Size(137, 30);
     this.kbtnLoadFromFile.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnLoadFromFile.TabIndex    = 11;
     this.kbtnLoadFromFile.Values.Text = "&Load from File";
     //
     // kbtnExport
     //
     this.kbtnExport.AutoSize = true;
     this.kbtnExport.Enabled  = false;
     this.kbtnExport.Location = new System.Drawing.Point(13, 637);
     this.kbtnExport.Name     = "kbtnExport";
     this.kbtnExport.Size     = new System.Drawing.Size(147, 30);
     this.kbtnExport.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnExport.TabIndex    = 10;
     this.kbtnExport.Values.Text = "E&xport to File";
     //
     // pbxColourPreviewer
     //
     this.pbxColourPreviewer.BackColor = System.Drawing.Color.Transparent;
     this.pbxColourPreviewer.Location  = new System.Drawing.Point(515, 506);
     this.pbxColourPreviewer.Name      = "pbxColourPreviewer";
     this.pbxColourPreviewer.Size      = new System.Drawing.Size(484, 120);
     this.pbxColourPreviewer.TabIndex  = 6;
     this.pbxColourPreviewer.TabStop   = false;
     //
     // kbtnResetValues
     //
     this.kbtnResetValues.AutoSize = true;
     this.kbtnResetValues.Enabled  = false;
     this.kbtnResetValues.Location = new System.Drawing.Point(13, 593);
     this.kbtnResetValues.Name     = "kbtnResetValues";
     this.kbtnResetValues.Size     = new System.Drawing.Size(144, 30);
     this.kbtnResetValues.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnResetValues.TabIndex    = 5;
     this.kbtnResetValues.Values.Text = "Re&set Values";
     //
     // kbtnAllColoursAsRGB
     //
     this.kbtnAllColoursAsRGB.AutoSize = true;
     this.kbtnAllColoursAsRGB.Location = new System.Drawing.Point(13, 549);
     this.kbtnAllColoursAsRGB.Name     = "kbtnAllColoursAsRGB";
     this.kbtnAllColoursAsRGB.Size     = new System.Drawing.Size(292, 30);
     this.kbtnAllColoursAsRGB.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnAllColoursAsRGB.TabIndex    = 4;
     this.kbtnAllColoursAsRGB.Values.Text = "Get all Colour Settings as &RGB";
     //
     // kbtnAllColoursAsHex
     //
     this.kbtnAllColoursAsHex.AutoSize = true;
     this.kbtnAllColoursAsHex.Location = new System.Drawing.Point(13, 505);
     this.kbtnAllColoursAsHex.Name     = "kbtnAllColoursAsHex";
     this.kbtnAllColoursAsHex.Size     = new System.Drawing.Size(292, 30);
     this.kbtnAllColoursAsHex.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnAllColoursAsHex.TabIndex    = 3;
     this.kbtnAllColoursAsHex.Values.Text = "&Get all Colour Settings as Hexadecimal";
     this.kbtnAllColoursAsHex.Click      += new System.EventHandler(this.kbtnAllColoursAsHex_Click);
     //
     // klblRGBValues
     //
     this.klblRGBValues.Location = new System.Drawing.Point(515, 13);
     this.klblRGBValues.Name     = "klblRGBValues";
     this.klblRGBValues.Size     = new System.Drawing.Size(484, 473);
     this.klblRGBValues.StateCommon.Item.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.klblRGBValues.TabIndex = 1;
     //
     // klbHexValues
     //
     this.klbHexValues.Location = new System.Drawing.Point(13, 13);
     this.klbHexValues.Name     = "klbHexValues";
     this.klbHexValues.Size     = new System.Drawing.Size(484, 473);
     this.klbHexValues.StateCommon.Item.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.klbHexValues.TabIndex = 0;
     //
     // pictureBox1
     //
     this.pictureBox1.BackColor = System.Drawing.SystemColors.ControlDarkDark;
     this.pictureBox1.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.pictureBox1.Location  = new System.Drawing.Point(0, 729);
     this.pictureBox1.Name      = "pictureBox1";
     this.pictureBox1.Size      = new System.Drawing.Size(1011, 3);
     this.pictureBox1.TabIndex  = 2;
     this.pictureBox1.TabStop   = false;
     //
     // kchkUseUppercase
     //
     this.kchkUseUppercase.Location = new System.Drawing.Point(311, 510);
     this.kchkUseUppercase.Name     = "kchkUseUppercase";
     this.kchkUseUppercase.Size     = new System.Drawing.Size(133, 26);
     this.kchkUseUppercase.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kchkUseUppercase.TabIndex    = 37;
     this.kchkUseUppercase.Values.Text = "Use &Uppercase";
     //
     // ColourSettingsViewer
     //
     this.ClientSize = new System.Drawing.Size(1011, 781);
     this.Controls.Add(this.pictureBox1);
     this.Controls.Add(this.kryptonPanel2);
     this.Controls.Add(this.kryptonPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "ColourSettingsViewer";
     this.ShowInTaskbar   = false;
     this.Text            = "Palette Debug Console";
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
     this.kryptonPanel1.ResumeLayout(false);
     this.kryptonPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).EndInit();
     this.kryptonPanel2.ResumeLayout(false);
     this.kryptonPanel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pbxColourPreviewer)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.ResumeLayout(false);
 }
示例#20
0
        public static void PropagateHEXColourValues(KryptonListBox hexValues, bool useUppercase)
        {
            AllMergedColourSettingsManager colourSettingsManager = new AllMergedColourSettingsManager();

            if (useUppercase)
            {
                hexValues.Items.Add($"Base Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetBaseColour()) }");

                hexValues.Items.Add($"Darkest Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetDarkColour()) }");

                hexValues.Items.Add($"Medium Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetMediumColour()) }");

                hexValues.Items.Add($"Light Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetLightColour()) }");

                hexValues.Items.Add($"Lightest Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetLightestColour()) }");

                hexValues.Items.Add($"Border Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetBorderColour()) }");

                hexValues.Items.Add($"Alternative Normal Text Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetAlternativeNormalTextColour()) }");

                hexValues.Items.Add($"Disabled Text Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetDisabledTextColour()) }");

                hexValues.Items.Add($"Normal Text Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetNormalTextColour()) }");

                hexValues.Items.Add($"Focused Text Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetFocusedTextColour()) }");

                hexValues.Items.Add($"Pressed Text Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetPressedTextColour()) }");

                hexValues.Items.Add($"Ribbon Tab Text Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetRibbonTabTextColour()) }");

                hexValues.Items.Add($"Disabled Control Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetDisabledControlColour()) }");

                hexValues.Items.Add($"Link Disabled Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetLinkDisabledColour()) }");

                hexValues.Items.Add($"Link Focused Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetLinkFocusedColour()) }");

                hexValues.Items.Add($"Link Normal Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetLinkNormalColour()) }");

                hexValues.Items.Add($"Link Hover Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetLinkHoverColour()) }");

                hexValues.Items.Add($"Link Visited Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetLinkVisitedColour()) }");

                hexValues.Items.Add($"Menu Text Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetMenuTextColour()) }");

                hexValues.Items.Add($"Status Strip Text Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetStatusStripTextColour()) }");

                hexValues.Items.Add($"Custom Colour One Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetCustomColourOne()) }");

                hexValues.Items.Add($"Custom Colour Two Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetCustomColourTwo()) }");

                hexValues.Items.Add($"Custom Colour Three Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetCustomColourThree()) }");

                hexValues.Items.Add($"Custom Colour Four Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetCustomColourFour()) }");

                hexValues.Items.Add($"Custom Colour Five Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetCustomColourFive()) }");

                hexValues.Items.Add($"Custom Text Colour One Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetCustomTextColourOne()) }");

                hexValues.Items.Add($"Custom Text Colour Two Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetCustomTextColourTwo()) }");

                hexValues.Items.Add($"Custom Text Colour Three Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetCustomTextColourThree()) }");

                hexValues.Items.Add($"Custom Text Colour Four Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetCustomTextColourFour()) }");

                hexValues.Items.Add($"Custom Text Colour Five Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetCustomTextColourFive()) }");
            }
            else
            {
                hexValues.Items.Add($"Base Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetBaseColour()).ToUpper() }");

                hexValues.Items.Add($"Darkest Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetDarkColour()).ToUpper() }");

                hexValues.Items.Add($"Medium Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetMediumColour()).ToUpper() }");

                hexValues.Items.Add($"Light Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetLightColour()).ToUpper() }");

                hexValues.Items.Add($"Lightest Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetLightestColour()).ToUpper() }");

                hexValues.Items.Add($"Border Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetBorderColour()).ToUpper() }");

                hexValues.Items.Add($"Alternative Normal Text Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetAlternativeNormalTextColour()).ToUpper() }");

                hexValues.Items.Add($"Disabled Text Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetDisabledTextColour()).ToUpper() }");

                hexValues.Items.Add($"Normal Text Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetNormalTextColour()).ToUpper() }");

                hexValues.Items.Add($"Focused Text Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetFocusedTextColour()).ToUpper() }");

                hexValues.Items.Add($"Pressed Text Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetPressedTextColour()).ToUpper() }");

                hexValues.Items.Add($"Ribbon Tab Text Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetRibbonTabTextColour()).ToUpper() }");

                hexValues.Items.Add($"Disabled Control Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetDisabledControlColour()).ToUpper() }");

                hexValues.Items.Add($"Link Disabled Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetLinkDisabledColour()).ToUpper() }");

                hexValues.Items.Add($"Link Focused Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetLinkFocusedColour()).ToUpper() }");

                hexValues.Items.Add($"Link Normal Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetLinkNormalColour()).ToUpper() }");

                hexValues.Items.Add($"Link Hover Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetLinkHoverColour()).ToUpper() }");

                hexValues.Items.Add($"Link Visited Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetLinkVisitedColour()).ToUpper() }");

                hexValues.Items.Add($"Menu Text Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetMenuTextColour()).ToUpper() }");

                hexValues.Items.Add($"Status Strip Text Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetStatusStripTextColour()).ToUpper() }");

                hexValues.Items.Add($"Custom Colour One Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetCustomColourOne()).ToUpper() }");

                hexValues.Items.Add($"Custom Colour Two Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetCustomColourTwo()).ToUpper() }");

                hexValues.Items.Add($"Custom Colour Three Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetCustomColourThree()).ToUpper() }");

                hexValues.Items.Add($"Custom Colour Four Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetCustomColourFour()).ToUpper() }");

                hexValues.Items.Add($"Custom Colour Five Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetCustomColourFive()).ToUpper() }");

                hexValues.Items.Add($"Custom Text Colour One Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetCustomTextColourOne()).ToUpper() }");

                hexValues.Items.Add($"Custom Text Colour Two Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetCustomTextColourTwo()).ToUpper() }");

                hexValues.Items.Add($"Custom Text Colour Three Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetCustomTextColourThree()).ToUpper() }");

                hexValues.Items.Add($"Custom Text Colour Four Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetCustomTextColourFour()).ToUpper() }");

                hexValues.Items.Add($"Custom Text Colour Five Colour: { ColorTranslator.ToHtml(colourSettingsManager.GetCustomTextColourFive()).ToUpper() }");
            }
        }
示例#21
0
 private void InitializeComponent()
 {
     this.kcbDriveList = new Krypton.Toolkit.KryptonComboBox();
     this.ktvFolders   = new Krypton.Toolkit.KryptonTreeView();
     this.panel1       = new System.Windows.Forms.Panel();
     this.panel2       = new System.Windows.Forms.Panel();
     this.panel3       = new System.Windows.Forms.Panel();
     this.klbFiles     = new Krypton.Toolkit.KryptonListBox();
     ((System.ComponentModel.ISupportInitialize)(this.kcbDriveList)).BeginInit();
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.panel3.SuspendLayout();
     this.SuspendLayout();
     //
     // kcbDriveList
     //
     this.kcbDriveList.Dock           = System.Windows.Forms.DockStyle.Fill;
     this.kcbDriveList.DrawMode       = System.Windows.Forms.DrawMode.OwnerDrawVariable;
     this.kcbDriveList.DropDownStyle  = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.kcbDriveList.DropDownWidth  = 200;
     this.kcbDriveList.IntegralHeight = false;
     this.kcbDriveList.Location       = new System.Drawing.Point(0, 0);
     this.kcbDriveList.Name           = "kcbDriveList";
     this.kcbDriveList.Size           = new System.Drawing.Size(200, 21);
     this.kcbDriveList.StateCommon.ComboBox.Content.TextH = Krypton.Toolkit.PaletteRelativeAlign.Near;
     this.kcbDriveList.TabIndex              = 0;
     this.kcbDriveList.SelectedIndexChanged += new System.EventHandler(this.kcbDriveList_SelectedIndexChanged);
     //
     // ktvFolders
     //
     this.ktvFolders.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.ktvFolders.Location     = new System.Drawing.Point(0, 0);
     this.ktvFolders.Name         = "ktvFolders";
     this.ktvFolders.Size         = new System.Drawing.Size(200, 382);
     this.ktvFolders.TabIndex     = 1;
     this.ktvFolders.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.ktvFolders_AfterSelect);
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.Transparent;
     this.panel1.Controls.Add(this.panel3);
     this.panel1.Controls.Add(this.panel2);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Left;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(200, 403);
     this.panel1.TabIndex = 2;
     //
     // panel2
     //
     this.panel2.BackColor = System.Drawing.Color.Transparent;
     this.panel2.Controls.Add(this.kcbDriveList);
     this.panel2.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panel2.Location = new System.Drawing.Point(0, 0);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(200, 21);
     this.panel2.TabIndex = 3;
     //
     // panel3
     //
     this.panel3.Controls.Add(this.ktvFolders);
     this.panel3.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel3.Location = new System.Drawing.Point(0, 21);
     this.panel3.Name     = "panel3";
     this.panel3.Size     = new System.Drawing.Size(200, 382);
     this.panel3.TabIndex = 3;
     //
     // klbFiles
     //
     this.klbFiles.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.klbFiles.Location = new System.Drawing.Point(200, 0);
     this.klbFiles.Name     = "klbFiles";
     this.klbFiles.Size     = new System.Drawing.Size(525, 403);
     this.klbFiles.TabIndex = 3;
     //
     // KryptonFileFolderBrowser
     //
     this.BackColor = System.Drawing.Color.Transparent;
     this.Controls.Add(this.klbFiles);
     this.Controls.Add(this.panel1);
     this.Name = "KryptonFileFolderBrowser";
     this.Size = new System.Drawing.Size(725, 403);
     ((System.ComponentModel.ISupportInitialize)(this.kcbDriveList)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     this.ResumeLayout(false);
 }
示例#22
0
 private void InitializeComponent()
 {
     this.kryptonPanel1                       = new Krypton.Toolkit.KryptonPanel();
     this.kryptonPanel2                       = new Krypton.Toolkit.KryptonPanel();
     this.panel1                              = new System.Windows.Forms.Panel();
     this.kbtnCancel                          = new Krypton.Toolkit.KryptonButton();
     this.kbtnApply                           = new Krypton.Toolkit.KryptonButton();
     this.kryptonGroupBox1                    = new Krypton.Toolkit.KryptonGroupBox();
     this.kryptonLabel1                       = new Krypton.Toolkit.KryptonLabel();
     this.ktxtVerticalAxisLabelText           = new Krypton.Toolkit.KryptonTextBox();
     this.kryptonLabel2                       = new Krypton.Toolkit.KryptonLabel();
     this.ktxtVerticalAxisUpperLimit          = new Krypton.Toolkit.KryptonTextBox();
     this.ktxtVerticalAxisLowerLimit          = new Krypton.Toolkit.KryptonTextBox();
     this.kryptonLabel3                       = new Krypton.Toolkit.KryptonLabel();
     this.kbtnVerticalAxisFitData             = new Krypton.Toolkit.KryptonButton();
     this.kchkVerticalAxisShowMinorTicks      = new Krypton.Toolkit.KryptonCheckBox();
     this.kchkVerticalAxisDateAndTimeFormat   = new Krypton.Toolkit.KryptonCheckBox();
     this.kryptonGroupBox2                    = new Krypton.Toolkit.KryptonGroupBox();
     this.kchkHorizontalAxisDateAndTimeFormat = new Krypton.Toolkit.KryptonCheckBox();
     this.kchkHorizontalAxisShowMinorTicks    = new Krypton.Toolkit.KryptonCheckBox();
     this.kbtnHorizontalAxisFitData           = new Krypton.Toolkit.KryptonButton();
     this.ktxtHorizontalAxisLowerLimit        = new Krypton.Toolkit.KryptonTextBox();
     this.kryptonLabel4                       = new Krypton.Toolkit.KryptonLabel();
     this.ktxtHorizontalAxisUpperLimit        = new Krypton.Toolkit.KryptonTextBox();
     this.kryptonLabel5                       = new Krypton.Toolkit.KryptonLabel();
     this.ktxtHorizontalAxisLabelText         = new Krypton.Toolkit.KryptonTextBox();
     this.kryptonLabel6                       = new Krypton.Toolkit.KryptonLabel();
     this.kryptonGroupBox3                    = new Krypton.Toolkit.KryptonGroupBox();
     this.kryptonGroupBox4                    = new Krypton.Toolkit.KryptonGroupBox();
     this.kryptonGroupBox5                    = new Krypton.Toolkit.KryptonGroupBox();
     this.kryptonGroupBox6                    = new Krypton.Toolkit.KryptonGroupBox();
     this.kryptonGroupBox7                    = new Krypton.Toolkit.KryptonGroupBox();
     this.kryptonGroupBox8                    = new Krypton.Toolkit.KryptonGroupBox();
     this.kryptonGroupBox9                    = new Krypton.Toolkit.KryptonGroupBox();
     this.krbImageQualityLow                  = new Krypton.Toolkit.KryptonRadioButton();
     this.krbImageQualityHigh                 = new Krypton.Toolkit.KryptonRadioButton();
     this.kchkImageQualityLowWhileDragging    = new Krypton.Toolkit.KryptonCheckBox();
     this.kcmbColourStyle                     = new Krypton.Toolkit.KryptonComboBox();
     this.kchkDisplayOnGraph                  = new Krypton.Toolkit.KryptonCheckBox();
     this.kchkOffset                          = new Krypton.Toolkit.KryptonCheckBox();
     this.kchkMultiplier                      = new Krypton.Toolkit.KryptonCheckBox();
     this.kchkGrid                            = new Krypton.Toolkit.KryptonCheckBox();
     this.kbtnTightenLayout                   = new Krypton.Toolkit.KryptonButton();
     this.klbPlotObjects                      = new Krypton.Toolkit.KryptonListBox();
     this.ktxtLabelText                       = new Krypton.Toolkit.KryptonTextBox();
     this.kbtnCopyCSV                         = new Krypton.Toolkit.KryptonButton();
     this.kbtnSaveCSV                         = new Krypton.Toolkit.KryptonButton();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).BeginInit();
     this.kryptonPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox1.Panel)).BeginInit();
     this.kryptonGroupBox1.Panel.SuspendLayout();
     this.kryptonGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox2.Panel)).BeginInit();
     this.kryptonGroupBox2.Panel.SuspendLayout();
     this.kryptonGroupBox2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox3.Panel)).BeginInit();
     this.kryptonGroupBox3.Panel.SuspendLayout();
     this.kryptonGroupBox3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox4)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox4.Panel)).BeginInit();
     this.kryptonGroupBox4.Panel.SuspendLayout();
     this.kryptonGroupBox4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox5)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox5.Panel)).BeginInit();
     this.kryptonGroupBox5.Panel.SuspendLayout();
     this.kryptonGroupBox5.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox6)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox6.Panel)).BeginInit();
     this.kryptonGroupBox6.Panel.SuspendLayout();
     this.kryptonGroupBox6.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox7)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox7.Panel)).BeginInit();
     this.kryptonGroupBox7.Panel.SuspendLayout();
     this.kryptonGroupBox7.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox8)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox8.Panel)).BeginInit();
     this.kryptonGroupBox8.Panel.SuspendLayout();
     this.kryptonGroupBox8.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox9)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox9.Panel)).BeginInit();
     this.kryptonGroupBox9.Panel.SuspendLayout();
     this.kryptonGroupBox9.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kcmbColourStyle)).BeginInit();
     this.SuspendLayout();
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.kbtnApply);
     this.kryptonPanel1.Controls.Add(this.kbtnCancel);
     this.kryptonPanel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.kryptonPanel1.Location = new System.Drawing.Point(0, 466);
     this.kryptonPanel1.Name     = "kryptonPanel1";
     this.kryptonPanel1.Size     = new System.Drawing.Size(1000, 43);
     this.kryptonPanel1.TabIndex = 0;
     //
     // kryptonPanel2
     //
     this.kryptonPanel2.Controls.Add(this.kbtnTightenLayout);
     this.kryptonPanel2.Controls.Add(this.kryptonGroupBox7);
     this.kryptonPanel2.Controls.Add(this.kryptonGroupBox6);
     this.kryptonPanel2.Controls.Add(this.kryptonGroupBox5);
     this.kryptonPanel2.Controls.Add(this.kryptonGroupBox4);
     this.kryptonPanel2.Controls.Add(this.kryptonGroupBox3);
     this.kryptonPanel2.Controls.Add(this.kryptonGroupBox2);
     this.kryptonPanel2.Controls.Add(this.kryptonGroupBox1);
     this.kryptonPanel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.kryptonPanel2.Location = new System.Drawing.Point(0, 0);
     this.kryptonPanel2.Name     = "kryptonPanel2";
     this.kryptonPanel2.Size     = new System.Drawing.Size(1000, 466);
     this.kryptonPanel2.TabIndex = 1;
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.SystemColors.ControlDarkDark;
     this.panel1.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Location  = new System.Drawing.Point(0, 463);
     this.panel1.Name      = "panel1";
     this.panel1.Size      = new System.Drawing.Size(1000, 3);
     this.panel1.TabIndex  = 2;
     //
     // kbtnCancel
     //
     this.kbtnCancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.kbtnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.kbtnCancel.Location     = new System.Drawing.Point(898, 6);
     this.kbtnCancel.Name         = "kbtnCancel";
     this.kbtnCancel.Size         = new System.Drawing.Size(90, 25);
     this.kbtnCancel.TabIndex     = 0;
     this.kbtnCancel.Values.Text  = "C&ancel";
     this.kbtnCancel.Click       += new System.EventHandler(this.kbtnCancel_Click);
     //
     // kbtnApply
     //
     this.kbtnApply.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.kbtnApply.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.kbtnApply.Enabled      = false;
     this.kbtnApply.Location     = new System.Drawing.Point(802, 6);
     this.kbtnApply.Name         = "kbtnApply";
     this.kbtnApply.Size         = new System.Drawing.Size(90, 25);
     this.kbtnApply.TabIndex     = 1;
     this.kbtnApply.Values.Text  = "App&ly";
     this.kbtnApply.Click       += new System.EventHandler(this.kbtnApply_Click);
     //
     // kryptonGroupBox1
     //
     this.kryptonGroupBox1.Location = new System.Drawing.Point(12, 12);
     this.kryptonGroupBox1.Name     = "kryptonGroupBox1";
     //
     // kryptonGroupBox1.Panel
     //
     this.kryptonGroupBox1.Panel.Controls.Add(this.kchkVerticalAxisDateAndTimeFormat);
     this.kryptonGroupBox1.Panel.Controls.Add(this.kchkVerticalAxisShowMinorTicks);
     this.kryptonGroupBox1.Panel.Controls.Add(this.kbtnVerticalAxisFitData);
     this.kryptonGroupBox1.Panel.Controls.Add(this.ktxtVerticalAxisLowerLimit);
     this.kryptonGroupBox1.Panel.Controls.Add(this.kryptonLabel3);
     this.kryptonGroupBox1.Panel.Controls.Add(this.ktxtVerticalAxisUpperLimit);
     this.kryptonGroupBox1.Panel.Controls.Add(this.kryptonLabel2);
     this.kryptonGroupBox1.Panel.Controls.Add(this.ktxtVerticalAxisLabelText);
     this.kryptonGroupBox1.Panel.Controls.Add(this.kryptonLabel1);
     this.kryptonGroupBox1.Size           = new System.Drawing.Size(301, 218);
     this.kryptonGroupBox1.TabIndex       = 0;
     this.kryptonGroupBox1.Values.Heading = "Vertical Axis";
     //
     // kryptonLabel1
     //
     this.kryptonLabel1.Location    = new System.Drawing.Point(13, 15);
     this.kryptonLabel1.Name        = "kryptonLabel1";
     this.kryptonLabel1.Size        = new System.Drawing.Size(42, 20);
     this.kryptonLabel1.TabIndex    = 0;
     this.kryptonLabel1.Values.Text = "Label:";
     //
     // ktxtVerticalAxisLabelText
     //
     this.ktxtVerticalAxisLabelText.Hint     = "Label text...";
     this.ktxtVerticalAxisLabelText.Location = new System.Drawing.Point(96, 15);
     this.ktxtVerticalAxisLabelText.Name     = "ktxtVerticalAxisLabelText";
     this.ktxtVerticalAxisLabelText.Size     = new System.Drawing.Size(190, 23);
     this.ktxtVerticalAxisLabelText.TabIndex = 1;
     //
     // kryptonLabel2
     //
     this.kryptonLabel2.Location    = new System.Drawing.Point(13, 44);
     this.kryptonLabel2.Name        = "kryptonLabel2";
     this.kryptonLabel2.Size        = new System.Drawing.Size(77, 20);
     this.kryptonLabel2.TabIndex    = 2;
     this.kryptonLabel2.Values.Text = "Upper Limit:";
     //
     // ktxtVerticalAxisUpperLimit
     //
     this.ktxtVerticalAxisUpperLimit.Hint     = "Upper limit...";
     this.ktxtVerticalAxisUpperLimit.Location = new System.Drawing.Point(96, 44);
     this.ktxtVerticalAxisUpperLimit.Name     = "ktxtVerticalAxisUpperLimit";
     this.ktxtVerticalAxisUpperLimit.Size     = new System.Drawing.Size(100, 23);
     this.ktxtVerticalAxisUpperLimit.TabIndex = 3;
     //
     // ktxtVerticalAxisLowerLimit
     //
     this.ktxtVerticalAxisLowerLimit.Hint     = "Lower limit...";
     this.ktxtVerticalAxisLowerLimit.Location = new System.Drawing.Point(96, 73);
     this.ktxtVerticalAxisLowerLimit.Name     = "ktxtVerticalAxisLowerLimit";
     this.ktxtVerticalAxisLowerLimit.Size     = new System.Drawing.Size(100, 23);
     this.ktxtVerticalAxisLowerLimit.TabIndex = 5;
     //
     // kryptonLabel3
     //
     this.kryptonLabel3.Location    = new System.Drawing.Point(13, 73);
     this.kryptonLabel3.Name        = "kryptonLabel3";
     this.kryptonLabel3.Size        = new System.Drawing.Size(76, 20);
     this.kryptonLabel3.TabIndex    = 4;
     this.kryptonLabel3.Values.Text = "Lower Limit:";
     //
     // kbtnVerticalAxisFitData
     //
     this.kbtnVerticalAxisFitData.Location    = new System.Drawing.Point(96, 102);
     this.kbtnVerticalAxisFitData.Name        = "kbtnVerticalAxisFitData";
     this.kbtnVerticalAxisFitData.Size        = new System.Drawing.Size(100, 25);
     this.kbtnVerticalAxisFitData.TabIndex    = 6;
     this.kbtnVerticalAxisFitData.Values.Text = "Fit &Data";
     this.kbtnVerticalAxisFitData.Click      += new System.EventHandler(this.kbtnVerticalAxisFitData_Click);
     //
     // kchkVerticalAxisShowMinorTicks
     //
     this.kchkVerticalAxisShowMinorTicks.Location    = new System.Drawing.Point(96, 134);
     this.kchkVerticalAxisShowMinorTicks.Name        = "kchkVerticalAxisShowMinorTicks";
     this.kchkVerticalAxisShowMinorTicks.Size        = new System.Drawing.Size(119, 20);
     this.kchkVerticalAxisShowMinorTicks.TabIndex    = 7;
     this.kchkVerticalAxisShowMinorTicks.Values.Text = "&Show Minor Ticks";
     //
     // kchkVerticalAxisDateAndTimeFormat
     //
     this.kchkVerticalAxisDateAndTimeFormat.Location    = new System.Drawing.Point(96, 160);
     this.kchkVerticalAxisDateAndTimeFormat.Name        = "kchkVerticalAxisDateAndTimeFormat";
     this.kchkVerticalAxisDateAndTimeFormat.Size        = new System.Drawing.Size(134, 20);
     this.kchkVerticalAxisDateAndTimeFormat.TabIndex    = 8;
     this.kchkVerticalAxisDateAndTimeFormat.Values.Text = "Date && &Time Format";
     //
     // kryptonGroupBox2
     //
     this.kryptonGroupBox2.Location = new System.Drawing.Point(12, 236);
     this.kryptonGroupBox2.Name     = "kryptonGroupBox2";
     //
     // kryptonGroupBox2.Panel
     //
     this.kryptonGroupBox2.Panel.Controls.Add(this.kchkHorizontalAxisDateAndTimeFormat);
     this.kryptonGroupBox2.Panel.Controls.Add(this.kchkHorizontalAxisShowMinorTicks);
     this.kryptonGroupBox2.Panel.Controls.Add(this.kbtnHorizontalAxisFitData);
     this.kryptonGroupBox2.Panel.Controls.Add(this.ktxtHorizontalAxisLowerLimit);
     this.kryptonGroupBox2.Panel.Controls.Add(this.kryptonLabel4);
     this.kryptonGroupBox2.Panel.Controls.Add(this.ktxtHorizontalAxisUpperLimit);
     this.kryptonGroupBox2.Panel.Controls.Add(this.kryptonLabel5);
     this.kryptonGroupBox2.Panel.Controls.Add(this.ktxtHorizontalAxisLabelText);
     this.kryptonGroupBox2.Panel.Controls.Add(this.kryptonLabel6);
     this.kryptonGroupBox2.Size           = new System.Drawing.Size(301, 218);
     this.kryptonGroupBox2.TabIndex       = 3;
     this.kryptonGroupBox2.Values.Heading = "Horizontal Axis";
     //
     // kchkHorizontalAxisDateAndTimeFormat
     //
     this.kchkHorizontalAxisDateAndTimeFormat.Location    = new System.Drawing.Point(96, 160);
     this.kchkHorizontalAxisDateAndTimeFormat.Name        = "kchkHorizontalAxisDateAndTimeFormat";
     this.kchkHorizontalAxisDateAndTimeFormat.Size        = new System.Drawing.Size(134, 20);
     this.kchkHorizontalAxisDateAndTimeFormat.TabIndex    = 8;
     this.kchkHorizontalAxisDateAndTimeFormat.Values.Text = "Date && &Time Format";
     //
     // kchkHorizontalAxisShowMinorTicks
     //
     this.kchkHorizontalAxisShowMinorTicks.Location    = new System.Drawing.Point(96, 134);
     this.kchkHorizontalAxisShowMinorTicks.Name        = "kchkHorizontalAxisShowMinorTicks";
     this.kchkHorizontalAxisShowMinorTicks.Size        = new System.Drawing.Size(119, 20);
     this.kchkHorizontalAxisShowMinorTicks.TabIndex    = 7;
     this.kchkHorizontalAxisShowMinorTicks.Values.Text = "&Show Minor Ticks";
     //
     // kbtnHorizontalAxisFitData
     //
     this.kbtnHorizontalAxisFitData.Location    = new System.Drawing.Point(96, 102);
     this.kbtnHorizontalAxisFitData.Name        = "kbtnHorizontalAxisFitData";
     this.kbtnHorizontalAxisFitData.Size        = new System.Drawing.Size(100, 25);
     this.kbtnHorizontalAxisFitData.TabIndex    = 6;
     this.kbtnHorizontalAxisFitData.Values.Text = "Fit &Data";
     this.kbtnHorizontalAxisFitData.Click      += new System.EventHandler(this.kbtnHorizontalAxisFitData_Click);
     //
     // ktxtHorizontalAxisLowerLimit
     //
     this.ktxtHorizontalAxisLowerLimit.Hint     = "Lower limit...";
     this.ktxtHorizontalAxisLowerLimit.Location = new System.Drawing.Point(96, 73);
     this.ktxtHorizontalAxisLowerLimit.Name     = "ktxtHorizontalAxisLowerLimit";
     this.ktxtHorizontalAxisLowerLimit.Size     = new System.Drawing.Size(100, 23);
     this.ktxtHorizontalAxisLowerLimit.TabIndex = 5;
     //
     // kryptonLabel4
     //
     this.kryptonLabel4.Location    = new System.Drawing.Point(13, 73);
     this.kryptonLabel4.Name        = "kryptonLabel4";
     this.kryptonLabel4.Size        = new System.Drawing.Size(76, 20);
     this.kryptonLabel4.TabIndex    = 4;
     this.kryptonLabel4.Values.Text = "Lower Limit:";
     //
     // ktxtHorizontalAxisUpperLimit
     //
     this.ktxtHorizontalAxisUpperLimit.Hint     = "Upper limit...";
     this.ktxtHorizontalAxisUpperLimit.Location = new System.Drawing.Point(96, 44);
     this.ktxtHorizontalAxisUpperLimit.Name     = "ktxtHorizontalAxisUpperLimit";
     this.ktxtHorizontalAxisUpperLimit.Size     = new System.Drawing.Size(100, 23);
     this.ktxtHorizontalAxisUpperLimit.TabIndex = 3;
     //
     // kryptonLabel5
     //
     this.kryptonLabel5.Location    = new System.Drawing.Point(13, 44);
     this.kryptonLabel5.Name        = "kryptonLabel5";
     this.kryptonLabel5.Size        = new System.Drawing.Size(77, 20);
     this.kryptonLabel5.TabIndex    = 2;
     this.kryptonLabel5.Values.Text = "Upper Limit:";
     //
     // ktxtHorizontalAxisLabelText
     //
     this.ktxtHorizontalAxisLabelText.Hint     = "Label text...";
     this.ktxtHorizontalAxisLabelText.Location = new System.Drawing.Point(96, 15);
     this.ktxtHorizontalAxisLabelText.Name     = "ktxtHorizontalAxisLabelText";
     this.ktxtHorizontalAxisLabelText.Size     = new System.Drawing.Size(190, 23);
     this.ktxtHorizontalAxisLabelText.TabIndex = 1;
     //
     // kryptonLabel6
     //
     this.kryptonLabel6.Location    = new System.Drawing.Point(13, 15);
     this.kryptonLabel6.Name        = "kryptonLabel6";
     this.kryptonLabel6.Size        = new System.Drawing.Size(42, 20);
     this.kryptonLabel6.TabIndex    = 0;
     this.kryptonLabel6.Values.Text = "Label:";
     //
     // kryptonGroupBox3
     //
     this.kryptonGroupBox3.Location = new System.Drawing.Point(319, 12);
     this.kryptonGroupBox3.Name     = "kryptonGroupBox3";
     //
     // kryptonGroupBox3.Panel
     //
     this.kryptonGroupBox3.Panel.Controls.Add(this.kchkImageQualityLowWhileDragging);
     this.kryptonGroupBox3.Panel.Controls.Add(this.krbImageQualityHigh);
     this.kryptonGroupBox3.Panel.Controls.Add(this.krbImageQualityLow);
     this.kryptonGroupBox3.Size           = new System.Drawing.Size(355, 75);
     this.kryptonGroupBox3.TabIndex       = 4;
     this.kryptonGroupBox3.Values.Heading = "Image Quality";
     //
     // kryptonGroupBox4
     //
     this.kryptonGroupBox4.Location = new System.Drawing.Point(319, 93);
     this.kryptonGroupBox4.Name     = "kryptonGroupBox4";
     //
     // kryptonGroupBox4.Panel
     //
     this.kryptonGroupBox4.Panel.Controls.Add(this.kcmbColourStyle);
     this.kryptonGroupBox4.Size           = new System.Drawing.Size(355, 75);
     this.kryptonGroupBox4.TabIndex       = 5;
     this.kryptonGroupBox4.Values.Heading = "Colour Style";
     //
     // kryptonGroupBox5
     //
     this.kryptonGroupBox5.Location = new System.Drawing.Point(319, 174);
     this.kryptonGroupBox5.Name     = "kryptonGroupBox5";
     //
     // kryptonGroupBox5.Panel
     //
     this.kryptonGroupBox5.Panel.Controls.Add(this.kchkDisplayOnGraph);
     this.kryptonGroupBox5.Size           = new System.Drawing.Size(355, 75);
     this.kryptonGroupBox5.TabIndex       = 6;
     this.kryptonGroupBox5.Values.Heading = "Legend";
     //
     // kryptonGroupBox6
     //
     this.kryptonGroupBox6.Location = new System.Drawing.Point(319, 255);
     this.kryptonGroupBox6.Name     = "kryptonGroupBox6";
     //
     // kryptonGroupBox6.Panel
     //
     this.kryptonGroupBox6.Panel.Controls.Add(this.kchkGrid);
     this.kryptonGroupBox6.Panel.Controls.Add(this.kchkMultiplier);
     this.kryptonGroupBox6.Panel.Controls.Add(this.kchkOffset);
     this.kryptonGroupBox6.Size           = new System.Drawing.Size(355, 75);
     this.kryptonGroupBox6.TabIndex       = 7;
     this.kryptonGroupBox6.Values.Heading = "Tick Display";
     //
     // kryptonGroupBox7
     //
     this.kryptonGroupBox7.Location = new System.Drawing.Point(680, 12);
     this.kryptonGroupBox7.Name     = "kryptonGroupBox7";
     //
     // kryptonGroupBox7.Panel
     //
     this.kryptonGroupBox7.Panel.Controls.Add(this.klbPlotObjects);
     this.kryptonGroupBox7.Panel.Controls.Add(this.kryptonGroupBox9);
     this.kryptonGroupBox7.Panel.Controls.Add(this.kryptonGroupBox8);
     this.kryptonGroupBox7.Size           = new System.Drawing.Size(308, 442);
     this.kryptonGroupBox7.TabIndex       = 8;
     this.kryptonGroupBox7.Values.Heading = "Plottable Objects";
     //
     // kryptonGroupBox8
     //
     this.kryptonGroupBox8.Location = new System.Drawing.Point(12, 329);
     this.kryptonGroupBox8.Name     = "kryptonGroupBox8";
     //
     // kryptonGroupBox8.Panel
     //
     this.kryptonGroupBox8.Panel.Controls.Add(this.kbtnSaveCSV);
     this.kryptonGroupBox8.Panel.Controls.Add(this.kbtnCopyCSV);
     this.kryptonGroupBox8.Size           = new System.Drawing.Size(279, 75);
     this.kryptonGroupBox8.TabIndex       = 9;
     this.kryptonGroupBox8.Values.Heading = "Data Export";
     //
     // kryptonGroupBox9
     //
     this.kryptonGroupBox9.Location = new System.Drawing.Point(12, 248);
     this.kryptonGroupBox9.Name     = "kryptonGroupBox9";
     //
     // kryptonGroupBox9.Panel
     //
     this.kryptonGroupBox9.Panel.Controls.Add(this.ktxtLabelText);
     this.kryptonGroupBox9.Size           = new System.Drawing.Size(279, 75);
     this.kryptonGroupBox9.TabIndex       = 10;
     this.kryptonGroupBox9.Values.Heading = "Label";
     //
     // krbImageQualityLow
     //
     this.krbImageQualityLow.Location    = new System.Drawing.Point(14, 15);
     this.krbImageQualityLow.Name        = "krbImageQualityLow";
     this.krbImageQualityLow.Size        = new System.Drawing.Size(44, 20);
     this.krbImageQualityLow.TabIndex    = 0;
     this.krbImageQualityLow.Values.Text = "&Low";
     //
     // krbImageQualityHigh
     //
     this.krbImageQualityHigh.Location    = new System.Drawing.Point(64, 15);
     this.krbImageQualityHigh.Name        = "krbImageQualityHigh";
     this.krbImageQualityHigh.Size        = new System.Drawing.Size(49, 20);
     this.krbImageQualityHigh.TabIndex    = 1;
     this.krbImageQualityHigh.Values.Text = "Hi&gh";
     //
     // kchkImageQualityLowWhileDragging
     //
     this.kchkImageQualityLowWhileDragging.Location    = new System.Drawing.Point(119, 15);
     this.kchkImageQualityLowWhileDragging.Name        = "kchkImageQualityLowWhileDragging";
     this.kchkImageQualityLowWhileDragging.Size        = new System.Drawing.Size(130, 20);
     this.kchkImageQualityLowWhileDragging.TabIndex    = 2;
     this.kchkImageQualityLowWhileDragging.Values.Text = "&Low while dragging";
     //
     // kcmbColourStyle
     //
     this.kcmbColourStyle.DrawMode       = System.Windows.Forms.DrawMode.OwnerDrawVariable;
     this.kcmbColourStyle.DropDownStyle  = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.kcmbColourStyle.DropDownWidth  = 325;
     this.kcmbColourStyle.IntegralHeight = false;
     this.kcmbColourStyle.Location       = new System.Drawing.Point(14, 12);
     this.kcmbColourStyle.Name           = "kcmbColourStyle";
     this.kcmbColourStyle.Size           = new System.Drawing.Size(325, 21);
     this.kcmbColourStyle.StateCommon.ComboBox.Content.TextH = Krypton.Toolkit.PaletteRelativeAlign.Near;
     this.kcmbColourStyle.TabIndex = 0;
     //
     // kchkDisplayOnGraph
     //
     this.kchkDisplayOnGraph.Location    = new System.Drawing.Point(14, 14);
     this.kchkDisplayOnGraph.Name        = "kchkDisplayOnGraph";
     this.kchkDisplayOnGraph.Size        = new System.Drawing.Size(117, 20);
     this.kchkDisplayOnGraph.TabIndex    = 3;
     this.kchkDisplayOnGraph.Values.Text = "Di&splay on Graph";
     //
     // kchkOffset
     //
     this.kchkOffset.Location    = new System.Drawing.Point(14, 15);
     this.kchkOffset.Name        = "kchkOffset";
     this.kchkOffset.Size        = new System.Drawing.Size(56, 20);
     this.kchkOffset.TabIndex    = 3;
     this.kchkOffset.Values.Text = "Offs&et";
     //
     // kchkMultiplier
     //
     this.kchkMultiplier.Location    = new System.Drawing.Point(76, 15);
     this.kchkMultiplier.Name        = "kchkMultiplier";
     this.kchkMultiplier.Size        = new System.Drawing.Size(76, 20);
     this.kchkMultiplier.TabIndex    = 4;
     this.kchkMultiplier.Values.Text = "&Multiplier";
     //
     // kchkGrid
     //
     this.kchkGrid.Location    = new System.Drawing.Point(158, 15);
     this.kchkGrid.Name        = "kchkGrid";
     this.kchkGrid.Size        = new System.Drawing.Size(47, 20);
     this.kchkGrid.TabIndex    = 5;
     this.kchkGrid.Values.Text = "G&rid";
     //
     // kbtnTightenLayout
     //
     this.kbtnTightenLayout.Location    = new System.Drawing.Point(319, 336);
     this.kbtnTightenLayout.Name        = "kbtnTightenLayout";
     this.kbtnTightenLayout.Size        = new System.Drawing.Size(154, 25);
     this.kbtnTightenLayout.TabIndex    = 9;
     this.kbtnTightenLayout.Values.Text = "Ti&ghten Layout";
     this.kbtnTightenLayout.Click      += new System.EventHandler(this.kbtnTightenLayout_Click);
     //
     // klbPlotObjects
     //
     this.klbPlotObjects.Location              = new System.Drawing.Point(12, 15);
     this.klbPlotObjects.Name                  = "klbPlotObjects";
     this.klbPlotObjects.Size                  = new System.Drawing.Size(279, 227);
     this.klbPlotObjects.TabIndex              = 11;
     this.klbPlotObjects.SelectedIndexChanged += new System.EventHandler(this.klbPlotObjects_SelectedIndexChanged);
     //
     // ktxtLabelText
     //
     this.ktxtLabelText.Hint     = "Label text...";
     this.ktxtLabelText.Location = new System.Drawing.Point(12, 12);
     this.ktxtLabelText.Name     = "ktxtLabelText";
     this.ktxtLabelText.Size     = new System.Drawing.Size(249, 23);
     this.ktxtLabelText.TabIndex = 0;
     //
     // kbtnCopyCSV
     //
     this.kbtnCopyCSV.Location    = new System.Drawing.Point(12, 13);
     this.kbtnCopyCSV.Name        = "kbtnCopyCSV";
     this.kbtnCopyCSV.Size        = new System.Drawing.Size(90, 25);
     this.kbtnCopyCSV.TabIndex    = 0;
     this.kbtnCopyCSV.Values.Text = "C&opy CSV";
     this.kbtnCopyCSV.Click      += new System.EventHandler(this.kbtnCopyCSV_Click);
     //
     // kbtnSaveCSV
     //
     this.kbtnSaveCSV.Location    = new System.Drawing.Point(108, 13);
     this.kbtnSaveCSV.Name        = "kbtnSaveCSV";
     this.kbtnSaveCSV.Size        = new System.Drawing.Size(90, 25);
     this.kbtnSaveCSV.TabIndex    = 1;
     this.kbtnSaveCSV.Values.Text = "&Save CSV";
     this.kbtnSaveCSV.Click      += new System.EventHandler(this.kbtnSaveCSV_Click);
     //
     // SettingsWindow
     //
     this.ClientSize = new System.Drawing.Size(1000, 509);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.kryptonPanel2);
     this.Controls.Add(this.kryptonPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "SettingsWindow";
     this.ShowIcon        = false;
     this.ShowInTaskbar   = false;
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
     this.kryptonPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).EndInit();
     this.kryptonPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox1.Panel)).EndInit();
     this.kryptonGroupBox1.Panel.ResumeLayout(false);
     this.kryptonGroupBox1.Panel.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox1)).EndInit();
     this.kryptonGroupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox2.Panel)).EndInit();
     this.kryptonGroupBox2.Panel.ResumeLayout(false);
     this.kryptonGroupBox2.Panel.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox2)).EndInit();
     this.kryptonGroupBox2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox3.Panel)).EndInit();
     this.kryptonGroupBox3.Panel.ResumeLayout(false);
     this.kryptonGroupBox3.Panel.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox3)).EndInit();
     this.kryptonGroupBox3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox4.Panel)).EndInit();
     this.kryptonGroupBox4.Panel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox4)).EndInit();
     this.kryptonGroupBox4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox5.Panel)).EndInit();
     this.kryptonGroupBox5.Panel.ResumeLayout(false);
     this.kryptonGroupBox5.Panel.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox5)).EndInit();
     this.kryptonGroupBox5.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox6.Panel)).EndInit();
     this.kryptonGroupBox6.Panel.ResumeLayout(false);
     this.kryptonGroupBox6.Panel.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox6)).EndInit();
     this.kryptonGroupBox6.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox7.Panel)).EndInit();
     this.kryptonGroupBox7.Panel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox7)).EndInit();
     this.kryptonGroupBox7.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox8.Panel)).EndInit();
     this.kryptonGroupBox8.Panel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox8)).EndInit();
     this.kryptonGroupBox8.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox9.Panel)).EndInit();
     this.kryptonGroupBox9.Panel.ResumeLayout(false);
     this.kryptonGroupBox9.Panel.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox9)).EndInit();
     this.kryptonGroupBox9.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kcmbColourStyle)).EndInit();
     this.ResumeLayout(false);
 }
示例#23
0
 private void InitializeComponent()
 {
     this.kryptonPanel1    = new Krypton.Toolkit.KryptonPanel();
     this.kbtnCancel       = new Krypton.Toolkit.KryptonButton();
     this.kbtnOk           = new Krypton.Toolkit.KryptonButton();
     this.kryptonComboBox2 = new Krypton.Toolkit.KryptonComboBox();
     this.kcmbFileType     = new Krypton.Toolkit.KryptonComboBox();
     this.kryptonLabel5    = new Krypton.Toolkit.KryptonLabel();
     this.kryptonLabel4    = new Krypton.Toolkit.KryptonLabel();
     this.kryptonLabel3    = new Krypton.Toolkit.KryptonLabel();
     this.kryptonLabel2    = new Krypton.Toolkit.KryptonLabel();
     this.ktxtFileName     = new Krypton.Toolkit.KryptonTextBox();
     this.kryptonListBox2  = new Krypton.Toolkit.KryptonListBox();
     this.kryptonListBox1  = new Krypton.Toolkit.KryptonListBox();
     this.kryptonLabel1    = new Krypton.Toolkit.KryptonLabel();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonComboBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kcmbFileType)).BeginInit();
     this.SuspendLayout();
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.kbtnCancel);
     this.kryptonPanel1.Controls.Add(this.kbtnOk);
     this.kryptonPanel1.Controls.Add(this.kryptonComboBox2);
     this.kryptonPanel1.Controls.Add(this.kcmbFileType);
     this.kryptonPanel1.Controls.Add(this.kryptonLabel5);
     this.kryptonPanel1.Controls.Add(this.kryptonLabel4);
     this.kryptonPanel1.Controls.Add(this.kryptonLabel3);
     this.kryptonPanel1.Controls.Add(this.kryptonLabel2);
     this.kryptonPanel1.Controls.Add(this.ktxtFileName);
     this.kryptonPanel1.Controls.Add(this.kryptonListBox2);
     this.kryptonPanel1.Controls.Add(this.kryptonListBox1);
     this.kryptonPanel1.Controls.Add(this.kryptonLabel1);
     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(449, 292);
     this.kryptonPanel1.TabIndex = 0;
     //
     // kbtnCancel
     //
     this.kbtnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.kbtnCancel.Location     = new System.Drawing.Point(347, 43);
     this.kbtnCancel.Name         = "kbtnCancel";
     this.kbtnCancel.Size         = new System.Drawing.Size(90, 25);
     this.kbtnCancel.TabIndex     = 10;
     this.kbtnCancel.Values.Text  = "&Cancel";
     this.kbtnCancel.Click       += new System.EventHandler(this.kbtnCancel_Click);
     //
     // kbtnOk
     //
     this.kbtnOk.Location    = new System.Drawing.Point(347, 12);
     this.kbtnOk.Name        = "kbtnOk";
     this.kbtnOk.Size        = new System.Drawing.Size(90, 25);
     this.kbtnOk.TabIndex    = 1;
     this.kbtnOk.Values.Text = "&OK";
     this.kbtnOk.Click      += new System.EventHandler(this.kbtnOk_Click);
     //
     // kryptonComboBox2
     //
     this.kryptonComboBox2.DrawMode       = System.Windows.Forms.DrawMode.OwnerDrawVariable;
     this.kryptonComboBox2.DropDownWidth  = 162;
     this.kryptonComboBox2.IntegralHeight = false;
     this.kryptonComboBox2.Location       = new System.Drawing.Point(180, 254);
     this.kryptonComboBox2.Name           = "kryptonComboBox2";
     this.kryptonComboBox2.Size           = new System.Drawing.Size(162, 21);
     this.kryptonComboBox2.StateCommon.ComboBox.Content.TextH = Krypton.Toolkit.PaletteRelativeAlign.Near;
     this.kryptonComboBox2.TabIndex = 9;
     this.kryptonComboBox2.Text     = "kryptonComboBox2";
     //
     // kcmbFileType
     //
     this.kcmbFileType.DrawMode       = System.Windows.Forms.DrawMode.OwnerDrawVariable;
     this.kcmbFileType.DropDownStyle  = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.kcmbFileType.DropDownWidth  = 162;
     this.kcmbFileType.IntegralHeight = false;
     this.kcmbFileType.Location       = new System.Drawing.Point(12, 255);
     this.kcmbFileType.Name           = "kcmbFileType";
     this.kcmbFileType.Size           = new System.Drawing.Size(162, 21);
     this.kcmbFileType.StateCommon.ComboBox.Content.TextH = Krypton.Toolkit.PaletteRelativeAlign.Near;
     this.kcmbFileType.TabIndex = 8;
     //
     // kryptonLabel5
     //
     this.kryptonLabel5.Location    = new System.Drawing.Point(12, 228);
     this.kryptonLabel5.Name        = "kryptonLabel5";
     this.kryptonLabel5.Size        = new System.Drawing.Size(103, 20);
     this.kryptonLabel5.TabIndex    = 7;
     this.kryptonLabel5.Values.Text = "List Files of &Type:";
     //
     // kryptonLabel4
     //
     this.kryptonLabel4.Location    = new System.Drawing.Point(180, 228);
     this.kryptonLabel4.Name        = "kryptonLabel4";
     this.kryptonLabel4.Size        = new System.Drawing.Size(47, 20);
     this.kryptonLabel4.TabIndex    = 6;
     this.kryptonLabel4.Values.Text = "Dri&ves:";
     //
     // kryptonLabel3
     //
     this.kryptonLabel3.Location    = new System.Drawing.Point(180, 41);
     this.kryptonLabel3.Name        = "kryptonLabel3";
     this.kryptonLabel3.Size        = new System.Drawing.Size(25, 20);
     this.kryptonLabel3.TabIndex    = 5;
     this.kryptonLabel3.Values.Text = "{0}";
     //
     // kryptonLabel2
     //
     this.kryptonLabel2.Location    = new System.Drawing.Point(180, 12);
     this.kryptonLabel2.Name        = "kryptonLabel2";
     this.kryptonLabel2.Size        = new System.Drawing.Size(72, 20);
     this.kryptonLabel2.TabIndex    = 4;
     this.kryptonLabel2.Values.Text = "&Directories:";
     //
     // ktxtFileName
     //
     this.ktxtFileName.Hint     = "File name...";
     this.ktxtFileName.Location = new System.Drawing.Point(12, 38);
     this.ktxtFileName.Name     = "ktxtFileName";
     this.ktxtFileName.Size     = new System.Drawing.Size(162, 23);
     this.ktxtFileName.TabIndex = 3;
     //
     // kryptonListBox2
     //
     this.kryptonListBox2.Location = new System.Drawing.Point(180, 67);
     this.kryptonListBox2.Name     = "kryptonListBox2";
     this.kryptonListBox2.Size     = new System.Drawing.Size(162, 155);
     this.kryptonListBox2.TabIndex = 2;
     //
     // kryptonListBox1
     //
     this.kryptonListBox1.Location = new System.Drawing.Point(12, 67);
     this.kryptonListBox1.Name     = "kryptonListBox1";
     this.kryptonListBox1.Size     = new System.Drawing.Size(162, 155);
     this.kryptonListBox1.TabIndex = 1;
     //
     // kryptonLabel1
     //
     this.kryptonLabel1.Location    = new System.Drawing.Point(12, 12);
     this.kryptonLabel1.Name        = "kryptonLabel1";
     this.kryptonLabel1.Size        = new System.Drawing.Size(68, 20);
     this.kryptonLabel1.TabIndex    = 0;
     this.kryptonLabel1.Values.Text = "File &Name:";
     //
     // KryptonWindowsThreeOpenFileDialog
     //
     this.AcceptButton = this.kbtnOk;
     this.CancelButton = this.kbtnCancel;
     this.ClientSize   = new System.Drawing.Size(449, 292);
     this.Controls.Add(this.kryptonPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "KryptonWindowsThreeOpenFileDialog";
     this.ShowIcon        = false;
     this.ShowInTaskbar   = false;
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
     this.kryptonPanel1.ResumeLayout(false);
     this.kryptonPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonComboBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.kcmbFileType)).EndInit();
     this.ResumeLayout(false);
 }
示例#24
0
 private void InitializeComponent()
 {
     this.kryptonPanel1       = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kbtnAccept          = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kbtnCancel          = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.statusStrip1        = new System.Windows.Forms.StatusStrip();
     this.tslStatus           = new System.Windows.Forms.ToolStripStatusLabel();
     this.kryptonPanel2       = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.tsMenu              = new System.Windows.Forms.ToolStrip();
     this.tsbImport           = new System.Windows.Forms.ToolStripButton();
     this.tsbExport           = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.tsbBold             = new System.Windows.Forms.ToolStripButton();
     this.tsbItalic           = new System.Windows.Forms.ToolStripButton();
     this.tsbUnderline        = new System.Windows.Forms.ToolStripButton();
     this.tsbStrikethrough    = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.tscmbTextSize       = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.tsbProperties       = new System.Windows.Forms.ToolStripButton();
     this.kryptonPanel3       = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kptxtTypefaceFilter = new ExtendedControls.ExtendedToolkit.Controls.KryptonPromptTextBox();
     this.ktxtSampleText      = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this.klstTypefaces       = new ComponentFactory.Krypton.Toolkit.KryptonListBox();
     this.panel1              = new System.Windows.Forms.Panel();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     this.statusStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).BeginInit();
     this.kryptonPanel2.SuspendLayout();
     this.tsMenu.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel3)).BeginInit();
     this.kryptonPanel3.SuspendLayout();
     this.SuspendLayout();
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.kbtnAccept);
     this.kryptonPanel1.Controls.Add(this.kbtnCancel);
     this.kryptonPanel1.Controls.Add(this.statusStrip1);
     this.kryptonPanel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.kryptonPanel1.Location = new System.Drawing.Point(0, 742);
     this.kryptonPanel1.Name     = "kryptonPanel1";
     this.kryptonPanel1.Size     = new System.Drawing.Size(1115, 77);
     this.kryptonPanel1.TabIndex = 0;
     //
     // kbtnAccept
     //
     this.kbtnAccept.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.kbtnAccept.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.kbtnAccept.Location     = new System.Drawing.Point(863, 16);
     this.kbtnAccept.Name         = "kbtnAccept";
     this.kbtnAccept.Size         = new System.Drawing.Size(144, 26);
     this.kbtnAccept.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnAccept.TabIndex    = 6;
     this.kbtnAccept.Values.Text = "&Use Typeface";
     //
     // kbtnCancel
     //
     this.kbtnCancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.kbtnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.kbtnCancel.Location     = new System.Drawing.Point(1013, 16);
     this.kbtnCancel.Name         = "kbtnCancel";
     this.kbtnCancel.Size         = new System.Drawing.Size(90, 26);
     this.kbtnCancel.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnCancel.TabIndex    = 5;
     this.kbtnCancel.Values.Text = "C&ancel";
     //
     // statusStrip1
     //
     this.statusStrip1.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.tslStatus
     });
     this.statusStrip1.Location   = new System.Drawing.Point(0, 55);
     this.statusStrip1.Name       = "statusStrip1";
     this.statusStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.ManagerRenderMode;
     this.statusStrip1.Size       = new System.Drawing.Size(1115, 22);
     this.statusStrip1.TabIndex   = 0;
     this.statusStrip1.Text       = "statusStrip1";
     //
     // tslStatus
     //
     this.tslStatus.Name      = "tslStatus";
     this.tslStatus.Size      = new System.Drawing.Size(1100, 17);
     this.tslStatus.Spring    = true;
     this.tslStatus.Text      = "Ready";
     this.tslStatus.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // kryptonPanel2
     //
     this.kryptonPanel2.Controls.Add(this.tsMenu);
     this.kryptonPanel2.Dock     = System.Windows.Forms.DockStyle.Top;
     this.kryptonPanel2.Location = new System.Drawing.Point(0, 0);
     this.kryptonPanel2.Name     = "kryptonPanel2";
     this.kryptonPanel2.Size     = new System.Drawing.Size(1115, 25);
     this.kryptonPanel2.TabIndex = 1;
     //
     // tsMenu
     //
     this.tsMenu.Dock      = System.Windows.Forms.DockStyle.None;
     this.tsMenu.Font      = new System.Drawing.Font("Segoe UI", 9F);
     this.tsMenu.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.tsMenu.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.tsbImport,
         this.tsbExport,
         this.toolStripSeparator1,
         this.tsbBold,
         this.tsbItalic,
         this.tsbUnderline,
         this.tsbStrikethrough,
         this.toolStripSeparator2,
         this.tscmbTextSize,
         this.toolStripSeparator3,
         this.tsbProperties
     });
     this.tsMenu.Location = new System.Drawing.Point(0, 0);
     this.tsMenu.Name     = "tsMenu";
     this.tsMenu.Size     = new System.Drawing.Size(265, 25);
     this.tsMenu.TabIndex = 0;
     this.tsMenu.Text     = "toolStrip1";
     this.tsMenu.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tsMenu_KeyDown);
     //
     // tsbImport
     //
     this.tsbImport.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.tsbImport.Image                 = global::ExtendedControls.Properties.Resources.Open_File_16_x_16;
     this.tsbImport.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsbImport.Name   = "tsbImport";
     this.tsbImport.Size   = new System.Drawing.Size(23, 22);
     this.tsbImport.Text   = "toolStripButton1";
     this.tsbImport.Click += new System.EventHandler(this.tsbImport_Click);
     //
     // tsbExport
     //
     this.tsbExport.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.tsbExport.Image                 = global::ExtendedControls.Properties.Resources.Export_To_Document;
     this.tsbExport.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsbExport.Name   = "tsbExport";
     this.tsbExport.Size   = new System.Drawing.Size(23, 22);
     this.tsbExport.Text   = "toolStripButton2";
     this.tsbExport.Click += new System.EventHandler(this.tsbExport_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25);
     //
     // tsbBold
     //
     this.tsbBold.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.tsbBold.Image                 = global::ExtendedControls.Properties.Resources.text_bold;
     this.tsbBold.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsbBold.Name            = "tsbBold";
     this.tsbBold.Size            = new System.Drawing.Size(23, 22);
     this.tsbBold.Text            = "toolStripButton3";
     this.tsbBold.CheckedChanged += new System.EventHandler(this.tsbBold_CheckedChanged);
     //
     // tsbItalic
     //
     this.tsbItalic.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.tsbItalic.Image                 = global::ExtendedControls.Properties.Resources.text_italic;
     this.tsbItalic.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsbItalic.Name            = "tsbItalic";
     this.tsbItalic.Size            = new System.Drawing.Size(23, 22);
     this.tsbItalic.Text            = "toolStripButton4";
     this.tsbItalic.CheckedChanged += new System.EventHandler(this.tsbItalic_CheckedChanged);
     //
     // tsbUnderline
     //
     this.tsbUnderline.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.tsbUnderline.Image                 = global::ExtendedControls.Properties.Resources.text_underline;
     this.tsbUnderline.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsbUnderline.Name            = "tsbUnderline";
     this.tsbUnderline.Size            = new System.Drawing.Size(23, 22);
     this.tsbUnderline.Text            = "toolStripButton5";
     this.tsbUnderline.CheckedChanged += new System.EventHandler(this.tsbUnderline_CheckedChanged);
     //
     // tsbStrikethrough
     //
     this.tsbStrikethrough.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.tsbStrikethrough.Image                 = global::ExtendedControls.Properties.Resources.text_strikethrough;
     this.tsbStrikethrough.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsbStrikethrough.Name            = "tsbStrikethrough";
     this.tsbStrikethrough.Size            = new System.Drawing.Size(23, 22);
     this.tsbStrikethrough.Text            = "toolStripButton6";
     this.tsbStrikethrough.CheckedChanged += new System.EventHandler(this.tsbStrikethrough_CheckedChanged);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(6, 25);
     //
     // tscmbTextSize
     //
     this.tscmbTextSize.AutoSize              = false;
     this.tscmbTextSize.Name                  = "tscmbTextSize";
     this.tscmbTextSize.Size                  = new System.Drawing.Size(50, 23);
     this.tscmbTextSize.SelectedIndexChanged += new System.EventHandler(this.tscmbTextSize_SelectedIndexChanged);
     this.tscmbTextSize.TextChanged          += new System.EventHandler(this.tscmbTextSize_TextChanged);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
     //
     // tsbProperties
     //
     this.tsbProperties.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.tsbProperties.Image                 = global::ExtendedControls.Properties.Resources.text_lowercase;
     this.tsbProperties.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.tsbProperties.Name   = "tsbProperties";
     this.tsbProperties.Size   = new System.Drawing.Size(23, 22);
     this.tsbProperties.Text   = "toolStripButton7";
     this.tsbProperties.Click += new System.EventHandler(this.tsbProperties_Click);
     //
     // kryptonPanel3
     //
     this.kryptonPanel3.Controls.Add(this.kptxtTypefaceFilter);
     this.kryptonPanel3.Controls.Add(this.ktxtSampleText);
     this.kryptonPanel3.Controls.Add(this.klstTypefaces);
     this.kryptonPanel3.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.kryptonPanel3.Location = new System.Drawing.Point(0, 25);
     this.kryptonPanel3.Name     = "kryptonPanel3";
     this.kryptonPanel3.Size     = new System.Drawing.Size(1115, 717);
     this.kryptonPanel3.TabIndex = 0;
     //
     // kptxtTypefaceFilter
     //
     this.kptxtTypefaceFilter.DrawPrompt       = true;
     this.kptxtTypefaceFilter.FocusSelect      = true;
     this.kptxtTypefaceFilter.Font             = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kptxtTypefaceFilter.Location         = new System.Drawing.Point(12, 6);
     this.kptxtTypefaceFilter.Name             = "kptxtTypefaceFilter";
     this.kptxtTypefaceFilter.PromptForeColour = System.Drawing.SystemColors.GrayText;
     this.kptxtTypefaceFilter.PromptText       = "Filter typefaces";
     this.kptxtTypefaceFilter.PromptTypeface   = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kptxtTypefaceFilter.Size             = new System.Drawing.Size(333, 29);
     this.kptxtTypefaceFilter.TabIndex         = 2;
     this.kptxtTypefaceFilter.Click           += new System.EventHandler(this.kptxtTypefaceFilter_Click);
     this.kptxtTypefaceFilter.TextChanged     += new System.EventHandler(this.kptxtTypefaceFilter_TextChanged);
     this.kptxtTypefaceFilter.Enter           += new System.EventHandler(this.kptxtTypefaceFilter_Enter);
     this.kptxtTypefaceFilter.KeyDown         += new System.Windows.Forms.KeyEventHandler(this.kptxtTypefaceFilter_KeyDown);
     //
     // ktxtSampleText
     //
     this.ktxtSampleText.Location  = new System.Drawing.Point(351, 6);
     this.ktxtSampleText.Multiline = true;
     this.ktxtSampleText.Name      = "ktxtSampleText";
     this.ktxtSampleText.ReadOnly  = true;
     this.ktxtSampleText.Size      = new System.Drawing.Size(752, 702);
     this.ktxtSampleText.TabIndex  = 1;
     this.ktxtSampleText.Text      = "ABCDEFGHIJKLMNOPQRSTUVWXYZ\r\nabcdefghijklmnopqrstuvwxyz\r\n1234567890\r\n\r\n/\\|!?%$&()[" +
                                     "]{}<>+-~=*@;:,._\r\n\r\nLorem ipsum dolor sit amet";
     this.ktxtSampleText.KeyDown  += new System.Windows.Forms.KeyEventHandler(this.ktxtSampleText_KeyDown);
     this.ktxtSampleText.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.ktxtSampleText_KeyPress);
     //
     // klstTypefaces
     //
     this.klstTypefaces.Location              = new System.Drawing.Point(12, 41);
     this.klstTypefaces.Name                  = "klstTypefaces";
     this.klstTypefaces.Size                  = new System.Drawing.Size(333, 667);
     this.klstTypefaces.TabIndex              = 0;
     this.klstTypefaces.SelectedIndexChanged += new System.EventHandler(this.klstTypefaces_SelectedIndexChanged);
     this.klstTypefaces.KeyDown              += new System.Windows.Forms.KeyEventHandler(this.klstTypefaces_KeyDown);
     this.klstTypefaces.KeyPress             += new System.Windows.Forms.KeyPressEventHandler(this.klstTypefaces_KeyPress);
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.SystemColors.ControlDarkDark;
     this.panel1.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Location  = new System.Drawing.Point(0, 739);
     this.panel1.Name      = "panel1";
     this.panel1.Size      = new System.Drawing.Size(1115, 3);
     this.panel1.TabIndex  = 2;
     //
     // TypefaceSelector
     //
     this.AcceptButton = this.kbtnAccept;
     this.ClientSize   = new System.Drawing.Size(1115, 819);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.kryptonPanel3);
     this.Controls.Add(this.kryptonPanel2);
     this.Controls.Add(this.kryptonPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "TypefaceSelector";
     this.ShowIcon        = false;
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Select Typeface";
     this.KeyDown        += new System.Windows.Forms.KeyEventHandler(this.TypefaceSelector_KeyDown);
     this.Resize         += new System.EventHandler(this.TypefaceSelector_Resize);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
     this.kryptonPanel1.ResumeLayout(false);
     this.kryptonPanel1.PerformLayout();
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).EndInit();
     this.kryptonPanel2.ResumeLayout(false);
     this.kryptonPanel2.PerformLayout();
     this.tsMenu.ResumeLayout(false);
     this.tsMenu.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel3)).EndInit();
     this.kryptonPanel3.ResumeLayout(false);
     this.kryptonPanel3.PerformLayout();
     this.ResumeLayout(false);
 }
示例#25
0
 private void InitializeComponent()
 {
     this.statusStrip1               = new System.Windows.Forms.StatusStrip();
     this.tsslCurrentStatus          = new System.Windows.Forms.ToolStripStatusLabel();
     this.tspCopyProgress            = new System.Windows.Forms.ToolStripProgressBar();
     this.kryptonPanel1              = new Krypton.Toolkit.KryptonPanel();
     this.kryptonGroupBox1           = new Krypton.Toolkit.KryptonGroupBox();
     this.ktxtProjectPath            = new Krypton.Toolkit.KryptonTextBox();
     this.klbProjectFiles            = new Krypton.Toolkit.KryptonListBox();
     this.kryptonLabel1              = new Krypton.Toolkit.KryptonLabel();
     this.kbtnBrowseProjectDirectory = new Krypton.Toolkit.KryptonButton();
     this.kbtnClose                 = new Krypton.Toolkit.KryptonButton();
     this.kgbStageThree             = new Krypton.Toolkit.KryptonGroupBox();
     this.kgbStageTwo               = new Krypton.Toolkit.KryptonGroupBox();
     this.kbtnVarifyBackup          = new Krypton.Toolkit.KryptonButton();
     this.kbtnBackupProject         = new Krypton.Toolkit.KryptonButton();
     this.kchkCompressBackup        = new Krypton.Toolkit.KryptonCheckBox();
     this.kbtnBrowseBackupDirectory = new Krypton.Toolkit.KryptonButton();
     this.ktxtBackupDirectory       = new Krypton.Toolkit.KryptonTextBox();
     this.kryptonLabel2             = new Krypton.Toolkit.KryptonLabel();
     this.statusStrip1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox1.Panel)).BeginInit();
     this.kryptonGroupBox1.Panel.SuspendLayout();
     this.kryptonGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kgbStageThree)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kgbStageThree.Panel)).BeginInit();
     this.kgbStageThree.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kgbStageTwo)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kgbStageTwo.Panel)).BeginInit();
     this.kgbStageTwo.Panel.SuspendLayout();
     this.kgbStageTwo.SuspendLayout();
     this.SuspendLayout();
     //
     // statusStrip1
     //
     this.statusStrip1.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.statusStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.tsslCurrentStatus,
         this.tspCopyProgress
     });
     this.statusStrip1.Location   = new System.Drawing.Point(0, 453);
     this.statusStrip1.Name       = "statusStrip1";
     this.statusStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.ManagerRenderMode;
     this.statusStrip1.Size       = new System.Drawing.Size(1133, 22);
     this.statusStrip1.TabIndex   = 0;
     this.statusStrip1.Text       = "statusStrip1";
     //
     // tsslCurrentStatus
     //
     this.tsslCurrentStatus.Name      = "tsslCurrentStatus";
     this.tsslCurrentStatus.Size      = new System.Drawing.Size(985, 17);
     this.tsslCurrentStatus.Spring    = true;
     this.tsslCurrentStatus.Text      = "Ready";
     this.tsslCurrentStatus.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // tspCopyProgress
     //
     this.tspCopyProgress.Name    = "tspCopyProgress";
     this.tspCopyProgress.Size    = new System.Drawing.Size(100, 16);
     this.tspCopyProgress.Visible = false;
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.kryptonGroupBox1);
     this.kryptonPanel1.Controls.Add(this.kbtnClose);
     this.kryptonPanel1.Controls.Add(this.kgbStageThree);
     this.kryptonPanel1.Controls.Add(this.kgbStageTwo);
     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(1133, 453);
     this.kryptonPanel1.TabIndex = 1;
     //
     // kryptonGroupBox1
     //
     this.kryptonGroupBox1.Location = new System.Drawing.Point(17, 12);
     this.kryptonGroupBox1.Name     = "kryptonGroupBox1";
     //
     // kryptonGroupBox1.Panel
     //
     this.kryptonGroupBox1.Panel.Controls.Add(this.ktxtProjectPath);
     this.kryptonGroupBox1.Panel.Controls.Add(this.klbProjectFiles);
     this.kryptonGroupBox1.Panel.Controls.Add(this.kryptonLabel1);
     this.kryptonGroupBox1.Panel.Controls.Add(this.kbtnBrowseProjectDirectory);
     this.kryptonGroupBox1.Size = new System.Drawing.Size(411, 426);
     this.kryptonGroupBox1.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonGroupBox1.TabIndex       = 12;
     this.kryptonGroupBox1.Values.Heading = "Step 1: Locate Project Files";
     //
     // ktxtProjectPath
     //
     this.ktxtProjectPath.Location = new System.Drawing.Point(17, 44);
     this.ktxtProjectPath.Name     = "ktxtProjectPath";
     this.ktxtProjectPath.Size     = new System.Drawing.Size(341, 26);
     this.ktxtProjectPath.StateCommon.Content.Font  = new System.Drawing.Font("Arial Narrow", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ktxtProjectPath.StateCommon.Content.TextH = Krypton.Toolkit.PaletteRelativeAlign.Inherit;
     this.ktxtProjectPath.TabIndex     = 7;
     this.ktxtProjectPath.TextChanged += new System.EventHandler(this.ktxtProjectPath_TextChanged);
     //
     // klbProjectFiles
     //
     this.klbProjectFiles.Location = new System.Drawing.Point(17, 76);
     this.klbProjectFiles.Name     = "klbProjectFiles";
     this.klbProjectFiles.Size     = new System.Drawing.Size(378, 306);
     this.klbProjectFiles.StateCommon.Item.Content.ShortText.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.klbProjectFiles.TabIndex    = 5;
     this.klbProjectFiles.MouseEnter += new System.EventHandler(this.klbProjectFiles_MouseEnter);
     this.klbProjectFiles.MouseHover += new System.EventHandler(this.klbProjectFiles_MouseHover);
     //
     // kryptonLabel1
     //
     this.kryptonLabel1.Location = new System.Drawing.Point(133, 16);
     this.kryptonLabel1.Name     = "kryptonLabel1";
     this.kryptonLabel1.Size     = new System.Drawing.Size(115, 22);
     this.kryptonLabel1.StateCommon.ShortText.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel1.TabIndex    = 2;
     this.kryptonLabel1.Values.Text = "Project Files:";
     //
     // kbtnBrowseProjectDirectory
     //
     this.kbtnBrowseProjectDirectory.Location = new System.Drawing.Point(364, 44);
     this.kbtnBrowseProjectDirectory.Name     = "kbtnBrowseProjectDirectory";
     this.kbtnBrowseProjectDirectory.Size     = new System.Drawing.Size(31, 26);
     this.kbtnBrowseProjectDirectory.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnBrowseProjectDirectory.TabIndex    = 4;
     this.kbtnBrowseProjectDirectory.Values.Text = "..&.";
     this.kbtnBrowseProjectDirectory.Click      += new System.EventHandler(this.kbtnBrowseProjectDirectory_Click);
     //
     // kbtnClose
     //
     this.kbtnClose.Enabled  = false;
     this.kbtnClose.Location = new System.Drawing.Point(1025, 308);
     this.kbtnClose.Name     = "kbtnClose";
     this.kbtnClose.Size     = new System.Drawing.Size(96, 26);
     this.kbtnClose.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnClose.TabIndex    = 11;
     this.kbtnClose.Values.Text = "&Close";
     //
     // kgbStageThree
     //
     this.kgbStageThree.Enabled  = false;
     this.kgbStageThree.Location = new System.Drawing.Point(445, 151);
     this.kgbStageThree.Name     = "kgbStageThree";
     this.kgbStageThree.Size     = new System.Drawing.Size(676, 111);
     this.kgbStageThree.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kgbStageThree.TabIndex       = 6;
     this.kgbStageThree.Values.Heading = "Step 2: Migrate Project";
     //
     // kgbStageTwo
     //
     this.kgbStageTwo.Enabled  = false;
     this.kgbStageTwo.Location = new System.Drawing.Point(445, 12);
     this.kgbStageTwo.Name     = "kgbStageTwo";
     //
     // kgbStageTwo.Panel
     //
     this.kgbStageTwo.Panel.Controls.Add(this.kbtnVarifyBackup);
     this.kgbStageTwo.Panel.Controls.Add(this.kbtnBackupProject);
     this.kgbStageTwo.Panel.Controls.Add(this.kchkCompressBackup);
     this.kgbStageTwo.Panel.Controls.Add(this.kbtnBrowseBackupDirectory);
     this.kgbStageTwo.Panel.Controls.Add(this.ktxtBackupDirectory);
     this.kgbStageTwo.Panel.Controls.Add(this.kryptonLabel2);
     this.kgbStageTwo.Size = new System.Drawing.Size(676, 111);
     this.kgbStageTwo.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kgbStageTwo.TabIndex       = 5;
     this.kgbStageTwo.Values.Heading = "Step 2: Backup Project";
     //
     // kbtnVarifyBackup
     //
     this.kbtnVarifyBackup.Enabled  = false;
     this.kbtnVarifyBackup.Location = new System.Drawing.Point(455, 46);
     this.kbtnVarifyBackup.Name     = "kbtnVarifyBackup";
     this.kbtnVarifyBackup.Size     = new System.Drawing.Size(184, 26);
     this.kbtnVarifyBackup.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnVarifyBackup.TabIndex    = 10;
     this.kbtnVarifyBackup.Values.Text = "V&erify Backup";
     //
     // kbtnBackupProject
     //
     this.kbtnBackupProject.Enabled  = false;
     this.kbtnBackupProject.Location = new System.Drawing.Point(250, 46);
     this.kbtnBackupProject.Name     = "kbtnBackupProject";
     this.kbtnBackupProject.Size     = new System.Drawing.Size(184, 26);
     this.kbtnBackupProject.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnBackupProject.TabIndex    = 9;
     this.kbtnBackupProject.Values.Text = "&Backup Project";
     this.kbtnBackupProject.Click      += new System.EventHandler(this.kbtnBackupProject_Click);
     //
     // kchkCompressBackup
     //
     this.kchkCompressBackup.Location = new System.Drawing.Point(57, 50);
     this.kchkCompressBackup.Name     = "kchkCompressBackup";
     this.kchkCompressBackup.Size     = new System.Drawing.Size(159, 22);
     this.kchkCompressBackup.StateCommon.ShortText.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kchkCompressBackup.TabIndex    = 8;
     this.kchkCompressBackup.Values.Text = "&Compress Backup";
     //
     // kbtnBrowseBackupDirectory
     //
     this.kbtnBrowseBackupDirectory.Location = new System.Drawing.Point(630, 11);
     this.kbtnBrowseBackupDirectory.Name     = "kbtnBrowseBackupDirectory";
     this.kbtnBrowseBackupDirectory.Size     = new System.Drawing.Size(31, 26);
     this.kbtnBrowseBackupDirectory.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnBrowseBackupDirectory.TabIndex    = 7;
     this.kbtnBrowseBackupDirectory.Values.Text = "..&.";
     this.kbtnBrowseBackupDirectory.Click      += new System.EventHandler(this.KbtnBrowseBackupDirectory_Click);
     //
     // ktxtBackupDirectory
     //
     this.ktxtBackupDirectory.Location = new System.Drawing.Point(182, 11);
     this.ktxtBackupDirectory.Name     = "ktxtBackupDirectory";
     this.ktxtBackupDirectory.Size     = new System.Drawing.Size(442, 26);
     this.ktxtBackupDirectory.StateCommon.Content.Font  = new System.Drawing.Font("Arial Narrow", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ktxtBackupDirectory.StateCommon.Content.TextH = Krypton.Toolkit.PaletteRelativeAlign.Inherit;
     this.ktxtBackupDirectory.TabIndex     = 6;
     this.ktxtBackupDirectory.TextChanged += new System.EventHandler(this.ktxtBackupDirectory_TextChanged);
     //
     // kryptonLabel2
     //
     this.kryptonLabel2.Location = new System.Drawing.Point(22, 13);
     this.kryptonLabel2.Name     = "kryptonLabel2";
     this.kryptonLabel2.Size     = new System.Drawing.Size(154, 22);
     this.kryptonLabel2.StateCommon.ShortText.Font = new System.Drawing.Font("Arial", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel2.TabIndex    = 5;
     this.kryptonLabel2.Values.Text = "Backup Directory:";
     //
     // KryptonMainWindow
     //
     this.ClientSize = new System.Drawing.Size(1133, 475);
     this.Controls.Add(this.kryptonPanel1);
     this.Controls.Add(this.statusStrip1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "KryptonMainWindow";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.statusStrip1.ResumeLayout(false);
     this.statusStrip1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
     this.kryptonPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox1.Panel)).EndInit();
     this.kryptonGroupBox1.Panel.ResumeLayout(false);
     this.kryptonGroupBox1.Panel.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox1)).EndInit();
     this.kryptonGroupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kgbStageThree.Panel)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.kgbStageThree)).EndInit();
     this.kgbStageThree.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kgbStageTwo.Panel)).EndInit();
     this.kgbStageTwo.Panel.ResumeLayout(false);
     this.kgbStageTwo.Panel.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kgbStageTwo)).EndInit();
     this.kgbStageTwo.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 private void InitializeComponent()
 {
     this.components     = new System.ComponentModel.Container();
     this.panel1         = new System.Windows.Forms.Panel();
     this.panel4         = new System.Windows.Forms.Panel();
     this.ktxtDirectory  = new Krypton.Toolkit.KryptonTextBox();
     this.panel3         = new System.Windows.Forms.Panel();
     this.kbtnBrowse     = new Krypton.Toolkit.KryptonButton();
     this.panel2         = new System.Windows.Forms.Panel();
     this.klbFileListing = new Krypton.Toolkit.KryptonListBox();
     this.ctxActions     = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.openInExplorerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem1          = new System.Windows.Forms.ToolStripSeparator();
     this.renameFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem2          = new System.Windows.Forms.ToolStripSeparator();
     this.deleteFileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.panel1.SuspendLayout();
     this.panel4.SuspendLayout();
     this.panel3.SuspendLayout();
     this.panel2.SuspendLayout();
     this.ctxActions.SuspendLayout();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.Transparent;
     this.panel1.Controls.Add(this.panel4);
     this.panel1.Controls.Add(this.panel3);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(268, 24);
     this.panel1.TabIndex = 0;
     //
     // panel4
     //
     this.panel4.BackColor = System.Drawing.Color.Transparent;
     this.panel4.Controls.Add(this.ktxtDirectory);
     this.panel4.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel4.Location = new System.Drawing.Point(0, 0);
     this.panel4.Name     = "panel4";
     this.panel4.Size     = new System.Drawing.Size(224, 24);
     this.panel4.TabIndex = 2;
     //
     // ktxtDirectory
     //
     this.ktxtDirectory.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.ktxtDirectory.Hint         = "Please enter or browse to a directory...";
     this.ktxtDirectory.Location     = new System.Drawing.Point(0, 0);
     this.ktxtDirectory.Name         = "ktxtDirectory";
     this.ktxtDirectory.Size         = new System.Drawing.Size(224, 23);
     this.ktxtDirectory.TabIndex     = 0;
     this.ktxtDirectory.TextChanged += new System.EventHandler(this.ktxtDirectory_TextChanged);
     //
     // panel3
     //
     this.panel3.BackColor = System.Drawing.Color.Transparent;
     this.panel3.Controls.Add(this.kbtnBrowse);
     this.panel3.Dock     = System.Windows.Forms.DockStyle.Right;
     this.panel3.Location = new System.Drawing.Point(224, 0);
     this.panel3.Name     = "panel3";
     this.panel3.Size     = new System.Drawing.Size(44, 24);
     this.panel3.TabIndex = 1;
     //
     // kbtnBrowse
     //
     this.kbtnBrowse.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.kbtnBrowse.Location    = new System.Drawing.Point(0, 0);
     this.kbtnBrowse.Name        = "kbtnBrowse";
     this.kbtnBrowse.Size        = new System.Drawing.Size(44, 24);
     this.kbtnBrowse.TabIndex    = 0;
     this.kbtnBrowse.Values.Text = "&...";
     this.kbtnBrowse.Click      += new System.EventHandler(this.kbtnBrowse_Click);
     //
     // panel2
     //
     this.panel2.BackColor = System.Drawing.Color.Transparent;
     this.panel2.Controls.Add(this.klbFileListing);
     this.panel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(0, 24);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(268, 363);
     this.panel2.TabIndex = 1;
     //
     // klbFileListing
     //
     this.klbFileListing.ContextMenuStrip      = this.ctxActions;
     this.klbFileListing.Dock                  = System.Windows.Forms.DockStyle.Fill;
     this.klbFileListing.Location              = new System.Drawing.Point(0, 0);
     this.klbFileListing.Name                  = "klbFileListing";
     this.klbFileListing.Size                  = new System.Drawing.Size(268, 363);
     this.klbFileListing.TabIndex              = 0;
     this.klbFileListing.SelectedIndexChanged += new System.EventHandler(this.klbFileListing_SelectedIndexChanged);
     //
     // ctxActions
     //
     this.ctxActions.Font = new System.Drawing.Font("Segoe UI", 9F);
     this.ctxActions.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.openInExplorerToolStripMenuItem,
         this.toolStripMenuItem1,
         this.renameFileToolStripMenuItem,
         this.toolStripMenuItem2,
         this.deleteFileToolStripMenuItem
     });
     this.ctxActions.Name = "ctxActions";
     this.ctxActions.Size = new System.Drawing.Size(181, 104);
     //
     // openInExplorerToolStripMenuItem
     //
     this.openInExplorerToolStripMenuItem.Name   = "openInExplorerToolStripMenuItem";
     this.openInExplorerToolStripMenuItem.Size   = new System.Drawing.Size(180, 22);
     this.openInExplorerToolStripMenuItem.Text   = "Open in &Explorer";
     this.openInExplorerToolStripMenuItem.Click += new System.EventHandler(this.openInExplorerToolStripMenuItem_Click);
     //
     // toolStripMenuItem1
     //
     this.toolStripMenuItem1.Name = "toolStripMenuItem1";
     this.toolStripMenuItem1.Size = new System.Drawing.Size(177, 6);
     //
     // renameFileToolStripMenuItem
     //
     this.renameFileToolStripMenuItem.Name = "renameFileToolStripMenuItem";
     this.renameFileToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
     this.renameFileToolStripMenuItem.Text = "&Rename File...";
     //
     // toolStripMenuItem2
     //
     this.toolStripMenuItem2.Name = "toolStripMenuItem2";
     this.toolStripMenuItem2.Size = new System.Drawing.Size(177, 6);
     //
     // deleteFileToolStripMenuItem
     //
     this.deleteFileToolStripMenuItem.Name = "deleteFileToolStripMenuItem";
     this.deleteFileToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
     this.deleteFileToolStripMenuItem.Text = "Delete &File...";
     //
     // KryptonFileListing
     //
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.panel1);
     this.Name = "KryptonFileListing";
     this.Size = new System.Drawing.Size(268, 387);
     this.panel1.ResumeLayout(false);
     this.panel4.ResumeLayout(false);
     this.panel4.PerformLayout();
     this.panel3.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     this.ctxActions.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CustomColours));
     this.kryptonPanel1           = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kbtnUtiliseAsBaseColour = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kbtnOk                           = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kbtnSaveColour                   = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.panel1                           = new System.Windows.Forms.Panel();
     this.kryptonPanel2                    = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.klstCustomColourSelector         = new ComponentFactory.Krypton.Toolkit.KryptonListBox();
     this.pbxColourPreview                 = new System.Windows.Forms.PictureBox();
     this.kcmbNormalTextSystemColours      = new ComponentFactory.Krypton.Toolkit.KryptonComboBox();
     this.kryptonLabel22                   = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kcmbNormalTextColour             = new ComponentFactory.Krypton.Toolkit.KryptonComboBox();
     this.kryptonLabel21                   = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kbtnGenerateNormalTextBlueValue  = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.knumBlueChannelValue             = new ComponentFactory.Krypton.Toolkit.KryptonNumericUpDown();
     this.kryptonLabel4                    = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kbtnGenerateNormalTextGreenValue = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.knumGreenChannelValue            = new ComponentFactory.Krypton.Toolkit.KryptonNumericUpDown();
     this.kryptonLabel3                    = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kbtnGenerateNormalTextRedValue   = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.knumRedChannelValue              = new ComponentFactory.Krypton.Toolkit.KryptonNumericUpDown();
     this.kryptonLabel2                    = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).BeginInit();
     this.kryptonPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pbxColourPreview)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kcmbNormalTextSystemColours)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kcmbNormalTextColour)).BeginInit();
     this.SuspendLayout();
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.kbtnUtiliseAsBaseColour);
     this.kryptonPanel1.Controls.Add(this.kbtnOk);
     this.kryptonPanel1.Controls.Add(this.kbtnSaveColour);
     this.kryptonPanel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.kryptonPanel1.Location = new System.Drawing.Point(0, 338);
     this.kryptonPanel1.Name     = "kryptonPanel1";
     this.kryptonPanel1.Size     = new System.Drawing.Size(1023, 49);
     this.kryptonPanel1.TabIndex = 1;
     //
     // kbtnUtiliseAsBaseColour
     //
     this.kbtnUtiliseAsBaseColour.AutoSize     = true;
     this.kbtnUtiliseAsBaseColour.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.kbtnUtiliseAsBaseColour.Location     = new System.Drawing.Point(183, 7);
     this.kbtnUtiliseAsBaseColour.Name         = "kbtnUtiliseAsBaseColour";
     this.kbtnUtiliseAsBaseColour.Size         = new System.Drawing.Size(167, 30);
     this.kbtnUtiliseAsBaseColour.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnUtiliseAsBaseColour.TabIndex    = 79;
     this.kbtnUtiliseAsBaseColour.Values.Text = "Utilise as Base &Colour";
     this.kbtnUtiliseAsBaseColour.Click      += new System.EventHandler(this.kbtnUtiliseAsBaseColour_Click);
     //
     // kbtnOk
     //
     this.kbtnOk.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.kbtnOk.AutoSize     = true;
     this.kbtnOk.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.kbtnOk.Location     = new System.Drawing.Point(979, 7);
     this.kbtnOk.Name         = "kbtnOk";
     this.kbtnOk.Size         = new System.Drawing.Size(32, 30);
     this.kbtnOk.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnOk.TabIndex    = 77;
     this.kbtnOk.Values.Text = "O&k";
     this.kbtnOk.Click      += new System.EventHandler(this.kbtnOk_Click);
     //
     // kbtnSaveColour
     //
     this.kbtnSaveColour.AutoSize     = true;
     this.kbtnSaveColour.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.kbtnSaveColour.Enabled      = false;
     this.kbtnSaveColour.Location     = new System.Drawing.Point(12, 7);
     this.kbtnSaveColour.Name         = "kbtnSaveColour";
     this.kbtnSaveColour.Size         = new System.Drawing.Size(165, 30);
     this.kbtnSaveColour.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnSaveColour.TabIndex    = 78;
     this.kbtnSaveColour.Values.Text = "Save &Selected Colour";
     this.kbtnSaveColour.Click      += new System.EventHandler(this.kbtnSaveColour_Click);
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
     this.panel1.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Location  = new System.Drawing.Point(0, 336);
     this.panel1.Name      = "panel1";
     this.panel1.Size      = new System.Drawing.Size(1023, 2);
     this.panel1.TabIndex  = 2;
     //
     // kryptonPanel2
     //
     this.kryptonPanel2.Controls.Add(this.klstCustomColourSelector);
     this.kryptonPanel2.Controls.Add(this.pbxColourPreview);
     this.kryptonPanel2.Controls.Add(this.kcmbNormalTextSystemColours);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel22);
     this.kryptonPanel2.Controls.Add(this.kcmbNormalTextColour);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel21);
     this.kryptonPanel2.Controls.Add(this.kbtnGenerateNormalTextBlueValue);
     this.kryptonPanel2.Controls.Add(this.knumBlueChannelValue);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel4);
     this.kryptonPanel2.Controls.Add(this.kbtnGenerateNormalTextGreenValue);
     this.kryptonPanel2.Controls.Add(this.knumGreenChannelValue);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel3);
     this.kryptonPanel2.Controls.Add(this.kbtnGenerateNormalTextRedValue);
     this.kryptonPanel2.Controls.Add(this.knumRedChannelValue);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel2);
     this.kryptonPanel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.kryptonPanel2.Location = new System.Drawing.Point(0, 0);
     this.kryptonPanel2.Name     = "kryptonPanel2";
     this.kryptonPanel2.Size     = new System.Drawing.Size(1023, 336);
     this.kryptonPanel2.TabIndex = 3;
     //
     // klstCustomColourSelector
     //
     this.klstCustomColourSelector.Items.AddRange(new object[] {
         "Alternative Normal Text Colour",
         "Border Colour",
         "Custom Colour Five",
         "Custom Colour Four",
         "Custom Colour One",
         "Custom Colour Three",
         "Custom Colour Two",
         "Custom Text Colour Five",
         "Custom Text Colour Four",
         "Custom Text Colour One",
         "Custom Text Colour Two",
         "Custom TextColour Three",
         "Disabled Control Colour",
         "Disabled Text Colour",
         "Focused Text Colour",
         "Link Hover Text Colour",
         "Link Normal Text Colour",
         "Link Visited Text Colour",
         "Menu Text Colour",
         "Normal Text Colour",
         "Pressed Text Colour",
         "Ribbon Tab Text Colour",
         "Status Text Colour"
     });
     this.klstCustomColourSelector.Location = new System.Drawing.Point(12, 12);
     this.klstCustomColourSelector.Name     = "klstCustomColourSelector";
     this.klstCustomColourSelector.Size     = new System.Drawing.Size(335, 257);
     this.klstCustomColourSelector.Sorted   = true;
     this.klstCustomColourSelector.StateCommon.Item.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.klstCustomColourSelector.TabIndex = 156;
     //
     // pbxColourPreview
     //
     this.pbxColourPreview.BackColor         = System.Drawing.Color.Transparent;
     this.pbxColourPreview.BorderStyle       = System.Windows.Forms.BorderStyle.Fixed3D;
     this.pbxColourPreview.Location          = new System.Drawing.Point(353, 12);
     this.pbxColourPreview.Name              = "pbxColourPreview";
     this.pbxColourPreview.Size              = new System.Drawing.Size(650, 180);
     this.pbxColourPreview.TabIndex          = 155;
     this.pbxColourPreview.TabStop           = false;
     this.pbxColourPreview.BackColorChanged += new System.EventHandler(this.pbxColourPreview_BackColorChanged);
     this.pbxColourPreview.Click            += new System.EventHandler(this.pbxColourPreview_Click);
     this.pbxColourPreview.MouseEnter       += new System.EventHandler(this.pbxColourPreview_MouseEnter);
     //
     // kcmbNormalTextSystemColours
     //
     this.kcmbNormalTextSystemColours.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.kcmbNormalTextSystemColours.DropDownWidth = 173;
     this.kcmbNormalTextSystemColours.Location      = new System.Drawing.Point(830, 215);
     this.kcmbNormalTextSystemColours.Name          = "kcmbNormalTextSystemColours";
     this.kcmbNormalTextSystemColours.Size          = new System.Drawing.Size(173, 27);
     this.kcmbNormalTextSystemColours.StateCommon.ComboBox.Content.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kcmbNormalTextSystemColours.TabIndex              = 154;
     this.kcmbNormalTextSystemColours.SelectedIndexChanged += new System.EventHandler(this.kcmbNormalTextSystemColours_SelectedIndexChanged);
     //
     // kryptonLabel22
     //
     this.kryptonLabel22.Location = new System.Drawing.Point(688, 216);
     this.kryptonLabel22.Name     = "kryptonLabel22";
     this.kryptonLabel22.Size     = new System.Drawing.Size(136, 26);
     this.kryptonLabel22.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel22.TabIndex    = 153;
     this.kryptonLabel22.Values.Text = "System Colours:";
     //
     // kcmbNormalTextColour
     //
     this.kcmbNormalTextColour.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.kcmbNormalTextColour.DropDownWidth = 173;
     this.kcmbNormalTextColour.Location      = new System.Drawing.Point(509, 215);
     this.kcmbNormalTextColour.Name          = "kcmbNormalTextColour";
     this.kcmbNormalTextColour.Size          = new System.Drawing.Size(173, 27);
     this.kcmbNormalTextColour.StateCommon.ComboBox.Content.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kcmbNormalTextColour.TabIndex              = 152;
     this.kcmbNormalTextColour.SelectedIndexChanged += new System.EventHandler(this.kcmbNormalTextColour_SelectedIndexChanged);
     //
     // kryptonLabel21
     //
     this.kryptonLabel21.Location = new System.Drawing.Point(353, 216);
     this.kryptonLabel21.Name     = "kryptonLabel21";
     this.kryptonLabel21.Size     = new System.Drawing.Size(150, 26);
     this.kryptonLabel21.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel21.TabIndex    = 151;
     this.kryptonLabel21.Values.Text = "Standard Colours:";
     //
     // kbtnGenerateNormalTextBlueValue
     //
     this.kbtnGenerateNormalTextBlueValue.AutoSize     = true;
     this.kbtnGenerateNormalTextBlueValue.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.kbtnGenerateNormalTextBlueValue.Location     = new System.Drawing.Point(843, 282);
     this.kbtnGenerateNormalTextBlueValue.Name         = "kbtnGenerateNormalTextBlueValue";
     this.kbtnGenerateNormalTextBlueValue.Size         = new System.Drawing.Size(114, 30);
     this.kbtnGenerateNormalTextBlueValue.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnGenerateNormalTextBlueValue.TabIndex    = 150;
     this.kbtnGenerateNormalTextBlueValue.Values.Text = "Generate &Blue";
     this.kbtnGenerateNormalTextBlueValue.Click      += new System.EventHandler(this.kbtnGenerateNormalTextBlueValue_Click);
     //
     // knumBlueChannelValue
     //
     this.knumBlueChannelValue.Location = new System.Drawing.Point(717, 282);
     this.knumBlueChannelValue.Maximum  = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.knumBlueChannelValue.Name = "knumBlueChannelValue";
     this.knumBlueChannelValue.Size = new System.Drawing.Size(120, 28);
     this.knumBlueChannelValue.StateCommon.Back.Color1    = System.Drawing.Color.Blue;
     this.knumBlueChannelValue.StateCommon.Content.Color1 = System.Drawing.Color.White;
     this.knumBlueChannelValue.StateCommon.Content.Font   = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.knumBlueChannelValue.TabIndex      = 149;
     this.knumBlueChannelValue.ValueChanged += new System.EventHandler(this.knumBlueChannelValue_ValueChanged);
     //
     // kryptonLabel4
     //
     this.kryptonLabel4.Location = new System.Drawing.Point(649, 284);
     this.kryptonLabel4.Name     = "kryptonLabel4";
     this.kryptonLabel4.Size     = new System.Drawing.Size(50, 26);
     this.kryptonLabel4.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel4.TabIndex    = 148;
     this.kryptonLabel4.Values.Text = "Blue:";
     //
     // kbtnGenerateNormalTextGreenValue
     //
     this.kbtnGenerateNormalTextGreenValue.AutoSize     = true;
     this.kbtnGenerateNormalTextGreenValue.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.kbtnGenerateNormalTextGreenValue.Location     = new System.Drawing.Point(517, 284);
     this.kbtnGenerateNormalTextGreenValue.Name         = "kbtnGenerateNormalTextGreenValue";
     this.kbtnGenerateNormalTextGreenValue.Size         = new System.Drawing.Size(126, 30);
     this.kbtnGenerateNormalTextGreenValue.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnGenerateNormalTextGreenValue.TabIndex    = 147;
     this.kbtnGenerateNormalTextGreenValue.Values.Text = "Generate &Green";
     this.kbtnGenerateNormalTextGreenValue.Click      += new System.EventHandler(this.kbtnGenerateNormalTextGreenValue_Click);
     //
     // knumGreenChannelValue
     //
     this.knumGreenChannelValue.Location = new System.Drawing.Point(391, 284);
     this.knumGreenChannelValue.Maximum  = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.knumGreenChannelValue.Name = "knumGreenChannelValue";
     this.knumGreenChannelValue.Size = new System.Drawing.Size(120, 28);
     this.knumGreenChannelValue.StateCommon.Back.Color1  = System.Drawing.Color.Lime;
     this.knumGreenChannelValue.StateCommon.Content.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.knumGreenChannelValue.TabIndex      = 146;
     this.knumGreenChannelValue.ValueChanged += new System.EventHandler(this.knumGreenChannelValue_ValueChanged);
     //
     // kryptonLabel3
     //
     this.kryptonLabel3.Location = new System.Drawing.Point(323, 284);
     this.kryptonLabel3.Name     = "kryptonLabel3";
     this.kryptonLabel3.Size     = new System.Drawing.Size(62, 26);
     this.kryptonLabel3.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel3.TabIndex    = 145;
     this.kryptonLabel3.Values.Text = "Green:";
     //
     // kbtnGenerateNormalTextRedValue
     //
     this.kbtnGenerateNormalTextRedValue.AutoSize     = true;
     this.kbtnGenerateNormalTextRedValue.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.kbtnGenerateNormalTextRedValue.Location     = new System.Drawing.Point(206, 284);
     this.kbtnGenerateNormalTextRedValue.Name         = "kbtnGenerateNormalTextRedValue";
     this.kbtnGenerateNormalTextRedValue.Size         = new System.Drawing.Size(111, 30);
     this.kbtnGenerateNormalTextRedValue.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnGenerateNormalTextRedValue.TabIndex    = 144;
     this.kbtnGenerateNormalTextRedValue.Values.Text = "Generate &Red";
     this.kbtnGenerateNormalTextRedValue.Click      += new System.EventHandler(this.kbtnGenerateNormalTextRedValue_Click);
     //
     // knumRedChannelValue
     //
     this.knumRedChannelValue.Location = new System.Drawing.Point(80, 283);
     this.knumRedChannelValue.Maximum  = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.knumRedChannelValue.Name = "knumRedChannelValue";
     this.knumRedChannelValue.Size = new System.Drawing.Size(120, 28);
     this.knumRedChannelValue.StateCommon.Back.Color1    = System.Drawing.Color.Red;
     this.knumRedChannelValue.StateCommon.Content.Color1 = System.Drawing.Color.White;
     this.knumRedChannelValue.StateCommon.Content.Font   = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.knumRedChannelValue.TabIndex      = 143;
     this.knumRedChannelValue.ValueChanged += new System.EventHandler(this.knumRedChannelValue_ValueChanged);
     //
     // kryptonLabel2
     //
     this.kryptonLabel2.Location = new System.Drawing.Point(12, 284);
     this.kryptonLabel2.Name     = "kryptonLabel2";
     this.kryptonLabel2.Size     = new System.Drawing.Size(46, 26);
     this.kryptonLabel2.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel2.TabIndex    = 142;
     this.kryptonLabel2.Values.Text = "Red:";
     //
     // CustomColours
     //
     this.AcceptButton = this.kbtnOk;
     this.ClientSize   = new System.Drawing.Size(1023, 387);
     this.Controls.Add(this.kryptonPanel2);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.kryptonPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "CustomColours";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Define Custom Colours";
     this.Load           += new System.EventHandler(this.CustomColours_Load);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
     this.kryptonPanel1.ResumeLayout(false);
     this.kryptonPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).EndInit();
     this.kryptonPanel2.ResumeLayout(false);
     this.kryptonPanel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pbxColourPreview)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.kcmbNormalTextSystemColours)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.kcmbNormalTextColour)).EndInit();
     this.ResumeLayout(false);
 }
示例#28
0
 private void InitializeComponent()
 {
     this.kryptonPanel1         = new Krypton.Toolkit.KryptonPanel();
     this.kbtnOk                = new Krypton.Toolkit.KryptonButton();
     this.panel1                = new System.Windows.Forms.Panel();
     this.kryptonPanel2         = new Krypton.Toolkit.KryptonPanel();
     this.kryptonGroupBox1      = new Krypton.Toolkit.KryptonGroupBox();
     this.klstServers           = new Krypton.Toolkit.KryptonListBox();
     this.kryptonLabel1         = new Krypton.Toolkit.KryptonLabel();
     this.kcmbDomainList        = new Krypton.Toolkit.KryptonComboBox();
     this.kgbServerTypes        = new Krypton.Toolkit.KryptonGroupBox();
     this.kchkWorkstations      = new Krypton.Toolkit.KryptonCheckBox();
     this.kchkSQLServers        = new Krypton.Toolkit.KryptonCheckBox();
     this.kchkDomainControllers = new Krypton.Toolkit.KryptonCheckBox();
     this.kchkTerminalServers   = new Krypton.Toolkit.KryptonCheckBox();
     this.kchkTimeServers       = new Krypton.Toolkit.KryptonCheckBox();
     this.kchkPrintServers      = new Krypton.Toolkit.KryptonCheckBox();
     this.kchkDialInServers     = new Krypton.Toolkit.KryptonCheckBox();
     this.kchkAllServers        = new Krypton.Toolkit.KryptonCheckBox();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).BeginInit();
     this.kryptonPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox1.Panel)).BeginInit();
     this.kryptonGroupBox1.Panel.SuspendLayout();
     this.kryptonGroupBox1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kcmbDomainList)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kgbServerTypes)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kgbServerTypes.Panel)).BeginInit();
     this.kgbServerTypes.Panel.SuspendLayout();
     this.kgbServerTypes.SuspendLayout();
     this.SuspendLayout();
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.kbtnOk);
     this.kryptonPanel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.kryptonPanel1.Location = new System.Drawing.Point(0, 369);
     this.kryptonPanel1.Name     = "kryptonPanel1";
     this.kryptonPanel1.Size     = new System.Drawing.Size(345, 39);
     this.kryptonPanel1.TabIndex = 0;
     //
     // kbtnOk
     //
     this.kbtnOk.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.kbtnOk.Enabled      = false;
     this.kbtnOk.Location     = new System.Drawing.Point(127, 6);
     this.kbtnOk.Name         = "kbtnOk";
     this.kbtnOk.Size         = new System.Drawing.Size(90, 25);
     this.kbtnOk.TabIndex     = 1;
     this.kbtnOk.Values.Text  = "O&k";
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.SystemColors.ControlDarkDark;
     this.panel1.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Location  = new System.Drawing.Point(0, 366);
     this.panel1.Name      = "panel1";
     this.panel1.Size      = new System.Drawing.Size(345, 3);
     this.panel1.TabIndex  = 1;
     //
     // kryptonPanel2
     //
     this.kryptonPanel2.Controls.Add(this.kgbServerTypes);
     this.kryptonPanel2.Controls.Add(this.kcmbDomainList);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel1);
     this.kryptonPanel2.Controls.Add(this.kryptonGroupBox1);
     this.kryptonPanel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.kryptonPanel2.Location = new System.Drawing.Point(0, 0);
     this.kryptonPanel2.Name     = "kryptonPanel2";
     this.kryptonPanel2.Size     = new System.Drawing.Size(345, 366);
     this.kryptonPanel2.TabIndex = 2;
     //
     // kryptonGroupBox1
     //
     this.kryptonGroupBox1.Location = new System.Drawing.Point(14, 211);
     this.kryptonGroupBox1.Name     = "kryptonGroupBox1";
     //
     // kryptonGroupBox1.Panel
     //
     this.kryptonGroupBox1.Panel.Controls.Add(this.klstServers);
     this.kryptonGroupBox1.Size           = new System.Drawing.Size(319, 149);
     this.kryptonGroupBox1.TabIndex       = 0;
     this.kryptonGroupBox1.Values.Heading = "Servers";
     //
     // klstServers
     //
     this.klstServers.Dock                  = System.Windows.Forms.DockStyle.Fill;
     this.klstServers.Location              = new System.Drawing.Point(0, 0);
     this.klstServers.Name                  = "klstServers";
     this.klstServers.Size                  = new System.Drawing.Size(315, 125);
     this.klstServers.TabIndex              = 0;
     this.klstServers.SelectedIndexChanged += new System.EventHandler(this.klstServers_SelectedIndexChanged);
     //
     // kryptonLabel1
     //
     this.kryptonLabel1.Location    = new System.Drawing.Point(24, 16);
     this.kryptonLabel1.Name        = "kryptonLabel1";
     this.kryptonLabel1.Size        = new System.Drawing.Size(56, 20);
     this.kryptonLabel1.TabIndex    = 1;
     this.kryptonLabel1.Values.Text = "Domain:";
     //
     // kcmbDomainList
     //
     this.kcmbDomainList.DrawMode       = System.Windows.Forms.DrawMode.OwnerDrawVariable;
     this.kcmbDomainList.DropDownStyle  = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.kcmbDomainList.DropDownWidth  = 166;
     this.kcmbDomainList.IntegralHeight = false;
     this.kcmbDomainList.Location       = new System.Drawing.Point(86, 15);
     this.kcmbDomainList.Name           = "kcmbDomainList";
     this.kcmbDomainList.Size           = new System.Drawing.Size(235, 21);
     this.kcmbDomainList.StateCommon.ComboBox.Content.TextH = Krypton.Toolkit.PaletteRelativeAlign.Near;
     this.kcmbDomainList.TabIndex = 3;
     //
     // kgbServerTypes
     //
     this.kgbServerTypes.Location = new System.Drawing.Point(14, 47);
     this.kgbServerTypes.Name     = "kgbServerTypes";
     //
     // kgbServerTypes.Panel
     //
     this.kgbServerTypes.Panel.Controls.Add(this.kchkAllServers);
     this.kgbServerTypes.Panel.Controls.Add(this.kchkDialInServers);
     this.kgbServerTypes.Panel.Controls.Add(this.kchkPrintServers);
     this.kgbServerTypes.Panel.Controls.Add(this.kchkTimeServers);
     this.kgbServerTypes.Panel.Controls.Add(this.kchkTerminalServers);
     this.kgbServerTypes.Panel.Controls.Add(this.kchkDomainControllers);
     this.kgbServerTypes.Panel.Controls.Add(this.kchkSQLServers);
     this.kgbServerTypes.Panel.Controls.Add(this.kchkWorkstations);
     this.kgbServerTypes.Size           = new System.Drawing.Size(317, 158);
     this.kgbServerTypes.TabIndex       = 4;
     this.kgbServerTypes.Values.Heading = "Server Types";
     //
     // kchkWorkstations
     //
     this.kchkWorkstations.Location    = new System.Drawing.Point(8, 12);
     this.kchkWorkstations.Name        = "kchkWorkstations";
     this.kchkWorkstations.Size        = new System.Drawing.Size(95, 20);
     this.kchkWorkstations.TabIndex    = 0;
     this.kchkWorkstations.Values.Text = "W&orkstations";
     //
     // kchkSQLServers
     //
     this.kchkSQLServers.Location    = new System.Drawing.Point(8, 41);
     this.kchkSQLServers.Name        = "kchkSQLServers";
     this.kchkSQLServers.Size        = new System.Drawing.Size(88, 20);
     this.kchkSQLServers.TabIndex    = 1;
     this.kchkSQLServers.Values.Text = "&SQL Servers";
     //
     // kchkDomainControllers
     //
     this.kchkDomainControllers.Location    = new System.Drawing.Point(8, 70);
     this.kchkDomainControllers.Name        = "kchkDomainControllers";
     this.kchkDomainControllers.Size        = new System.Drawing.Size(129, 20);
     this.kchkDomainControllers.TabIndex    = 2;
     this.kchkDomainControllers.Values.Text = "Domain &Controllers";
     //
     // kchkTerminalServers
     //
     this.kchkTerminalServers.Location    = new System.Drawing.Point(8, 99);
     this.kchkTerminalServers.Name        = "kchkTerminalServers";
     this.kchkTerminalServers.Size        = new System.Drawing.Size(113, 20);
     this.kchkTerminalServers.TabIndex    = 3;
     this.kchkTerminalServers.Values.Text = "&Terminal Servers";
     //
     // kchkTimeServers
     //
     this.kchkTimeServers.Location    = new System.Drawing.Point(192, 12);
     this.kchkTimeServers.Name        = "kchkTimeServers";
     this.kchkTimeServers.Size        = new System.Drawing.Size(93, 20);
     this.kchkTimeServers.TabIndex    = 4;
     this.kchkTimeServers.Values.Text = "&Time Servers";
     //
     // kchkPrintServers
     //
     this.kchkPrintServers.Location    = new System.Drawing.Point(192, 41);
     this.kchkPrintServers.Name        = "kchkPrintServers";
     this.kchkPrintServers.Size        = new System.Drawing.Size(92, 20);
     this.kchkPrintServers.TabIndex    = 5;
     this.kchkPrintServers.Values.Text = "P&rint Servers";
     //
     // kchkDialInServers
     //
     this.kchkDialInServers.Location    = new System.Drawing.Point(192, 70);
     this.kchkDialInServers.Name        = "kchkDialInServers";
     this.kchkDialInServers.Size        = new System.Drawing.Size(102, 20);
     this.kchkDialInServers.TabIndex    = 6;
     this.kchkDialInServers.Values.Text = "&Dial-In Servers";
     //
     // kchkAllServers
     //
     this.kchkAllServers.Location        = new System.Drawing.Point(192, 99);
     this.kchkAllServers.Name            = "kchkAllServers";
     this.kchkAllServers.Size            = new System.Drawing.Size(71, 20);
     this.kchkAllServers.TabIndex        = 7;
     this.kchkAllServers.Values.Text     = "&Show All";
     this.kchkAllServers.CheckedChanged += new System.EventHandler(this.kchkAllServers_CheckedChanged);
     //
     // NetworkNodePicker
     //
     this.AcceptButton = this.kbtnOk;
     this.ClientSize   = new System.Drawing.Size(345, 408);
     this.Controls.Add(this.kryptonPanel2);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.kryptonPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "NetworkNodePicker";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.Manual;
     this.Text            = "Select a network computer";
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
     this.kryptonPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).EndInit();
     this.kryptonPanel2.ResumeLayout(false);
     this.kryptonPanel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox1.Panel)).EndInit();
     this.kryptonGroupBox1.Panel.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonGroupBox1)).EndInit();
     this.kryptonGroupBox1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kcmbDomainList)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.kgbServerTypes.Panel)).EndInit();
     this.kgbServerTypes.Panel.ResumeLayout(false);
     this.kgbServerTypes.Panel.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kgbServerTypes)).EndInit();
     this.kgbServerTypes.ResumeLayout(false);
     this.ResumeLayout(false);
 }
示例#29
0
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ColourDebugConsole));
     this.kpnlControls        = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kbtnImport          = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kbtnClose           = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.pnlSplitter         = new System.Windows.Forms.Panel();
     this.kpnlContent         = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.ktrkAlphaValue      = new ComponentFactory.Krypton.Toolkit.KryptonTrackBar();
     this.kbtnSetAsBaseColour = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kryptonLabel2       = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.ktxtHexValue        = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this.klblHexValue        = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.klblAlphaValue      = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.klblRedValue        = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.klblGreenValue      = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.klblBlueValue       = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kryptonLabel10      = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kryptonLabel9       = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kryptonLabel8       = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kryptonLabel1       = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.klstPaletteColours  = new ComponentFactory.Krypton.Toolkit.KryptonListBox();
     this.ttInfo           = new System.Windows.Forms.ToolTip(this.components);
     this.cbxColourPreview = new ExtendedControls.ExtendedToolkit.Controls.CircularPictureBox();
     this.cwSelectedColour = new ExtendedControls.ExtendedToolkit.Controls.Colours.Controls.ColourWheel();
     ((System.ComponentModel.ISupportInitialize)(this.kpnlControls)).BeginInit();
     this.kpnlControls.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kpnlContent)).BeginInit();
     this.kpnlContent.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbxColourPreview)).BeginInit();
     this.SuspendLayout();
     //
     // kpnlControls
     //
     this.kpnlControls.Controls.Add(this.kbtnImport);
     this.kpnlControls.Controls.Add(this.kbtnClose);
     this.kpnlControls.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.kpnlControls.Location = new System.Drawing.Point(0, 827);
     this.kpnlControls.Name     = "kpnlControls";
     this.kpnlControls.Size     = new System.Drawing.Size(1115, 66);
     this.kpnlControls.TabIndex = 0;
     //
     // kbtnImport
     //
     this.kbtnImport.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.kbtnImport.AutoSize     = true;
     this.kbtnImport.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.kbtnImport.Location     = new System.Drawing.Point(12, 17);
     this.kbtnImport.Name         = "kbtnImport";
     this.kbtnImport.Size         = new System.Drawing.Size(129, 30);
     this.kbtnImport.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnImport.TabIndex    = 66;
     this.kbtnImport.Values.Text = "Import from &File";
     this.kbtnImport.Click      += new System.EventHandler(this.KbtnImport_Click);
     //
     // kbtnClose
     //
     this.kbtnClose.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.kbtnClose.AutoSize     = true;
     this.kbtnClose.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.kbtnClose.Location     = new System.Drawing.Point(1035, 17);
     this.kbtnClose.Name         = "kbtnClose";
     this.kbtnClose.Size         = new System.Drawing.Size(68, 30);
     this.kbtnClose.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnClose.TabIndex     = 65;
     this.kbtnClose.Values.Image = global::PaletteExplorer.Properties.Resources.Exit_16_x_16;
     this.kbtnClose.Values.Text  = "&Close";
     this.kbtnClose.Click       += new System.EventHandler(this.KbtnClose_Click);
     //
     // pnlSplitter
     //
     this.pnlSplitter.BackColor = System.Drawing.SystemColors.ControlDarkDark;
     this.pnlSplitter.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.pnlSplitter.Location  = new System.Drawing.Point(0, 824);
     this.pnlSplitter.Name      = "pnlSplitter";
     this.pnlSplitter.Size      = new System.Drawing.Size(1115, 3);
     this.pnlSplitter.TabIndex  = 1;
     //
     // kpnlContent
     //
     this.kpnlContent.Controls.Add(this.ktrkAlphaValue);
     this.kpnlContent.Controls.Add(this.kbtnSetAsBaseColour);
     this.kpnlContent.Controls.Add(this.kryptonLabel2);
     this.kpnlContent.Controls.Add(this.ktxtHexValue);
     this.kpnlContent.Controls.Add(this.klblHexValue);
     this.kpnlContent.Controls.Add(this.cbxColourPreview);
     this.kpnlContent.Controls.Add(this.cwSelectedColour);
     this.kpnlContent.Controls.Add(this.klblAlphaValue);
     this.kpnlContent.Controls.Add(this.klblRedValue);
     this.kpnlContent.Controls.Add(this.klblGreenValue);
     this.kpnlContent.Controls.Add(this.klblBlueValue);
     this.kpnlContent.Controls.Add(this.kryptonLabel10);
     this.kpnlContent.Controls.Add(this.kryptonLabel9);
     this.kpnlContent.Controls.Add(this.kryptonLabel8);
     this.kpnlContent.Controls.Add(this.kryptonLabel1);
     this.kpnlContent.Controls.Add(this.klstPaletteColours);
     this.kpnlContent.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.kpnlContent.Location = new System.Drawing.Point(0, 0);
     this.kpnlContent.Name     = "kpnlContent";
     this.kpnlContent.Size     = new System.Drawing.Size(1115, 824);
     this.kpnlContent.TabIndex = 2;
     //
     // ktrkAlphaValue
     //
     this.ktrkAlphaValue.DrawBackground = true;
     this.ktrkAlphaValue.Location       = new System.Drawing.Point(517, 12);
     this.ktrkAlphaValue.Maximum        = 255;
     this.ktrkAlphaValue.Name           = "ktrkAlphaValue";
     this.ktrkAlphaValue.Orientation    = System.Windows.Forms.Orientation.Vertical;
     this.ktrkAlphaValue.Size           = new System.Drawing.Size(41, 688);
     this.ktrkAlphaValue.TabIndex       = 68;
     this.ktrkAlphaValue.TickStyle      = System.Windows.Forms.TickStyle.Both;
     this.ktrkAlphaValue.TrackBarSize   = ComponentFactory.Krypton.Toolkit.PaletteTrackBarSize.Large;
     this.ktrkAlphaValue.Value          = 255;
     this.ktrkAlphaValue.ValueChanged  += new System.EventHandler(this.KtrkAlphaValue_ValueChanged);
     //
     // kbtnSetAsBaseColour
     //
     this.kbtnSetAsBaseColour.AutoSize     = true;
     this.kbtnSetAsBaseColour.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.kbtnSetAsBaseColour.Enabled      = false;
     this.kbtnSetAsBaseColour.Location     = new System.Drawing.Point(775, 670);
     this.kbtnSetAsBaseColour.Name         = "kbtnSetAsBaseColour";
     this.kbtnSetAsBaseColour.Size         = new System.Drawing.Size(146, 30);
     this.kbtnSetAsBaseColour.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnSetAsBaseColour.TabIndex    = 67;
     this.kbtnSetAsBaseColour.Values.Text = "&Set as Base Colour";
     this.kbtnSetAsBaseColour.Click      += new System.EventHandler(this.KbtnSetAsBaseColour_Click);
     //
     // kryptonLabel2
     //
     this.kryptonLabel2.Location = new System.Drawing.Point(78, 737);
     this.kryptonLabel2.Name     = "kryptonLabel2";
     this.kryptonLabel2.Size     = new System.Drawing.Size(26, 33);
     this.kryptonLabel2.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel2.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel2.TabIndex    = 46;
     this.kryptonLabel2.Values.Text = "#";
     //
     // ktxtHexValue
     //
     this.ktxtHexValue.Hint      = "FFFFFF";
     this.ktxtHexValue.Location  = new System.Drawing.Point(110, 741);
     this.ktxtHexValue.MaxLength = 6;
     this.ktxtHexValue.Name      = "ktxtHexValue";
     this.ktxtHexValue.Size      = new System.Drawing.Size(158, 29);
     this.ktxtHexValue.StateCommon.Content.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ktxtHexValue.StateCommon.Content.TextH = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Inherit;
     this.ktxtHexValue.TabIndex     = 45;
     this.ktxtHexValue.TextAlign    = System.Windows.Forms.HorizontalAlignment.Center;
     this.ktxtHexValue.TextChanged += new System.EventHandler(this.KtxtHexValue_TextChanged);
     //
     // klblHexValue
     //
     this.klblHexValue.Location = new System.Drawing.Point(12, 737);
     this.klblHexValue.Name     = "klblHexValue";
     this.klblHexValue.Size     = new System.Drawing.Size(60, 33);
     this.klblHexValue.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.klblHexValue.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.klblHexValue.TabIndex    = 44;
     this.klblHexValue.Values.Text = "Hex:";
     //
     // klblAlphaValue
     //
     this.klblAlphaValue.Location = new System.Drawing.Point(416, 740);
     this.klblAlphaValue.Name     = "klblAlphaValue";
     this.klblAlphaValue.Size     = new System.Drawing.Size(6, 2);
     this.klblAlphaValue.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.klblAlphaValue.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.klblAlphaValue.TabIndex    = 41;
     this.klblAlphaValue.Values.Text = "";
     //
     // klblRedValue
     //
     this.klblRedValue.Location = new System.Drawing.Point(607, 740);
     this.klblRedValue.Name     = "klblRedValue";
     this.klblRedValue.Size     = new System.Drawing.Size(6, 2);
     this.klblRedValue.StateCommon.LongText.Color1  = System.Drawing.Color.Red;
     this.klblRedValue.StateCommon.LongText.Color2  = System.Drawing.Color.Red;
     this.klblRedValue.StateCommon.LongText.Font    = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.klblRedValue.StateCommon.ShortText.Color1 = System.Drawing.Color.Red;
     this.klblRedValue.StateCommon.ShortText.Color2 = System.Drawing.Color.Red;
     this.klblRedValue.StateCommon.ShortText.Font   = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.klblRedValue.TabIndex    = 40;
     this.klblRedValue.Values.Text = "";
     //
     // klblGreenValue
     //
     this.klblGreenValue.Location = new System.Drawing.Point(795, 740);
     this.klblGreenValue.Name     = "klblGreenValue";
     this.klblGreenValue.Size     = new System.Drawing.Size(6, 2);
     this.klblGreenValue.StateCommon.LongText.Font    = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.klblGreenValue.StateCommon.ShortText.Color1 = System.Drawing.Color.Green;
     this.klblGreenValue.StateCommon.ShortText.Color2 = System.Drawing.Color.Green;
     this.klblGreenValue.StateCommon.ShortText.Font   = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.klblGreenValue.TabIndex    = 39;
     this.klblGreenValue.Values.Text = "";
     //
     // klblBlueValue
     //
     this.klblBlueValue.Location = new System.Drawing.Point(985, 740);
     this.klblBlueValue.Name     = "klblBlueValue";
     this.klblBlueValue.Size     = new System.Drawing.Size(6, 2);
     this.klblBlueValue.StateCommon.LongText.Font    = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.klblBlueValue.StateCommon.ShortText.Color1 = System.Drawing.Color.Blue;
     this.klblBlueValue.StateCommon.ShortText.Color2 = System.Drawing.Color.Blue;
     this.klblBlueValue.StateCommon.ShortText.Font   = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.klblBlueValue.TabIndex    = 38;
     this.klblBlueValue.Values.Text = "";
     //
     // kryptonLabel10
     //
     this.kryptonLabel10.Location = new System.Drawing.Point(542, 740);
     this.kryptonLabel10.Name     = "kryptonLabel10";
     this.kryptonLabel10.Size     = new System.Drawing.Size(59, 33);
     this.kryptonLabel10.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel10.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel10.TabIndex    = 37;
     this.kryptonLabel10.Values.Text = "Red:";
     //
     // kryptonLabel9
     //
     this.kryptonLabel9.Location = new System.Drawing.Point(709, 740);
     this.kryptonLabel9.Name     = "kryptonLabel9";
     this.kryptonLabel9.Size     = new System.Drawing.Size(80, 33);
     this.kryptonLabel9.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel9.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel9.TabIndex    = 36;
     this.kryptonLabel9.Values.Text = "Green:";
     //
     // kryptonLabel8
     //
     this.kryptonLabel8.Location = new System.Drawing.Point(915, 737);
     this.kryptonLabel8.Name     = "kryptonLabel8";
     this.kryptonLabel8.Size     = new System.Drawing.Size(64, 33);
     this.kryptonLabel8.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel8.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel8.TabIndex    = 35;
     this.kryptonLabel8.Values.Text = "Blue:";
     //
     // kryptonLabel1
     //
     this.kryptonLabel1.Location = new System.Drawing.Point(331, 737);
     this.kryptonLabel1.Name     = "kryptonLabel1";
     this.kryptonLabel1.Size     = new System.Drawing.Size(79, 33);
     this.kryptonLabel1.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel1.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel1.TabIndex    = 33;
     this.kryptonLabel1.Values.Text = "Alpha:";
     //
     // klstPaletteColours
     //
     this.klstPaletteColours.Location = new System.Drawing.Point(12, 12);
     this.klstPaletteColours.Name     = "klstPaletteColours";
     this.klstPaletteColours.Size     = new System.Drawing.Size(483, 688);
     this.klstPaletteColours.StateCommon.Item.Content.LongText.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.klstPaletteColours.StateCommon.Item.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.klstPaletteColours.TabIndex              = 3;
     this.klstPaletteColours.SelectedIndexChanged += new System.EventHandler(this.KlstPaletteColours_SelectedIndexChanged);
     //
     // cbxColourPreview
     //
     this.cbxColourPreview.BackColor = System.Drawing.Color.White;
     this.cbxColourPreview.Location  = new System.Drawing.Point(726, 399);
     this.cbxColourPreview.Name      = "cbxColourPreview";
     this.cbxColourPreview.Size      = new System.Drawing.Size(232, 230);
     this.cbxColourPreview.TabIndex  = 43;
     this.cbxColourPreview.TabStop   = false;
     //
     // cwSelectedColour
     //
     this.cwSelectedColour.BackColor      = System.Drawing.Color.Transparent;
     this.cwSelectedColour.Location       = new System.Drawing.Point(670, 12);
     this.cwSelectedColour.Name           = "cwSelectedColour";
     this.cwSelectedColour.Size           = new System.Drawing.Size(352, 362);
     this.cwSelectedColour.TabIndex       = 42;
     this.cwSelectedColour.ColourChanged += new System.EventHandler(this.CwSelectedColour_ColourChanged);
     //
     // ColourDebugConsole
     //
     this.ClientSize = new System.Drawing.Size(1115, 893);
     this.Controls.Add(this.kpnlContent);
     this.Controls.Add(this.pnlSplitter);
     this.Controls.Add(this.kpnlControls);
     this.Icon          = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox   = false;
     this.Name          = "ColourDebugConsole";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text          = "Palette Debug Console - [{0}]";
     ((System.ComponentModel.ISupportInitialize)(this.kpnlControls)).EndInit();
     this.kpnlControls.ResumeLayout(false);
     this.kpnlControls.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kpnlContent)).EndInit();
     this.kpnlContent.ResumeLayout(false);
     this.kpnlContent.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbxColourPreview)).EndInit();
     this.ResumeLayout(false);
 }
 private void InitializeComponent()
 {
     this.panel1       = new System.Windows.Forms.Panel();
     this.ktxtSearch   = new Krypton.Toolkit.KryptonTextBox();
     this.panel2       = new System.Windows.Forms.Panel();
     this.klbTypefaces = new Krypton.Toolkit.KryptonListBox();
     this.panel1.SuspendLayout();
     this.panel2.SuspendLayout();
     this.SuspendLayout();
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.Transparent;
     this.panel1.Controls.Add(this.ktxtSearch);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(196, 23);
     this.panel1.TabIndex = 0;
     //
     // ktxtSearch
     //
     this.ktxtSearch.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.ktxtSearch.Hint         = "Search...";
     this.ktxtSearch.Location     = new System.Drawing.Point(0, 0);
     this.ktxtSearch.Name         = "ktxtSearch";
     this.ktxtSearch.Size         = new System.Drawing.Size(196, 23);
     this.ktxtSearch.TabIndex     = 0;
     this.ktxtSearch.TextChanged += new System.EventHandler(this.ktxtSearch_TextChanged);
     this.ktxtSearch.MouseDown   += new System.Windows.Forms.MouseEventHandler(this.ktxtSearch_MouseDown);
     //
     // panel2
     //
     this.panel2.BackColor = System.Drawing.Color.Transparent;
     this.panel2.Controls.Add(this.klbTypefaces);
     this.panel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(0, 23);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(196, 221);
     this.panel2.TabIndex = 1;
     //
     // klbTypefaces
     //
     this.klbTypefaces.Dock                  = System.Windows.Forms.DockStyle.Fill;
     this.klbTypefaces.Location              = new System.Drawing.Point(0, 0);
     this.klbTypefaces.Name                  = "klbTypefaces";
     this.klbTypefaces.Size                  = new System.Drawing.Size(196, 221);
     this.klbTypefaces.TabIndex              = 0;
     this.klbTypefaces.SelectedIndexChanged += new System.EventHandler(this.klbTypefaces_SelectedIndexChanged);
     this.klbTypefaces.DrawItem             += new System.Windows.Forms.DrawItemEventHandler(this.klbTypefaces_DrawItem);
     this.klbTypefaces.KeyDown              += new System.Windows.Forms.KeyEventHandler(this.klbTypefaces_KeyDown);
     //
     // KryptonTypefaceListBoxControl
     //
     this.BackColor = System.Drawing.Color.Transparent;
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.panel1);
     this.Name  = "KryptonTypefaceListBoxControl";
     this.Size  = new System.Drawing.Size(196, 244);
     this.Load += new System.EventHandler(this.KryptonTypefaceListBoxControl_Load);
     this.panel1.ResumeLayout(false);
     this.panel1.PerformLayout();
     this.panel2.ResumeLayout(false);
     this.ResumeLayout(false);
 }