public KryptonRibbonGroupTextBox()
        {
            // Default fields
            _visible = true;
            _enabled = true;
            _itemSizeCurrent = GroupItemSize.Medium;
            _shortcutKeys = Keys.None;
            _keyTip = "X";

            // Create the actual text box control and set initial settings
            _textBox = new KryptonTextBox();
            _textBox.InputControlStyle = InputControlStyle.Ribbon;
            _textBox.AlwaysActive = false;
            _textBox.MinimumSize = new Size(121, 0);
            _textBox.MaximumSize = new Size(121, 0);
            _textBox.TabStop = false;

            // Hook into events to expose via this container
            _textBox.AcceptsTabChanged += new EventHandler(OnTextBoxAcceptsTabChanged);
            _textBox.TextAlignChanged += new EventHandler(OnTextBoxTextAlignChanged);
            _textBox.TextChanged += new EventHandler(OnTextBoxTextChanged);
            _textBox.HideSelectionChanged += new EventHandler(OnTextBoxHideSelectionChanged);
            _textBox.ModifiedChanged += new EventHandler(OnTextBoxModifiedChanged);
            _textBox.MultilineChanged += new EventHandler(OnTextBoxMultilineChanged);
            _textBox.ReadOnlyChanged += new EventHandler(OnTextBoxReadOnlyChanged);
            _textBox.GotFocus += new EventHandler(OnTextBoxGotFocus);
            _textBox.LostFocus += new EventHandler(OnTextBoxLostFocus);
            _textBox.KeyDown += new KeyEventHandler(OnTextBoxKeyDown);
            _textBox.KeyUp += new KeyEventHandler(OnTextBoxKeyUp);
            _textBox.KeyPress += new KeyPressEventHandler(OnTextBoxKeyPress);
            _textBox.PreviewKeyDown += new PreviewKeyDownEventHandler(OnTextBoxPreviewKeyDown);

            // Ensure we can track mouse events on the text box
            MonitorControl(_textBox);
        }
        /// <summary>
        /// Initialize a new instance of the KryptonTextBoxActionList class.
        /// </summary>
        /// <param name="owner">Designer that owns this action list instance.</param>
        public KryptonTextBoxActionList(KryptonTextBoxDesigner owner)
            : base(owner.Component)
        {
            // Remember the text box instance
            _textBox = owner.Component as KryptonTextBox;

            // Cache service used to notify when a property has changed
            _service = (IComponentChangeService)GetService(typeof(IComponentChangeService));
        }
Exemplo n.º 3
0
 protected override Control InitialControl()
 {
     if (IsScoped)
     {
         Panel ctl = new Panel();
         ctl.BackColor = Color.Transparent;
         KryptonTextBox begin = new KryptonTextBox();
         KryptonTextBox end = new KryptonTextBox();
         KryptonLabel lbl = new KryptonLabel();
         begin.Width = Width / 2 - 7;
         begin.Dock = DockStyle.Left;
         end.Width = Width / 2 - 7;
         end.Dock = DockStyle.Right;
         lbl.Text = "-";
         lbl.Dock = DockStyle.Fill;
         lbl.LabelStyle = LabelStyle.NormalPanel;
         ctl.Controls.Add(lbl);
         ctl.Controls.Add(begin);
         ctl.Controls.Add(end);
         ctl.Height = begin.Height + 2;
         return ctl;
     }
     else
     {
         KryptonTextBox ctl = new KryptonTextBox();
         return ctl;
     }
 }
Exemplo n.º 4
0
 private void InitializeComponent()
 {
     this._panelMessage = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this._textBoxResponse = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this._labelPrompt = new ComponentFactory.Krypton.Toolkit.KryptonWrapLabel();
     this._buttonCancel = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this._buttonOK = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     ((System.ComponentModel.ISupportInitialize)(this._panelMessage)).BeginInit();
     this._panelMessage.SuspendLayout();
     this.SuspendLayout();
     //
     // _panelMessage
     //
     this._panelMessage.Controls.Add(this._textBoxResponse);
     this._panelMessage.Controls.Add(this._labelPrompt);
     this._panelMessage.Controls.Add(this._buttonCancel);
     this._panelMessage.Controls.Add(this._buttonOK);
     this._panelMessage.Dock = System.Windows.Forms.DockStyle.Fill;
     this._panelMessage.Location = new System.Drawing.Point(0, 0);
     this._panelMessage.Name = "_panelMessage";
     this._panelMessage.Size = new System.Drawing.Size(357, 118);
     this._panelMessage.TabIndex = 0;
     //
     // _textBoxResponse
     //
     this._textBoxResponse.Location = new System.Drawing.Point(12, 86);
     this._textBoxResponse.Name = "_textBoxResponse";
     this._textBoxResponse.Size = new System.Drawing.Size(333, 20);
     this._textBoxResponse.TabIndex = 0;
     //
     // _labelPrompt
     //
     this._labelPrompt.AutoSize = false;
     this._labelPrompt.Font = new System.Drawing.Font("Segoe UI", 9F);
     this._labelPrompt.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(57)))), ((int)(((byte)(91)))));
     this._labelPrompt.LabelStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.NormalPanel;
     this._labelPrompt.Location = new System.Drawing.Point(12, 12);
     this._labelPrompt.Margin = new System.Windows.Forms.Padding(0);
     this._labelPrompt.Name = "_labelPrompt";
     this._labelPrompt.Size = new System.Drawing.Size(78, 15);
     this._labelPrompt.Text = "Prompt";
     //
     // _buttonCancel
     //
     this._buttonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this._buttonCancel.AutoSize = true;
     this._buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this._buttonCancel.Location = new System.Drawing.Point(295, 43);
     this._buttonCancel.Margin = new System.Windows.Forms.Padding(0);
     this._buttonCancel.MinimumSize = new System.Drawing.Size(50, 26);
     this._buttonCancel.Name = "_buttonCancel";
     this._buttonCancel.Size = new System.Drawing.Size(50, 26);
     this._buttonCancel.TabIndex = 2;
     this._buttonCancel.Values.Text = "Cancel";
     this._buttonCancel.KeyDown += new System.Windows.Forms.KeyEventHandler(this.button_keyDown);
     //
     // _buttonOK
     //
     this._buttonOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this._buttonOK.AutoSize = true;
     this._buttonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this._buttonOK.Location = new System.Drawing.Point(295, 12);
     this._buttonOK.Margin = new System.Windows.Forms.Padding(0);
     this._buttonOK.MinimumSize = new System.Drawing.Size(50, 26);
     this._buttonOK.Name = "_buttonOK";
     this._buttonOK.Size = new System.Drawing.Size(50, 26);
     this._buttonOK.TabIndex = 1;
     this._buttonOK.Values.Text = "OK";
     this._buttonOK.KeyDown += new System.Windows.Forms.KeyEventHandler(this.button_keyDown);
     //
     // KryptonInputBox
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(357, 118);
     this.Controls.Add(this._panelMessage);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "KryptonInputBox";
     this.ShowIcon = false;
     this.ShowInTaskbar = false;
     this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     ((System.ComponentModel.ISupportInitialize)(this._panelMessage)).EndInit();
     this._panelMessage.ResumeLayout(false);
     this._panelMessage.PerformLayout();
     this.ResumeLayout(false);
 }
Exemplo n.º 5
0
 private void InitializeComponent()
 {
     this.kpnlBackground     = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.explorerBrowser1   = new Microsoft.WindowsAPICodePack.Controls.WindowsForms.ExplorerBrowser();
     this.kryptonLabel1      = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kryptonTextBox1    = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this.kryptonComboBox1   = new ComponentFactory.Krypton.Toolkit.KryptonComboBox();
     this.kryptonBreadCrumb1 = new ComponentFactory.Krypton.Toolkit.KryptonBreadCrumb();
     ((System.ComponentModel.ISupportInitialize)(this.kpnlBackground)).BeginInit();
     this.kpnlBackground.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonComboBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonBreadCrumb1)).BeginInit();
     this.SuspendLayout();
     //
     // kpnlBackground
     //
     this.kpnlBackground.Controls.Add(this.kryptonBreadCrumb1);
     this.kpnlBackground.Controls.Add(this.kryptonComboBox1);
     this.kpnlBackground.Controls.Add(this.kryptonTextBox1);
     this.kpnlBackground.Controls.Add(this.kryptonLabel1);
     this.kpnlBackground.Controls.Add(this.explorerBrowser1);
     this.kpnlBackground.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.kpnlBackground.Location = new System.Drawing.Point(0, 0);
     this.kpnlBackground.Name     = "kpnlBackground";
     this.kpnlBackground.Size     = new System.Drawing.Size(813, 477);
     this.kpnlBackground.TabIndex = 0;
     //
     // explorerBrowser1
     //
     this.explorerBrowser1.Location        = new System.Drawing.Point(12, 37);
     this.explorerBrowser1.Name            = "explorerBrowser1";
     this.explorerBrowser1.PropertyBagName = "Microsoft.WindowsAPICodePack.Controls.WindowsForms.ExplorerBrowser";
     this.explorerBrowser1.Size            = new System.Drawing.Size(789, 378);
     this.explorerBrowser1.TabIndex        = 0;
     //
     // kryptonLabel1
     //
     this.kryptonLabel1.Location = new System.Drawing.Point(12, 422);
     this.kryptonLabel1.Name     = "kryptonLabel1";
     this.kryptonLabel1.Size     = new System.Drawing.Size(88, 26);
     this.kryptonLabel1.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel1.TabIndex    = 1;
     this.kryptonLabel1.Values.Text = "File Name:";
     //
     // kryptonTextBox1
     //
     this.kryptonTextBox1.Location = new System.Drawing.Point(107, 422);
     this.kryptonTextBox1.Name     = "kryptonTextBox1";
     this.kryptonTextBox1.Size     = new System.Drawing.Size(388, 29);
     this.kryptonTextBox1.StateCommon.Content.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonTextBox1.TabIndex = 2;
     this.kryptonTextBox1.Text     = "kryptonTextBox1";
     //
     // kryptonComboBox1
     //
     this.kryptonComboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.kryptonComboBox1.DropDownWidth = 300;
     this.kryptonComboBox1.Location      = new System.Drawing.Point(501, 424);
     this.kryptonComboBox1.Name          = "kryptonComboBox1";
     this.kryptonComboBox1.Size          = new System.Drawing.Size(300, 27);
     this.kryptonComboBox1.StateCommon.ComboBox.Content.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonComboBox1.TabIndex = 3;
     //
     // kryptonBreadCrumb1
     //
     this.kryptonBreadCrumb1.AutoSize = false;
     this.kryptonBreadCrumb1.Location = new System.Drawing.Point(12, 3);
     this.kryptonBreadCrumb1.Name     = "kryptonBreadCrumb1";
     //
     //
     //
     this.kryptonBreadCrumb1.RootItem.ShortText = "Root";
     this.kryptonBreadCrumb1.Size     = new System.Drawing.Size(789, 28);
     this.kryptonBreadCrumb1.TabIndex = 4;
     //
     // KryptonSaveFileDialog
     //
     this.ClientSize = new System.Drawing.Size(813, 477);
     this.Controls.Add(this.kpnlBackground);
     this.Name = "KryptonSaveFileDialog";
     ((System.ComponentModel.ISupportInitialize)(this.kpnlBackground)).EndInit();
     this.kpnlBackground.ResumeLayout(false);
     this.kpnlBackground.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonComboBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonBreadCrumb1)).EndInit();
     this.ResumeLayout(false);
 }
Exemplo n.º 6
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components       = new System.ComponentModel.Container();
     this.lblBlue          = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.lblGreen         = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.lblRed           = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.lblBrightness    = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.lblSaturation    = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.lblHue           = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.btnCancel        = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.btnOK            = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.Label3           = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.Label7           = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.pnlColor         = new System.Windows.Forms.Panel();
     this.Label6           = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.Label1           = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.Label5           = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.pnlSelectedColor = new System.Windows.Forms.Panel();
     this.pnlBrightness    = new System.Windows.Forms.Panel();
     this.Label2           = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kpnlbg           = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.ktxtWebColour    = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this.ksbBlue          = new ExtendedControls.ExtendedToolkit.Controls.ScrollBar.CustomScrollBar.KryptonScrollBar();
     this.ksbGreen         = new ExtendedControls.ExtendedToolkit.Controls.ScrollBar.CustomScrollBar.KryptonScrollBar();
     this.ksbRed           = new ExtendedControls.ExtendedToolkit.Controls.ScrollBar.CustomScrollBar.KryptonScrollBar();
     this.ksbBrightness    = new ExtendedControls.ExtendedToolkit.Controls.ScrollBar.CustomScrollBar.KryptonScrollBar();
     this.ksbSaturation    = new ExtendedControls.ExtendedToolkit.Controls.ScrollBar.CustomScrollBar.KryptonScrollBar();
     this.ksbHue           = new ExtendedControls.ExtendedToolkit.Controls.ScrollBar.CustomScrollBar.KryptonScrollBar();
     ((System.ComponentModel.ISupportInitialize)(this.kpnlbg)).BeginInit();
     this.kpnlbg.SuspendLayout();
     this.SuspendLayout();
     //
     // lblBlue
     //
     this.lblBlue.Location = new System.Drawing.Point(317, 360);
     this.lblBlue.Name     = "lblBlue";
     this.lblBlue.Size     = new System.Drawing.Size(39, 20);
     this.lblBlue.TabIndex = 54;
     //
     // lblGreen
     //
     this.lblGreen.Location = new System.Drawing.Point(317, 336);
     this.lblGreen.Name     = "lblGreen";
     this.lblGreen.Size     = new System.Drawing.Size(39, 20);
     this.lblGreen.TabIndex = 53;
     //
     // lblRed
     //
     this.lblRed.Location = new System.Drawing.Point(317, 312);
     this.lblRed.Name     = "lblRed";
     this.lblRed.Size     = new System.Drawing.Size(39, 20);
     this.lblRed.TabIndex = 52;
     //
     // lblBrightness
     //
     this.lblBrightness.Location = new System.Drawing.Point(317, 280);
     this.lblBrightness.Name     = "lblBrightness";
     this.lblBrightness.Size     = new System.Drawing.Size(39, 20);
     this.lblBrightness.TabIndex = 51;
     //
     // lblSaturation
     //
     this.lblSaturation.Location = new System.Drawing.Point(317, 256);
     this.lblSaturation.Name     = "lblSaturation";
     this.lblSaturation.Size     = new System.Drawing.Size(39, 20);
     this.lblSaturation.TabIndex = 50;
     //
     // lblHue
     //
     this.lblHue.Location = new System.Drawing.Point(317, 232);
     this.lblHue.Name     = "lblHue";
     this.lblHue.Size     = new System.Drawing.Size(39, 20);
     this.lblHue.TabIndex = 49;
     //
     // btnCancel
     //
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Font         = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnCancel.Location     = new System.Drawing.Point(296, 40);
     this.btnCancel.Name         = "btnCancel";
     this.btnCancel.Size         = new System.Drawing.Size(64, 24);
     this.btnCancel.TabIndex     = 42;
     this.btnCancel.Values.Text  = "Cancel";
     //
     // btnOK
     //
     this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.btnOK.Font         = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnOK.Location     = new System.Drawing.Point(296, 8);
     this.btnOK.Name         = "btnOK";
     this.btnOK.Size         = new System.Drawing.Size(64, 24);
     this.btnOK.TabIndex     = 41;
     this.btnOK.Values.Text  = "OK";
     //
     // Label3
     //
     this.Label3.Font        = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label3.Location    = new System.Drawing.Point(8, 360);
     this.Label3.Name        = "Label3";
     this.Label3.Size        = new System.Drawing.Size(34, 20);
     this.Label3.TabIndex    = 34;
     this.Label3.Values.Text = "Blue";
     //
     // Label7
     //
     this.Label7.Font        = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label7.Location    = new System.Drawing.Point(8, 280);
     this.Label7.Name        = "Label7";
     this.Label7.Size        = new System.Drawing.Size(67, 20);
     this.Label7.TabIndex    = 37;
     this.Label7.Values.Text = "Brightness";
     //
     // pnlColor
     //
     this.pnlColor.Location = new System.Drawing.Point(8, 8);
     this.pnlColor.Name     = "pnlColor";
     this.pnlColor.Size     = new System.Drawing.Size(224, 216);
     this.pnlColor.TabIndex = 38;
     this.pnlColor.Visible  = false;
     //
     // Label6
     //
     this.Label6.Font        = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label6.Location    = new System.Drawing.Point(8, 256);
     this.Label6.Name        = "Label6";
     this.Label6.Size        = new System.Drawing.Size(67, 20);
     this.Label6.TabIndex    = 36;
     this.Label6.Values.Text = "Saturation";
     //
     // Label1
     //
     this.Label1.Font        = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label1.Location    = new System.Drawing.Point(8, 312);
     this.Label1.Name        = "Label1";
     this.Label1.Size        = new System.Drawing.Size(32, 20);
     this.Label1.TabIndex    = 32;
     this.Label1.Values.Text = "Red";
     //
     // Label5
     //
     this.Label5.Font        = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label5.Location    = new System.Drawing.Point(8, 232);
     this.Label5.Name        = "Label5";
     this.Label5.Size        = new System.Drawing.Size(33, 20);
     this.Label5.TabIndex    = 35;
     this.Label5.Values.Text = "Hue";
     //
     // pnlSelectedColor
     //
     this.pnlSelectedColor.Location = new System.Drawing.Point(296, 72);
     this.pnlSelectedColor.Name     = "pnlSelectedColor";
     this.pnlSelectedColor.Size     = new System.Drawing.Size(64, 24);
     this.pnlSelectedColor.TabIndex = 40;
     this.pnlSelectedColor.Visible  = false;
     //
     // pnlBrightness
     //
     this.pnlBrightness.Location = new System.Drawing.Point(240, 8);
     this.pnlBrightness.Name     = "pnlBrightness";
     this.pnlBrightness.Size     = new System.Drawing.Size(24, 216);
     this.pnlBrightness.TabIndex = 39;
     this.pnlBrightness.Visible  = false;
     //
     // Label2
     //
     this.Label2.Font        = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label2.Location    = new System.Drawing.Point(8, 336);
     this.Label2.Name        = "Label2";
     this.Label2.Size        = new System.Drawing.Size(43, 20);
     this.Label2.TabIndex    = 33;
     this.Label2.Values.Text = "Green";
     //
     // kpnlbg
     //
     this.kpnlbg.Controls.Add(this.ktxtWebColour);
     this.kpnlbg.Controls.Add(this.ksbBlue);
     this.kpnlbg.Controls.Add(this.ksbGreen);
     this.kpnlbg.Controls.Add(this.ksbRed);
     this.kpnlbg.Controls.Add(this.ksbBrightness);
     this.kpnlbg.Controls.Add(this.ksbSaturation);
     this.kpnlbg.Controls.Add(this.ksbHue);
     this.kpnlbg.Controls.Add(this.Label5);
     this.kpnlbg.Controls.Add(this.lblBlue);
     this.kpnlbg.Controls.Add(this.Label6);
     this.kpnlbg.Controls.Add(this.lblGreen);
     this.kpnlbg.Controls.Add(this.Label7);
     this.kpnlbg.Controls.Add(this.lblRed);
     this.kpnlbg.Controls.Add(this.lblBrightness);
     this.kpnlbg.Controls.Add(this.Label1);
     this.kpnlbg.Controls.Add(this.lblSaturation);
     this.kpnlbg.Controls.Add(this.Label2);
     this.kpnlbg.Controls.Add(this.lblHue);
     this.kpnlbg.Controls.Add(this.Label3);
     this.kpnlbg.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.kpnlbg.Location = new System.Drawing.Point(0, 0);
     this.kpnlbg.Name     = "kpnlbg";
     this.kpnlbg.Size     = new System.Drawing.Size(368, 389);
     this.kpnlbg.TabIndex = 58;
     //
     // ktxtWebColour
     //
     this.ktxtWebColour.Location = new System.Drawing.Point(296, 102);
     this.ktxtWebColour.Name     = "ktxtWebColour";
     this.ktxtWebColour.Size     = new System.Drawing.Size(64, 23);
     this.ktxtWebColour.TabIndex = 60;
     //
     // ksbBlue
     //
     this.ksbBlue.Location    = new System.Drawing.Point(80, 359);
     this.ksbBlue.Maximum     = 255;
     this.ksbBlue.Name        = "ksbBlue";
     this.ksbBlue.Orientation = ExtendedControls.Base.Code.ScrollBar.CustomScrollBar.ScrollBarOrientation.HORIZONTAL;
     this.ksbBlue.Size        = new System.Drawing.Size(224, 19);
     this.ksbBlue.TabIndex    = 59;
     //
     // ksbGreen
     //
     this.ksbGreen.Location    = new System.Drawing.Point(80, 335);
     this.ksbGreen.Maximum     = 255;
     this.ksbGreen.Name        = "ksbGreen";
     this.ksbGreen.Orientation = ExtendedControls.Base.Code.ScrollBar.CustomScrollBar.ScrollBarOrientation.HORIZONTAL;
     this.ksbGreen.Size        = new System.Drawing.Size(224, 19);
     this.ksbGreen.TabIndex    = 59;
     //
     // ksbRed
     //
     this.ksbRed.Location    = new System.Drawing.Point(80, 311);
     this.ksbRed.Maximum     = 255;
     this.ksbRed.Name        = "ksbRed";
     this.ksbRed.Orientation = ExtendedControls.Base.Code.ScrollBar.CustomScrollBar.ScrollBarOrientation.HORIZONTAL;
     this.ksbRed.Size        = new System.Drawing.Size(224, 19);
     this.ksbRed.TabIndex    = 59;
     //
     // ksbBrightness
     //
     this.ksbBrightness.Location    = new System.Drawing.Point(80, 279);
     this.ksbBrightness.Maximum     = 255;
     this.ksbBrightness.Name        = "ksbBrightness";
     this.ksbBrightness.Orientation = ExtendedControls.Base.Code.ScrollBar.CustomScrollBar.ScrollBarOrientation.HORIZONTAL;
     this.ksbBrightness.Size        = new System.Drawing.Size(224, 19);
     this.ksbBrightness.TabIndex    = 59;
     //
     // ksbSaturation
     //
     this.ksbSaturation.Location    = new System.Drawing.Point(80, 255);
     this.ksbSaturation.Maximum     = 255;
     this.ksbSaturation.Name        = "ksbSaturation";
     this.ksbSaturation.Orientation = ExtendedControls.Base.Code.ScrollBar.CustomScrollBar.ScrollBarOrientation.HORIZONTAL;
     this.ksbSaturation.Size        = new System.Drawing.Size(224, 19);
     this.ksbSaturation.TabIndex    = 56;
     //
     // ksbHue
     //
     this.ksbHue.Location    = new System.Drawing.Point(80, 230);
     this.ksbHue.Maximum     = 255;
     this.ksbHue.Name        = "ksbHue";
     this.ksbHue.Orientation = ExtendedControls.Base.Code.ScrollBar.CustomScrollBar.ScrollBarOrientation.HORIZONTAL;
     this.ksbHue.Size        = new System.Drawing.Size(224, 19);
     this.ksbHue.TabIndex    = 55;
     //
     // KryptonColourChooser2
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor         = System.Drawing.Color.White;
     this.ClientSize        = new System.Drawing.Size(368, 389);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.btnOK);
     this.Controls.Add(this.pnlColor);
     this.Controls.Add(this.pnlSelectedColor);
     this.Controls.Add(this.pnlBrightness);
     this.Controls.Add(this.kpnlbg);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "KryptonColourChooser2";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Select Colour";
     this.Load           += new System.EventHandler(this.ColourChooser2_Load);
     this.Paint          += new System.Windows.Forms.PaintEventHandler(this.ColorChooser2_Paint);
     this.MouseDown      += new System.Windows.Forms.MouseEventHandler(this.HandleMouse);
     this.MouseMove      += new System.Windows.Forms.MouseEventHandler(this.HandleMouse);
     this.MouseUp        += new System.Windows.Forms.MouseEventHandler(this.frmMain_MouseUp);
     ((System.ComponentModel.ISupportInitialize)(this.kpnlbg)).EndInit();
     this.kpnlbg.ResumeLayout(false);
     this.kpnlbg.PerformLayout();
     this.ResumeLayout(false);
 }
Exemplo n.º 7
0
 private void InitializeComponent()
 {
     ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues popupPositionValues1  = new ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues();
     ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues popupPositionValues2  = new ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues();
     ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues popupPositionValues3  = new ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues();
     ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues popupPositionValues4  = new ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues();
     ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues popupPositionValues10 = new ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues();
     ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues popupPositionValues5  = new ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues();
     ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues popupPositionValues6  = new ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues();
     ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues popupPositionValues7  = new ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues();
     ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues popupPositionValues8  = new ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues();
     ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues popupPositionValues9  = new ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainWindow));
     this.kryptonPanel1     = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kryptonLabel1     = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.pictureBox1       = new System.Windows.Forms.PictureBox();
     this.kryptonPanel2     = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kryptonLinkLabel1 = new ComponentFactory.Krypton.Toolkit.KryptonLinkLabel();
     this.kryptonButton2    = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kryptonButton1    = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.panel1            = new System.Windows.Forms.Panel();
     this.kryptonPanel3     = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kryptonNavigator1 = new ComponentFactory.Krypton.Navigator.KryptonNavigator();
     this.kryptonPage1      = new ComponentFactory.Krypton.Navigator.KryptonPage();
     this.krtbDescription   = new ComponentFactory.Krypton.Toolkit.KryptonRichTextBox();
     this.kryptonLabel4     = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.ktbEMailAddress   = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this.kryptonLabel3     = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kryptonLabel2     = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kryptonPage2      = new ComponentFactory.Krypton.Navigator.KryptonPage();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).BeginInit();
     this.kryptonPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel3)).BeginInit();
     this.kryptonPanel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonNavigator1)).BeginInit();
     this.kryptonNavigator1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPage1)).BeginInit();
     this.kryptonPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPage2)).BeginInit();
     this.SuspendLayout();
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.kryptonLabel1);
     this.kryptonPanel1.Controls.Add(this.pictureBox1);
     this.kryptonPanel1.Dock           = System.Windows.Forms.DockStyle.Top;
     this.kryptonPanel1.Location       = new System.Drawing.Point(0, 0);
     this.kryptonPanel1.Name           = "kryptonPanel1";
     this.kryptonPanel1.PanelBackStyle = ComponentFactory.Krypton.Toolkit.PaletteBackStyle.ControlCustom1;
     this.kryptonPanel1.Size           = new System.Drawing.Size(794, 100);
     this.kryptonPanel1.TabIndex       = 0;
     //
     // kryptonLabel1
     //
     this.kryptonLabel1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.kryptonLabel1.Location = new System.Drawing.Point(0, 0);
     this.kryptonLabel1.Name     = "kryptonLabel1";
     this.kryptonLabel1.Size     = new System.Drawing.Size(694, 100);
     this.kryptonLabel1.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI Semibold", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel1.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI Semibold", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel1.TabIndex                      = 1;
     popupPositionValues1.PlacementRectangle          = new System.Drawing.Rectangle(0, 0, 0, 0);
     popupPositionValues1.PlacementTarget             = null;
     this.kryptonLabel1.ToolTipValues.ToolTipPosition = popupPositionValues1;
     this.kryptonLabel1.Values.Text                   = "{0} has encountered a problem, and needs to close. \r\nWe apologise for the inconve" +
                                                        "nience that this may have caused.";
     //
     // pictureBox1
     //
     this.pictureBox1.BackColor = System.Drawing.Color.Transparent;
     this.pictureBox1.Dock      = System.Windows.Forms.DockStyle.Right;
     this.pictureBox1.Image     = global::ExtendedControls.Properties.Resources.Error_Report_48_x_48;
     this.pictureBox1.Location  = new System.Drawing.Point(694, 0);
     this.pictureBox1.Name      = "pictureBox1";
     this.pictureBox1.Size      = new System.Drawing.Size(100, 100);
     this.pictureBox1.SizeMode  = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
     this.pictureBox1.TabIndex  = 0;
     this.pictureBox1.TabStop   = false;
     //
     // kryptonPanel2
     //
     this.kryptonPanel2.Controls.Add(this.kryptonLinkLabel1);
     this.kryptonPanel2.Controls.Add(this.kryptonButton2);
     this.kryptonPanel2.Controls.Add(this.kryptonButton1);
     this.kryptonPanel2.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.kryptonPanel2.Location = new System.Drawing.Point(0, 702);
     this.kryptonPanel2.Name     = "kryptonPanel2";
     this.kryptonPanel2.Size     = new System.Drawing.Size(794, 62);
     this.kryptonPanel2.TabIndex = 1;
     //
     // kryptonLinkLabel1
     //
     this.kryptonLinkLabel1.Location = new System.Drawing.Point(11, 19);
     this.kryptonLinkLabel1.Name     = "kryptonLinkLabel1";
     this.kryptonLinkLabel1.Size     = new System.Drawing.Size(103, 24);
     this.kryptonLinkLabel1.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLinkLabel1.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLinkLabel1.TabIndex         = 2;
     popupPositionValues2.PlacementRectangle = new System.Drawing.Rectangle(0, 0, 0, 0);
     popupPositionValues2.PlacementTarget    = null;
     this.kryptonLinkLabel1.ToolTipValues.ToolTipPosition = popupPositionValues2;
     this.kryptonLinkLabel1.Values.Text = "&Privacy Policy";
     //
     // kryptonButton2
     //
     this.kryptonButton2.Location = new System.Drawing.Point(504, 15);
     this.kryptonButton2.Name     = "kryptonButton2";
     this.kryptonButton2.Size     = new System.Drawing.Size(182, 35);
     this.kryptonButton2.StateCommon.Content.LongText.Font  = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonButton2.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonButton2.TabIndex                      = 1;
     popupPositionValues3.PlacementRectangle           = new System.Drawing.Rectangle(0, 0, 0, 0);
     popupPositionValues3.PlacementTarget              = null;
     this.kryptonButton2.ToolTipValues.ToolTipPosition = popupPositionValues3;
     this.kryptonButton2.Values.Text                   = "Send R&eport && Close";
     //
     // kryptonButton1
     //
     this.kryptonButton1.Location = new System.Drawing.Point(692, 15);
     this.kryptonButton1.Name     = "kryptonButton1";
     this.kryptonButton1.Size     = new System.Drawing.Size(90, 35);
     this.kryptonButton1.StateCommon.Content.LongText.Font  = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonButton1.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonButton1.TabIndex                      = 0;
     popupPositionValues4.PlacementRectangle           = new System.Drawing.Rectangle(0, 0, 0, 0);
     popupPositionValues4.PlacementTarget              = null;
     this.kryptonButton1.ToolTipValues.ToolTipPosition = popupPositionValues4;
     this.kryptonButton1.Values.Text                   = "&Cancel";
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.SystemColors.ControlDarkDark;
     this.panel1.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Location  = new System.Drawing.Point(0, 699);
     this.panel1.Name      = "panel1";
     this.panel1.Size      = new System.Drawing.Size(794, 3);
     this.panel1.TabIndex  = 2;
     //
     // kryptonPanel3
     //
     this.kryptonPanel3.Controls.Add(this.kryptonNavigator1);
     this.kryptonPanel3.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.kryptonPanel3.Location = new System.Drawing.Point(0, 100);
     this.kryptonPanel3.Name     = "kryptonPanel3";
     this.kryptonPanel3.Size     = new System.Drawing.Size(794, 599);
     this.kryptonPanel3.TabIndex = 3;
     //
     // kryptonNavigator1
     //
     this.kryptonNavigator1.Bar.TabBorderStyle        = ComponentFactory.Krypton.Toolkit.TabBorderStyle.OneNote;
     this.kryptonNavigator1.Button.CloseButtonAction  = ComponentFactory.Krypton.Navigator.CloseButtonAction.None;
     this.kryptonNavigator1.Button.CloseButtonDisplay = ComponentFactory.Krypton.Navigator.ButtonDisplay.Hide;
     this.kryptonNavigator1.Location = new System.Drawing.Point(11, 20);
     this.kryptonNavigator1.Name     = "kryptonNavigator1";
     this.kryptonNavigator1.Pages.AddRange(new ComponentFactory.Krypton.Navigator.KryptonPage[] {
         this.kryptonPage1,
         this.kryptonPage2
     });
     this.kryptonNavigator1.SelectedIndex                 = 1;
     this.kryptonNavigator1.Size                          = new System.Drawing.Size(771, 561);
     this.kryptonNavigator1.TabIndex                      = 0;
     this.kryptonNavigator1.Text                          = "kryptonNavigator1";
     popupPositionValues10.PlacementRectangle             = new System.Drawing.Rectangle(0, 0, 0, 0);
     popupPositionValues10.PlacementTarget                = null;
     this.kryptonNavigator1.ToolTipValues.ToolTipPosition = popupPositionValues10;
     //
     // kryptonPage1
     //
     this.kryptonPage1.AutoHiddenSlideSize = new System.Drawing.Size(200, 200);
     this.kryptonPage1.Controls.Add(this.krtbDescription);
     this.kryptonPage1.Controls.Add(this.kryptonLabel4);
     this.kryptonPage1.Controls.Add(this.ktbEMailAddress);
     this.kryptonPage1.Controls.Add(this.kryptonLabel3);
     this.kryptonPage1.Controls.Add(this.kryptonLabel2);
     this.kryptonPage1.Flags          = 65534;
     this.kryptonPage1.LastVisibleSet = true;
     this.kryptonPage1.MinimumSize    = new System.Drawing.Size(50, 50);
     this.kryptonPage1.Name           = "kryptonPage1";
     this.kryptonPage1.Size           = new System.Drawing.Size(769, 530);
     this.kryptonPage1.Text           = "kryptonPage1";
     this.kryptonPage1.ToolTipTitle   = "Page ToolTip";
     this.kryptonPage1.UniqueName     = "e785ffa321ae493da8cc7176dd254426";
     //
     // krtbDescription
     //
     this.krtbDescription.Location   = new System.Drawing.Point(19, 296);
     this.krtbDescription.MaxLength  = 250;
     this.krtbDescription.Name       = "krtbDescription";
     this.krtbDescription.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.ForcedVertical;
     this.krtbDescription.Size       = new System.Drawing.Size(732, 223);
     this.krtbDescription.StateCommon.Content.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.krtbDescription.TabIndex                      = 9;
     this.krtbDescription.Text                          = "";
     popupPositionValues5.PlacementRectangle            = new System.Drawing.Rectangle(0, 0, 0, 0);
     popupPositionValues5.PlacementTarget               = null;
     this.krtbDescription.ToolTipValues.ToolTipPosition = popupPositionValues5;
     //
     // kryptonLabel4
     //
     this.kryptonLabel4.Location = new System.Drawing.Point(19, 266);
     this.kryptonLabel4.Name     = "kryptonLabel4";
     this.kryptonLabel4.Size     = new System.Drawing.Size(221, 24);
     this.kryptonLabel4.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel4.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel4.TabIndex                      = 8;
     popupPositionValues6.PlacementRectangle          = new System.Drawing.Rectangle(0, 0, 0, 0);
     popupPositionValues6.PlacementTarget             = null;
     this.kryptonLabel4.ToolTipValues.ToolTipPosition = popupPositionValues6;
     this.kryptonLabel4.Values.Text                   = "Your e-mail address (optional):";
     //
     // ktbEMailAddress
     //
     this.ktbEMailAddress.Location  = new System.Drawing.Point(19, 229);
     this.ktbEMailAddress.MaxLength = 50;
     this.ktbEMailAddress.Name      = "ktbEMailAddress";
     this.ktbEMailAddress.Size      = new System.Drawing.Size(732, 27);
     this.ktbEMailAddress.StateCommon.Content.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ktbEMailAddress.TabIndex                      = 7;
     popupPositionValues7.PlacementRectangle            = new System.Drawing.Rectangle(0, 0, 0, 0);
     popupPositionValues7.PlacementTarget               = null;
     this.ktbEMailAddress.ToolTipValues.ToolTipPosition = popupPositionValues7;
     //
     // kryptonLabel3
     //
     this.kryptonLabel3.Location = new System.Drawing.Point(19, 199);
     this.kryptonLabel3.Name     = "kryptonLabel3";
     this.kryptonLabel3.Size     = new System.Drawing.Size(221, 24);
     this.kryptonLabel3.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel3.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel3.TabIndex                      = 6;
     popupPositionValues8.PlacementRectangle          = new System.Drawing.Rectangle(0, 0, 0, 0);
     popupPositionValues8.PlacementTarget             = null;
     this.kryptonLabel3.ToolTipValues.ToolTipPosition = popupPositionValues8;
     this.kryptonLabel3.Values.Text                   = "Your e-mail address (optional):";
     //
     // kryptonLabel2
     //
     this.kryptonLabel2.Location = new System.Drawing.Point(19, 13);
     this.kryptonLabel2.Name     = "kryptonLabel2";
     this.kryptonLabel2.Size     = new System.Drawing.Size(738, 164);
     this.kryptonLabel2.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel2.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel2.TabIndex                      = 5;
     popupPositionValues9.PlacementRectangle          = new System.Drawing.Rectangle(0, 0, 0, 0);
     popupPositionValues9.PlacementTarget             = null;
     this.kryptonLabel2.ToolTipValues.ToolTipPosition = popupPositionValues9;
     this.kryptonLabel2.Values.Text                   = resources.GetString("kryptonLabel2.Values.Text");
     //
     // kryptonPage2
     //
     this.kryptonPage2.AutoHiddenSlideSize = new System.Drawing.Size(200, 200);
     this.kryptonPage2.Flags          = 65534;
     this.kryptonPage2.LastVisibleSet = true;
     this.kryptonPage2.MinimumSize    = new System.Drawing.Size(50, 50);
     this.kryptonPage2.Name           = "kryptonPage2";
     this.kryptonPage2.Size           = new System.Drawing.Size(769, 530);
     this.kryptonPage2.Text           = "kryptonPage2";
     this.kryptonPage2.ToolTipTitle   = "Page ToolTip";
     this.kryptonPage2.UniqueName     = "22073fe462004e44ace939648bbb9bfa";
     //
     // MainWindow
     //
     this.ClientSize = new System.Drawing.Size(794, 764);
     this.Controls.Add(this.kryptonPanel3);
     this.Controls.Add(this.panel1);
     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            = "MainWindow";
     this.ShowIcon        = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "{0) Error";
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
     this.kryptonPanel1.ResumeLayout(false);
     this.kryptonPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).EndInit();
     this.kryptonPanel2.ResumeLayout(false);
     this.kryptonPanel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel3)).EndInit();
     this.kryptonPanel3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonNavigator1)).EndInit();
     this.kryptonNavigator1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPage1)).EndInit();
     this.kryptonPage1.ResumeLayout(false);
     this.kryptonPage1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPage2)).EndInit();
     this.ResumeLayout(false);
 }
 private void InitializeComponent()
 {
     this.kryptonWizard1  = new ExtendedControls.ExtendedToolkit.Wizard.Controls.KryptonWizard();
     this.wizardPage1     = new ExtendedControls.ExtendedToolkit.Wizard.Classes.WizardPage();
     this.kryptonTextBox1 = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this.wizardPage4     = new ExtendedControls.ExtendedToolkit.Wizard.Classes.WizardPage();
     this.kryptonTextBox4 = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this.wizardPage3     = new ExtendedControls.ExtendedToolkit.Wizard.Classes.WizardPage();
     this.kryptonTextBox3 = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this.wizardPage2     = new ExtendedControls.ExtendedToolkit.Wizard.Classes.WizardPage();
     this.kryptonTextBox2 = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this.kryptonWizard1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.wizardPage1)).BeginInit();
     this.wizardPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.wizardPage4)).BeginInit();
     this.wizardPage4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.wizardPage3)).BeginInit();
     this.wizardPage3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.wizardPage2)).BeginInit();
     this.wizardPage2.SuspendLayout();
     this.SuspendLayout();
     //
     // kryptonWizard1
     //
     this.kryptonWizard1.Controls.Add(this.wizardPage3);
     this.kryptonWizard1.Controls.Add(this.wizardPage2);
     this.kryptonWizard1.Controls.Add(this.wizardPage1);
     this.kryptonWizard1.Controls.Add(this.wizardPage4);
     this.kryptonWizard1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.kryptonWizard1.Font     = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonWizard1.Location = new System.Drawing.Point(0, 0);
     this.kryptonWizard1.Name     = "kryptonWizard1";
     this.kryptonWizard1.Pages.AddRange(new ExtendedControls.ExtendedToolkit.Wizard.Classes.WizardPage[] {
         this.wizardPage1,
         this.wizardPage2,
         this.wizardPage3,
         this.wizardPage4
     });
     this.kryptonWizard1.Size     = new System.Drawing.Size(1138, 785);
     this.kryptonWizard1.TabIndex = 0;
     //
     // wizardPage1
     //
     this.wizardPage1.Controls.Add(this.kryptonTextBox1);
     this.wizardPage1.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.wizardPage1.IsFinishPage = false;
     this.wizardPage1.Location     = new System.Drawing.Point(0, 0);
     this.wizardPage1.Name         = "wizardPage1";
     this.wizardPage1.Size         = new System.Drawing.Size(1138, 737);
     this.wizardPage1.TabIndex     = 2;
     //
     // kryptonTextBox1
     //
     this.kryptonTextBox1.Location = new System.Drawing.Point(237, 230);
     this.kryptonTextBox1.Name     = "kryptonTextBox1";
     this.kryptonTextBox1.Size     = new System.Drawing.Size(100, 23);
     this.kryptonTextBox1.TabIndex = 0;
     this.kryptonTextBox1.Text     = "Page - 1";
     //
     // wizardPage4
     //
     this.wizardPage4.Controls.Add(this.kryptonTextBox4);
     this.wizardPage4.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.wizardPage4.IsFinishPage = false;
     this.wizardPage4.Location     = new System.Drawing.Point(0, 0);
     this.wizardPage4.Name         = "wizardPage4";
     this.wizardPage4.Size         = new System.Drawing.Size(1138, 737);
     this.wizardPage4.TabIndex     = 5;
     //
     // kryptonTextBox4
     //
     this.kryptonTextBox4.Location = new System.Drawing.Point(0, 0);
     this.kryptonTextBox4.Name     = "kryptonTextBox4";
     this.kryptonTextBox4.Size     = new System.Drawing.Size(100, 23);
     this.kryptonTextBox4.TabIndex = 0;
     this.kryptonTextBox4.Text     = "Page - 4";
     //
     // wizardPage3
     //
     this.wizardPage3.Controls.Add(this.kryptonTextBox3);
     this.wizardPage3.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.wizardPage3.IsFinishPage = false;
     this.wizardPage3.Location     = new System.Drawing.Point(0, 0);
     this.wizardPage3.Name         = "wizardPage3";
     this.wizardPage3.Size         = new System.Drawing.Size(1138, 737);
     this.wizardPage3.TabIndex     = 4;
     //
     // kryptonTextBox3
     //
     this.kryptonTextBox3.Location = new System.Drawing.Point(0, 0);
     this.kryptonTextBox3.Name     = "kryptonTextBox3";
     this.kryptonTextBox3.Size     = new System.Drawing.Size(100, 23);
     this.kryptonTextBox3.TabIndex = 0;
     this.kryptonTextBox3.Text     = "Page - 3";
     //
     // wizardPage2
     //
     this.wizardPage2.Controls.Add(this.kryptonTextBox2);
     this.wizardPage2.Dock         = System.Windows.Forms.DockStyle.Fill;
     this.wizardPage2.IsFinishPage = false;
     this.wizardPage2.Location     = new System.Drawing.Point(0, 0);
     this.wizardPage2.Name         = "wizardPage2";
     this.wizardPage2.Size         = new System.Drawing.Size(1138, 737);
     this.wizardPage2.TabIndex     = 3;
     //
     // kryptonTextBox2
     //
     this.kryptonTextBox2.Location = new System.Drawing.Point(0, 0);
     this.kryptonTextBox2.Name     = "kryptonTextBox2";
     this.kryptonTextBox2.Size     = new System.Drawing.Size(100, 23);
     this.kryptonTextBox2.TabIndex = 0;
     this.kryptonTextBox2.Text     = "Page - 2";
     //
     // KryptonWizardExample
     //
     this.ClientSize = new System.Drawing.Size(1138, 785);
     this.Controls.Add(this.kryptonWizard1);
     this.Name = "KryptonWizardExample";
     this.kryptonWizard1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.wizardPage1)).EndInit();
     this.wizardPage1.ResumeLayout(false);
     this.wizardPage1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.wizardPage4)).EndInit();
     this.wizardPage4.ResumeLayout(false);
     this.wizardPage4.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.wizardPage3)).EndInit();
     this.wizardPage3.ResumeLayout(false);
     this.wizardPage3.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.wizardPage2)).EndInit();
     this.wizardPage2.ResumeLayout(false);
     this.wizardPage2.PerformLayout();
     this.ResumeLayout(false);
 }
Exemplo n.º 9
0
        private void selecionarTabelasFilhaToolStripMenuItem_Click(object sender, EventArgs e)
        {
            try
            {


                if (lbTabelas.SelectedItem != null)
                {
                    TabPage pgPai = tabControl1.TabPages[0];
                    tabControl1.TabPages.Clear();
                    tabControl1.TabPages.Add(pgPai);

                    TabPage pgMod = tabModels.TabPages[0];
                    tabModels.TabPages.Clear();
                    tabModels.TabPages.Add(pgMod);


                    string TabPai = lbTabelas.SelectedValue.ToString();
                    string PkPai = objbo.CarregaPK(TabPai)[0];

                    UIListaTabelasFilha Uitab = new UIListaTabelasFilha(TabPai, objbo);
                    Uitab.ShowDialog();
                    lTabelasFilhas = Uitab.lTabelas;

                    RepositoryPai rep = new RepositoryPai(TabPai, PkPai);
                    txtPaiRepository.Text = rep.Inject() + rep.Save() + rep.Delete() + rep.Copy() + rep.Get() + rep.Transactions();

                    ServicePai servPai = new ServicePai(TabPai, objbo.CarregaPK(TabPai)[0], lTabelasFilhas);
                    txtPaiService.Text = servPai.Inject() + servPai.Save() + servPai.Delete() + servPai.Copy() + servPai.Get();

                    if (cbParameterOrder.Enabled)
                    {
                        txtPaiModel.Text = objbo.GerarPropriedadesWithOrder(TabPai, false);
                    }
                    else
                    {
                        txtPaiModel.Text = objbo.GerarPropriedades(TabPai, false);
                    }


                    int iTxtRep = 1;
                    int iTxtSer = 1;
                    int iTxtMod = 1;

                    if (lTabelasFilhas == null) return;

                    foreach (string TabFilha in lTabelasFilhas)
                    {
                        tabControl1.TabPages.Add("tab" + TabFilha, TabFilha);
                        tabControl1.TabPages["tab" + TabFilha].BackColor = Color.White;

                        TabControl tabc = new TabControl();
                        tabc.Dock = DockStyle.Fill;

                        TabPage tabRepository = new TabPage("Repository");
                        tabRepository.BackColor = Color.White;

                        TabPage tabService = new TabPage("Service");
                        tabService.BackColor = Color.White;

                        KryptonTextBox txtRep = new KryptonTextBox();
                        txtRep.Name = "txt" + iTxtRep.ToString();
                        txtRep.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.SparkleBlue;
                        txtRep.Multiline = true;
                        txtRep.ScrollBars = ScrollBars.Vertical;
                        txtRep.Dock = DockStyle.Fill;

                        RepositoryFilho repFilho = new RepositoryFilho(TabFilha, PkPai, objbo.CarregaPK(TabFilha)[0]);
                        txtRep.Text = repFilho.Save() + repFilho.Update() + repFilho.Delete() + repFilho.Delete2() + repFilho.Copy() + repFilho.Get() + repFilho.GetAll();

                        KryptonTextBox txtSer = new KryptonTextBox();
                        txtSer.Name = "txt" + iTxtSer.ToString();
                        txtSer.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.SparkleBlue;
                        txtSer.Multiline = true;
                        txtSer.ScrollBars = ScrollBars.Vertical;
                        txtSer.Dock = DockStyle.Fill;
                        ServiceFilho servFilho = new ServiceFilho(PkPai, objbo.CarregaPK(TabFilha)[0], TabFilha);
                        txtSer.Text = servFilho.Save() + servFilho.Update() + servFilho.Delete() + servFilho.Delete2() + servFilho.Copy() + servFilho.Get() + servFilho.GetAll();


                        tabRepository.Controls.Add(txtRep);
                        tabService.Controls.Add(txtSer);

                        tabc.TabPages.Add(tabRepository);
                        tabc.TabPages.Add(tabService);

                        tabControl1.TabPages["tab" + TabFilha].Controls.Add(tabc);

                        TabPage tabModel = new TabPage(TabFilha);
                        tabService.BackColor = Color.White;

                        KryptonTextBox txtMod = new KryptonTextBox();
                        txtMod.Name = "txt" + iTxtMod.ToString();
                        txtMod.Multiline = true;
                        txtMod.ScrollBars = ScrollBars.Vertical;
                        txtMod.Dock = DockStyle.Fill;

                        if (cbParameterOrder.Enabled)
                        {
                            txtMod.Text = objbo.GerarPropriedadesWithOrder(TabFilha, true);
                        }
                        else
                        {
                            txtMod.Text = objbo.GerarPropriedades(TabFilha, true);
                        }


                        tabModel.Controls.Add(txtMod);
                        tabModels.TabPages.Add(tabModel);


                        iTxtRep++;
                        iTxtSer++;
                        iTxtMod++;
                    }
                }
            }
            catch (Exception)
            {
                txtPaiModel.Text = "";
                txtPaiRepository.Text = "";
                txtPaiService.Text = "";
            }
        }
 private void InitializeComponent()
 {
     this.kryptonPanel1              = new Krypton.Toolkit.KryptonPanel();
     this.kryptonOKDialogButton1     = new Krypton.Toolkit.Extended.Base.KryptonOKDialogButton();
     this.kryptonCancelDialogButton1 = new Krypton.Toolkit.Extended.Base.KryptonCancelDialogButton();
     this.panel1                = new System.Windows.Forms.Panel();
     this.kryptonPanel2         = new Krypton.Toolkit.KryptonPanel();
     this.kryptonButton3        = new Krypton.Toolkit.KryptonButton();
     this.kryptonButton2        = new Krypton.Toolkit.KryptonButton();
     this.kryptonButton1        = new Krypton.Toolkit.KryptonButton();
     this.kryptonTextBox1       = new Krypton.Toolkit.KryptonTextBox();
     this.kryptonLabel7         = new Krypton.Toolkit.KryptonLabel();
     this.colourWheelControl1   = new Krypton.Toolkit.Extended.Colour.Controls.ColourWheelControl();
     this.kryptonNumericUpDown6 = new Krypton.Toolkit.KryptonNumericUpDown();
     this.kryptonNumericUpDown5 = new Krypton.Toolkit.KryptonNumericUpDown();
     this.kryptonNumericUpDown4 = new Krypton.Toolkit.KryptonNumericUpDown();
     this.kryptonNumericUpDown3 = new Krypton.Toolkit.KryptonNumericUpDown();
     this.kryptonNumericUpDown2 = new Krypton.Toolkit.KryptonNumericUpDown();
     this.kryptonNumericUpDown1 = new Krypton.Toolkit.KryptonNumericUpDown();
     this.kryptonLabel6         = new Krypton.Toolkit.KryptonLabel();
     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.kryptonLabel1         = new Krypton.Toolkit.KryptonLabel();
     this.circularPictureBox1   = new Krypton.Toolkit.Extended.Base.CircularPictureBox();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).BeginInit();
     this.kryptonPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.circularPictureBox1)).BeginInit();
     this.SuspendLayout();
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.kryptonOKDialogButton1);
     this.kryptonPanel1.Controls.Add(this.kryptonCancelDialogButton1);
     this.kryptonPanel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.kryptonPanel1.Location = new System.Drawing.Point(0, 315);
     this.kryptonPanel1.Name     = "kryptonPanel1";
     this.kryptonPanel1.Size     = new System.Drawing.Size(471, 41);
     this.kryptonPanel1.TabIndex = 0;
     //
     // kryptonOKDialogButton1
     //
     this.kryptonOKDialogButton1.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.kryptonOKDialogButton1.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.kryptonOKDialogButton1.Location     = new System.Drawing.Point(273, 4);
     this.kryptonOKDialogButton1.Name         = "kryptonOKDialogButton1";
     this.kryptonOKDialogButton1.ParentWindow = this;
     this.kryptonOKDialogButton1.Size         = new System.Drawing.Size(90, 25);
     this.kryptonOKDialogButton1.TabIndex     = 1;
     this.kryptonOKDialogButton1.Values.Text  = "&OK";
     //
     // kryptonCancelDialogButton1
     //
     this.kryptonCancelDialogButton1.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.kryptonCancelDialogButton1.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.kryptonCancelDialogButton1.Location     = new System.Drawing.Point(369, 4);
     this.kryptonCancelDialogButton1.Name         = "kryptonCancelDialogButton1";
     this.kryptonCancelDialogButton1.ParentWindow = this;
     this.kryptonCancelDialogButton1.Size         = new System.Drawing.Size(90, 25);
     this.kryptonCancelDialogButton1.TabIndex     = 0;
     this.kryptonCancelDialogButton1.Values.Text  = "C&ancel";
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.SystemColors.ControlDarkDark;
     this.panel1.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Location  = new System.Drawing.Point(0, 312);
     this.panel1.Name      = "panel1";
     this.panel1.Size      = new System.Drawing.Size(471, 3);
     this.panel1.TabIndex  = 1;
     //
     // kryptonPanel2
     //
     this.kryptonPanel2.Controls.Add(this.kryptonButton3);
     this.kryptonPanel2.Controls.Add(this.kryptonButton2);
     this.kryptonPanel2.Controls.Add(this.kryptonButton1);
     this.kryptonPanel2.Controls.Add(this.kryptonTextBox1);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel7);
     this.kryptonPanel2.Controls.Add(this.colourWheelControl1);
     this.kryptonPanel2.Controls.Add(this.circularPictureBox1);
     this.kryptonPanel2.Controls.Add(this.kryptonNumericUpDown6);
     this.kryptonPanel2.Controls.Add(this.kryptonNumericUpDown5);
     this.kryptonPanel2.Controls.Add(this.kryptonNumericUpDown4);
     this.kryptonPanel2.Controls.Add(this.kryptonNumericUpDown3);
     this.kryptonPanel2.Controls.Add(this.kryptonNumericUpDown2);
     this.kryptonPanel2.Controls.Add(this.kryptonNumericUpDown1);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel6);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel5);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel4);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel3);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel2);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel1);
     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(471, 312);
     this.kryptonPanel2.TabIndex = 2;
     //
     // kryptonButton3
     //
     this.kryptonButton3.AutoSize     = true;
     this.kryptonButton3.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.kryptonButton3.Location     = new System.Drawing.Point(42, 221);
     this.kryptonButton3.Name         = "kryptonButton3";
     this.kryptonButton3.Size         = new System.Drawing.Size(22, 22);
     this.kryptonButton3.TabIndex     = 21;
     this.kryptonButton3.Values.Image = global::Krypton.Toolkit.Extended.Colour.Controls.Properties.Resources.palette_save;
     this.kryptonButton3.Values.Text  = "";
     //
     // kryptonButton2
     //
     this.kryptonButton2.AutoSize     = true;
     this.kryptonButton2.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.kryptonButton2.Location     = new System.Drawing.Point(14, 221);
     this.kryptonButton2.Name         = "kryptonButton2";
     this.kryptonButton2.Size         = new System.Drawing.Size(22, 22);
     this.kryptonButton2.TabIndex     = 20;
     this.kryptonButton2.Values.Image = global::Krypton.Toolkit.Extended.Colour.Controls.Properties.Resources.palette_load;
     this.kryptonButton2.Values.Text  = "";
     //
     // kryptonButton1
     //
     this.kryptonButton1.Location    = new System.Drawing.Point(14, 252);
     this.kryptonButton1.Name        = "kryptonButton1";
     this.kryptonButton1.Size        = new System.Drawing.Size(152, 25);
     this.kryptonButton1.TabIndex    = 19;
     this.kryptonButton1.Values.Text = "&More Colours...";
     //
     // kryptonTextBox1
     //
     this.kryptonTextBox1.Hint      = "#000000";
     this.kryptonTextBox1.Location  = new System.Drawing.Point(12, 171);
     this.kryptonTextBox1.MaxLength = 7;
     this.kryptonTextBox1.Name      = "kryptonTextBox1";
     this.kryptonTextBox1.Size      = new System.Drawing.Size(154, 24);
     this.kryptonTextBox1.StateCommon.Content.Font  = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonTextBox1.StateCommon.Content.TextH = Krypton.Toolkit.PaletteRelativeAlign.Inherit;
     this.kryptonTextBox1.TabIndex  = 18;
     this.kryptonTextBox1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // kryptonLabel7
     //
     this.kryptonLabel7.Location = new System.Drawing.Point(12, 144);
     this.kryptonLabel7.Name     = "kryptonLabel7";
     this.kryptonLabel7.Size     = new System.Drawing.Size(154, 21);
     this.kryptonLabel7.StateCommon.ShortText.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel7.TabIndex    = 17;
     this.kryptonLabel7.Values.Text = "Hexadecimal Value:";
     //
     // colourWheelControl1
     //
     this.colourWheelControl1.BackColor = System.Drawing.Color.Transparent;
     this.colourWheelControl1.Location  = new System.Drawing.Point(208, 121);
     this.colourWheelControl1.Name      = "colourWheelControl1";
     this.colourWheelControl1.Size      = new System.Drawing.Size(251, 185);
     this.colourWheelControl1.TabIndex  = 16;
     //
     // kryptonNumericUpDown6
     //
     this.kryptonNumericUpDown6.Location = new System.Drawing.Point(275, 92);
     this.kryptonNumericUpDown6.Maximum  = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.kryptonNumericUpDown6.Name = "kryptonNumericUpDown6";
     this.kryptonNumericUpDown6.Size = new System.Drawing.Size(79, 23);
     this.kryptonNumericUpDown6.StateCommon.Back.Color1    = System.Drawing.Color.Blue;
     this.kryptonNumericUpDown6.StateCommon.Content.Color1 = System.Drawing.Color.White;
     this.kryptonNumericUpDown6.StateCommon.Content.Font   = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonNumericUpDown6.StateCommon.Content.TextH  = Krypton.Toolkit.PaletteRelativeAlign.Inherit;
     this.kryptonNumericUpDown6.TabIndex = 14;
     //
     // kryptonNumericUpDown5
     //
     this.kryptonNumericUpDown5.Location = new System.Drawing.Point(275, 52);
     this.kryptonNumericUpDown5.Maximum  = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.kryptonNumericUpDown5.Name = "kryptonNumericUpDown5";
     this.kryptonNumericUpDown5.Size = new System.Drawing.Size(79, 23);
     this.kryptonNumericUpDown5.StateCommon.Back.Color1    = System.Drawing.Color.Green;
     this.kryptonNumericUpDown5.StateCommon.Content.Color1 = System.Drawing.Color.White;
     this.kryptonNumericUpDown5.StateCommon.Content.Font   = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonNumericUpDown5.StateCommon.Content.TextH  = Krypton.Toolkit.PaletteRelativeAlign.Inherit;
     this.kryptonNumericUpDown5.TabIndex = 13;
     //
     // kryptonNumericUpDown4
     //
     this.kryptonNumericUpDown4.Location = new System.Drawing.Point(275, 12);
     this.kryptonNumericUpDown4.Maximum  = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.kryptonNumericUpDown4.Name = "kryptonNumericUpDown4";
     this.kryptonNumericUpDown4.Size = new System.Drawing.Size(79, 23);
     this.kryptonNumericUpDown4.StateCommon.Back.Color1    = System.Drawing.Color.Red;
     this.kryptonNumericUpDown4.StateCommon.Content.Color1 = System.Drawing.Color.White;
     this.kryptonNumericUpDown4.StateCommon.Content.Font   = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonNumericUpDown4.StateCommon.Content.TextH  = Krypton.Toolkit.PaletteRelativeAlign.Inherit;
     this.kryptonNumericUpDown4.TabIndex = 12;
     //
     // kryptonNumericUpDown3
     //
     this.kryptonNumericUpDown3.Location = new System.Drawing.Point(110, 92);
     this.kryptonNumericUpDown3.Maximum  = new decimal(new int[] {
         360,
         0,
         0,
         0
     });
     this.kryptonNumericUpDown3.Name = "kryptonNumericUpDown3";
     this.kryptonNumericUpDown3.Size = new System.Drawing.Size(79, 23);
     this.kryptonNumericUpDown3.StateCommon.Content.Font  = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonNumericUpDown3.StateCommon.Content.TextH = Krypton.Toolkit.PaletteRelativeAlign.Inherit;
     this.kryptonNumericUpDown3.TabIndex = 11;
     //
     // kryptonNumericUpDown2
     //
     this.kryptonNumericUpDown2.Location = new System.Drawing.Point(110, 12);
     this.kryptonNumericUpDown2.Maximum  = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.kryptonNumericUpDown2.Name = "kryptonNumericUpDown2";
     this.kryptonNumericUpDown2.Size = new System.Drawing.Size(79, 23);
     this.kryptonNumericUpDown2.StateCommon.Content.Font  = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonNumericUpDown2.StateCommon.Content.TextH = Krypton.Toolkit.PaletteRelativeAlign.Inherit;
     this.kryptonNumericUpDown2.TabIndex = 10;
     //
     // kryptonNumericUpDown1
     //
     this.kryptonNumericUpDown1.Location = new System.Drawing.Point(110, 52);
     this.kryptonNumericUpDown1.Maximum  = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.kryptonNumericUpDown1.Name = "kryptonNumericUpDown1";
     this.kryptonNumericUpDown1.Size = new System.Drawing.Size(79, 23);
     this.kryptonNumericUpDown1.StateCommon.Content.Font  = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonNumericUpDown1.StateCommon.Content.TextH = Krypton.Toolkit.PaletteRelativeAlign.Inherit;
     this.kryptonNumericUpDown1.TabIndex = 9;
     //
     // kryptonLabel6
     //
     this.kryptonLabel6.Location = new System.Drawing.Point(208, 92);
     this.kryptonLabel6.Name     = "kryptonLabel6";
     this.kryptonLabel6.Size     = new System.Drawing.Size(48, 21);
     this.kryptonLabel6.StateCommon.ShortText.Color1 = System.Drawing.Color.Blue;
     this.kryptonLabel6.StateCommon.ShortText.Color2 = System.Drawing.Color.Blue;
     this.kryptonLabel6.StateCommon.ShortText.Font   = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel6.TabIndex    = 8;
     this.kryptonLabel6.Values.Text = "Blue:";
     //
     // kryptonLabel5
     //
     this.kryptonLabel5.Location = new System.Drawing.Point(208, 52);
     this.kryptonLabel5.Name     = "kryptonLabel5";
     this.kryptonLabel5.Size     = new System.Drawing.Size(61, 21);
     this.kryptonLabel5.StateCommon.ShortText.Color1 = System.Drawing.Color.Green;
     this.kryptonLabel5.StateCommon.ShortText.Color2 = System.Drawing.Color.Green;
     this.kryptonLabel5.StateCommon.ShortText.Font   = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel5.TabIndex    = 7;
     this.kryptonLabel5.Values.Text = "Green:";
     //
     // kryptonLabel4
     //
     this.kryptonLabel4.Location = new System.Drawing.Point(208, 12);
     this.kryptonLabel4.Name     = "kryptonLabel4";
     this.kryptonLabel4.Size     = new System.Drawing.Size(45, 21);
     this.kryptonLabel4.StateCommon.ShortText.Color1 = System.Drawing.Color.Red;
     this.kryptonLabel4.StateCommon.ShortText.Color2 = System.Drawing.Color.Red;
     this.kryptonLabel4.StateCommon.ShortText.Font   = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel4.TabIndex    = 6;
     this.kryptonLabel4.Values.Text = "Red:";
     //
     // kryptonLabel3
     //
     this.kryptonLabel3.Location = new System.Drawing.Point(12, 92);
     this.kryptonLabel3.Name     = "kryptonLabel3";
     this.kryptonLabel3.Size     = new System.Drawing.Size(45, 21);
     this.kryptonLabel3.StateCommon.ShortText.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel3.TabIndex    = 5;
     this.kryptonLabel3.Values.Text = "Hue:";
     //
     // kryptonLabel2
     //
     this.kryptonLabel2.Location = new System.Drawing.Point(12, 52);
     this.kryptonLabel2.Name     = "kryptonLabel2";
     this.kryptonLabel2.Size     = new System.Drawing.Size(92, 21);
     this.kryptonLabel2.StateCommon.ShortText.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel2.TabIndex    = 4;
     this.kryptonLabel2.Values.Text = "Brightness:";
     //
     // kryptonLabel1
     //
     this.kryptonLabel1.Location = new System.Drawing.Point(12, 12);
     this.kryptonLabel1.Name     = "kryptonLabel1";
     this.kryptonLabel1.Size     = new System.Drawing.Size(57, 21);
     this.kryptonLabel1.StateCommon.ShortText.Font = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel1.TabIndex    = 3;
     this.kryptonLabel1.Values.Text = "Alpha:";
     //
     // circularPictureBox1
     //
     this.circularPictureBox1.BackColor     = System.Drawing.SystemColors.Control;
     this.circularPictureBox1.Location      = new System.Drawing.Point(361, 12);
     this.circularPictureBox1.Name          = "circularPictureBox1";
     this.circularPictureBox1.Size          = new System.Drawing.Size(101, 101);
     this.circularPictureBox1.TabIndex      = 15;
     this.circularPictureBox1.TabStop       = false;
     this.circularPictureBox1.ToolTipValues = null;
     //
     // KryptonColourButtonCustomColourDialog
     //
     this.ClientSize = new System.Drawing.Size(471, 356);
     this.Controls.Add(this.kryptonPanel2);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.kryptonPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
     this.MinimizeBox     = false;
     this.Name            = "KryptonColourButtonCustomColourDialog";
     this.ShowIcon        = false;
     this.ShowInTaskbar   = false;
     this.Text            = "Select Colour";
     ((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.circularPictureBox1)).EndInit();
     this.ResumeLayout(false);
 }
 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);
 }
 private void InitializeComponent()
 {
     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.ktxtPrompt    = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this.kwlMessage    = new ComponentFactory.Krypton.Toolkit.KryptonWrapLabel();
     this.panel1        = new System.Windows.Forms.Panel();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).BeginInit();
     this.kryptonPanel2.SuspendLayout();
     this.SuspendLayout();
     //
     // kryptonPanel1
     //
     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, 212);
     this.kryptonPanel1.Name     = "kryptonPanel1";
     this.kryptonPanel1.Size     = new System.Drawing.Size(622, 49);
     this.kryptonPanel1.TabIndex = 0;
     //
     // kbtnOK
     //
     this.kbtnOK.Location    = new System.Drawing.Point(424, 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.Enabled     = false;
     this.kbtnOK.Click      += new System.EventHandler(this.kbtnOK_Click);
     //
     // kbtnCancel
     //
     this.kbtnCancel.Location    = new System.Drawing.Point(520, 12);
     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);
     //
     // kryptonPanel2
     //
     this.kryptonPanel2.Controls.Add(this.ktxtPrompt);
     this.kryptonPanel2.Controls.Add(this.kwlMessage);
     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(622, 212);
     this.kryptonPanel2.TabIndex = 1;
     //
     // ktxtPrompt
     //
     this.ktxtPrompt.Location = new System.Drawing.Point(12, 178);
     this.ktxtPrompt.Name     = "ktxtPrompt";
     this.ktxtPrompt.Size     = new System.Drawing.Size(598, 24);
     this.ktxtPrompt.StateCommon.Content.Font  = new System.Drawing.Font("Microsoft Sans Serif", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ktxtPrompt.StateCommon.Content.TextH = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Inherit;
     this.ktxtPrompt.TabIndex     = 3;
     this.ktxtPrompt.TextChanged += new System.EventHandler(ktxtPrompt_TextChanged);
     //
     // kwlMessage
     //
     this.kwlMessage.AutoSize         = false;
     this.kwlMessage.Font             = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kwlMessage.ForeColor        = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(57)))), ((int)(((byte)(91)))));
     this.kwlMessage.Location         = new System.Drawing.Point(12, 9);
     this.kwlMessage.Name             = "kwlMessage";
     this.kwlMessage.Size             = new System.Drawing.Size(598, 156);
     this.kwlMessage.StateCommon.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kwlMessage.Text             = "{0}";
     this.kwlMessage.TextAlign        = System.Drawing.ContentAlignment.MiddleLeft;
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.SystemColors.ControlDarkDark;
     this.panel1.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Location  = new System.Drawing.Point(0, 209);
     this.panel1.Name      = "panel1";
     this.panel1.Size      = new System.Drawing.Size(622, 3);
     this.panel1.TabIndex  = 2;
     //
     // KryptonInputBox
     //
     this.ClientSize = new System.Drawing.Size(622, 261);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.kryptonPanel2);
     this.Controls.Add(this.kryptonPanel1);
     this.MaximizeBox   = false;
     this.MinimizeBox   = false;
     this.Name          = "KryptonInputBox";
     this.ShowIcon      = false;
     this.ShowInTaskbar = false;
     this.FormClosing  += new FormClosingEventHandler(KryptonInputBox_FormClosing);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
     this.kryptonPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).EndInit();
     this.kryptonPanel2.ResumeLayout(false);
     this.kryptonPanel2.PerformLayout();
     this.ResumeLayout(false);
 }
 private void InitializeComponent()
 {
     this.kryptonPanelExtended1 = new ExtendedStandardControls.KryptonPanelExtended();
     this.kryptonLabelExtended1 = new ExtendedStandardControls.KryptonLabelExtended();
     this.ktxtFilePath          = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this.kbtnBrowse            = new ExtendedStandardControls.KryptonButtonExtended();
     this.kbtnGetDetails        = new ExtendedStandardControls.KryptonButtonExtended();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanelExtended1)).BeginInit();
     this.kryptonPanelExtended1.SuspendLayout();
     this.SuspendLayout();
     //
     // kryptonPanelExtended1
     //
     this.kryptonPanelExtended1.Controls.Add(this.kbtnGetDetails);
     this.kryptonPanelExtended1.Controls.Add(this.kbtnBrowse);
     this.kryptonPanelExtended1.Controls.Add(this.ktxtFilePath);
     this.kryptonPanelExtended1.Controls.Add(this.kryptonLabelExtended1);
     this.kryptonPanelExtended1.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.kryptonPanelExtended1.Image    = null;
     this.kryptonPanelExtended1.Location = new System.Drawing.Point(0, 0);
     this.kryptonPanelExtended1.Name     = "kryptonPanelExtended1";
     this.kryptonPanelExtended1.Size     = new System.Drawing.Size(951, 92);
     this.kryptonPanelExtended1.StateCommonBackGroundColourOne   = System.Drawing.Color.Empty;
     this.kryptonPanelExtended1.StateCommonBackGroundColourTwo   = System.Drawing.Color.Empty;
     this.kryptonPanelExtended1.StateDisabledBackGroundColourOne = System.Drawing.Color.Empty;
     this.kryptonPanelExtended1.StateDisabledBackGroundColourTwo = System.Drawing.Color.Empty;
     this.kryptonPanelExtended1.StateNormalBackGroundColourOne   = System.Drawing.Color.Empty;
     this.kryptonPanelExtended1.StateNormalBackGroundColourTwo   = System.Drawing.Color.Empty;
     this.kryptonPanelExtended1.TabIndex = 0;
     //
     // 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", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabelExtended1.Size                         = new System.Drawing.Size(97, 30);
     this.kryptonLabelExtended1.StateCommon.ShortText.Font   = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabelExtended1.StateCommonTextColourOne     = System.Drawing.Color.Empty;
     this.kryptonLabelExtended1.StateCommonTextColourTwo     = System.Drawing.Color.Empty;
     this.kryptonLabelExtended1.StateDisabled.ShortText.Font = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabelExtended1.StateDisabledTextColourOne   = System.Drawing.Color.Empty;
     this.kryptonLabelExtended1.StateDisabledTextColourTwo   = System.Drawing.Color.Empty;
     this.kryptonLabelExtended1.StateNormal.ShortText.Font   = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabelExtended1.StateNormalTextColourOne     = System.Drawing.Color.Empty;
     this.kryptonLabelExtended1.StateNormalTextColourTwo     = System.Drawing.Color.Empty;
     this.kryptonLabelExtended1.TabIndex                     = 1;
     this.kryptonLabelExtended1.Values.Text                  = "File Path:";
     //
     // ktxtFilePath
     //
     this.ktxtFilePath.Hint     = "Path to file...";
     this.ktxtFilePath.Location = new System.Drawing.Point(115, 12);
     this.ktxtFilePath.Name     = "ktxtFilePath";
     this.ktxtFilePath.Size     = new System.Drawing.Size(775, 29);
     this.ktxtFilePath.StateCommon.Content.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ktxtFilePath.StateCommon.Content.TextH = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Inherit;
     this.ktxtFilePath.TabIndex     = 2;
     this.ktxtFilePath.TextChanged += new System.EventHandler(this.ktxtFilePath_TextChanged);
     //
     // kbtnBrowse
     //
     this.kbtnBrowse.Image            = null;
     this.kbtnBrowse.Location         = new System.Drawing.Point(896, 12);
     this.kbtnBrowse.LongTextTypeface = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.kbtnBrowse.Name             = "kbtnBrowse";
     this.kbtnBrowse.OverrideDefault.Content.LongText.Font  = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.kbtnBrowse.OverrideDefault.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnBrowse.OverrideDefaultBackGroundColourOne     = System.Drawing.Color.Empty;
     this.kbtnBrowse.OverrideDefaultBackGroundColourTwo     = System.Drawing.Color.Empty;
     this.kbtnBrowse.OverrideDefaultLongTextColourOne       = System.Drawing.Color.Empty;
     this.kbtnBrowse.OverrideDefaultLongTextColourTwo       = System.Drawing.Color.Empty;
     this.kbtnBrowse.OverrideDefaultShortTextColourOne      = System.Drawing.Color.Empty;
     this.kbtnBrowse.OverrideDefaultShortTextColourTwo      = System.Drawing.Color.Empty;
     this.kbtnBrowse.OverrideFocus.Content.LongText.Font    = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.kbtnBrowse.OverrideFocus.Content.ShortText.Font   = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnBrowse.OverrideFocusBackGroundColourOne       = System.Drawing.Color.Empty;
     this.kbtnBrowse.OverrideFocusBackGroundColourTwo       = System.Drawing.Color.Empty;
     this.kbtnBrowse.OverrideFocusLongTextColourOne         = System.Drawing.Color.Empty;
     this.kbtnBrowse.OverrideFocusLongTextColourTwo         = System.Drawing.Color.Empty;
     this.kbtnBrowse.OverrideFocusShortTextColourOne        = System.Drawing.Color.Empty;
     this.kbtnBrowse.OverrideFocusShortTextColourTwo        = System.Drawing.Color.Empty;
     this.kbtnBrowse.ShortTextTypeface = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnBrowse.Size = new System.Drawing.Size(43, 29);
     this.kbtnBrowse.StateCommon.Content.LongText.Font    = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.kbtnBrowse.StateCommon.Content.ShortText.Font   = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnBrowse.StateCommonBackGroundColourOne       = System.Drawing.Color.Empty;
     this.kbtnBrowse.StateCommonBackGroundColourTwo       = System.Drawing.Color.Empty;
     this.kbtnBrowse.StateCommonLongTextColourOne         = System.Drawing.Color.Empty;
     this.kbtnBrowse.StateCommonLongTextColourTwo         = System.Drawing.Color.Empty;
     this.kbtnBrowse.StateCommonShortTextColourOne        = System.Drawing.Color.Empty;
     this.kbtnBrowse.StateCommonShortTextColourTwo        = System.Drawing.Color.Empty;
     this.kbtnBrowse.StateDisabled.Content.LongText.Font  = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.kbtnBrowse.StateDisabled.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnBrowse.StateDisabledBackGroundColourOne     = System.Drawing.Color.Empty;
     this.kbtnBrowse.StateDisabledBackGroundColourTwo     = System.Drawing.Color.Empty;
     this.kbtnBrowse.StateDisabledLongTextColourOne       = System.Drawing.Color.Empty;
     this.kbtnBrowse.StateDisabledLongTextColourTwo       = System.Drawing.Color.Empty;
     this.kbtnBrowse.StateDisabledShortTextColourOne      = System.Drawing.Color.Empty;
     this.kbtnBrowse.StateDisabledShortTextColourTwo      = System.Drawing.Color.Empty;
     this.kbtnBrowse.StateNormal.Content.LongText.Font    = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.kbtnBrowse.StateNormal.Content.ShortText.Font   = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnBrowse.StateNormalBackGroundColourOne       = System.Drawing.Color.Empty;
     this.kbtnBrowse.StateNormalBackGroundColourTwo       = System.Drawing.Color.Empty;
     this.kbtnBrowse.StateNormalLongTextColourOne         = System.Drawing.Color.Empty;
     this.kbtnBrowse.StateNormalLongTextColourTwo         = System.Drawing.Color.Empty;
     this.kbtnBrowse.StateNormalShortTextColourOne        = System.Drawing.Color.Empty;
     this.kbtnBrowse.StateNormalShortTextColourTwo        = System.Drawing.Color.Empty;
     this.kbtnBrowse.StatePressed.Content.LongText.Font   = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.kbtnBrowse.StatePressed.Content.ShortText.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnBrowse.StatePressedBackGroundColourOne      = System.Drawing.Color.Empty;
     this.kbtnBrowse.StatePressedBackGroundColourTwo      = System.Drawing.Color.Empty;
     this.kbtnBrowse.StatePressedLongTextColourOne        = System.Drawing.Color.Empty;
     this.kbtnBrowse.StatePressedLongTextColourTwo        = System.Drawing.Color.Empty;
     this.kbtnBrowse.StatePressedShortTextColourOne       = System.Drawing.Color.Empty;
     this.kbtnBrowse.StatePressedShortTextColourTwo       = System.Drawing.Color.Empty;
     this.kbtnBrowse.StateTracking.Content.LongText.Font  = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.kbtnBrowse.StateTracking.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnBrowse.StateTrackingBackGroundColourOne     = System.Drawing.Color.Empty;
     this.kbtnBrowse.StateTrackingBackGroundColourTwo     = System.Drawing.Color.Empty;
     this.kbtnBrowse.StateTrackingLongTextColourOne       = System.Drawing.Color.Empty;
     this.kbtnBrowse.StateTrackingLongTextColourTwo       = System.Drawing.Color.Empty;
     this.kbtnBrowse.StateTrackingShortTextColourOne      = System.Drawing.Color.Empty;
     this.kbtnBrowse.StateTrackingShortTextColourTwo      = System.Drawing.Color.Empty;
     this.kbtnBrowse.TabIndex    = 1;
     this.kbtnBrowse.Values.Text = "..&.";
     this.kbtnBrowse.Click      += new System.EventHandler(this.kbtnBrowse_Click);
     //
     // kbtnGetDetails
     //
     this.kbtnGetDetails.Enabled          = false;
     this.kbtnGetDetails.Image            = null;
     this.kbtnGetDetails.Location         = new System.Drawing.Point(714, 47);
     this.kbtnGetDetails.LongTextTypeface = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.kbtnGetDetails.Name             = "kbtnGetDetails";
     this.kbtnGetDetails.OverrideDefault.Content.LongText.Font  = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.kbtnGetDetails.OverrideDefault.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnGetDetails.OverrideDefaultBackGroundColourOne     = System.Drawing.Color.Empty;
     this.kbtnGetDetails.OverrideDefaultBackGroundColourTwo     = System.Drawing.Color.Empty;
     this.kbtnGetDetails.OverrideDefaultLongTextColourOne       = System.Drawing.Color.Empty;
     this.kbtnGetDetails.OverrideDefaultLongTextColourTwo       = System.Drawing.Color.Empty;
     this.kbtnGetDetails.OverrideDefaultShortTextColourOne      = System.Drawing.Color.Empty;
     this.kbtnGetDetails.OverrideDefaultShortTextColourTwo      = System.Drawing.Color.Empty;
     this.kbtnGetDetails.OverrideFocus.Content.LongText.Font    = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.kbtnGetDetails.OverrideFocus.Content.ShortText.Font   = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnGetDetails.OverrideFocusBackGroundColourOne       = System.Drawing.Color.Empty;
     this.kbtnGetDetails.OverrideFocusBackGroundColourTwo       = System.Drawing.Color.Empty;
     this.kbtnGetDetails.OverrideFocusLongTextColourOne         = System.Drawing.Color.Empty;
     this.kbtnGetDetails.OverrideFocusLongTextColourTwo         = System.Drawing.Color.Empty;
     this.kbtnGetDetails.OverrideFocusShortTextColourOne        = System.Drawing.Color.Empty;
     this.kbtnGetDetails.OverrideFocusShortTextColourTwo        = System.Drawing.Color.Empty;
     this.kbtnGetDetails.ShortTextTypeface = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnGetDetails.Size = new System.Drawing.Size(225, 29);
     this.kbtnGetDetails.StateCommon.Content.LongText.Font    = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.kbtnGetDetails.StateCommon.Content.ShortText.Font   = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnGetDetails.StateCommonBackGroundColourOne       = System.Drawing.Color.Empty;
     this.kbtnGetDetails.StateCommonBackGroundColourTwo       = System.Drawing.Color.Empty;
     this.kbtnGetDetails.StateCommonLongTextColourOne         = System.Drawing.Color.Empty;
     this.kbtnGetDetails.StateCommonLongTextColourTwo         = System.Drawing.Color.Empty;
     this.kbtnGetDetails.StateCommonShortTextColourOne        = System.Drawing.Color.Empty;
     this.kbtnGetDetails.StateCommonShortTextColourTwo        = System.Drawing.Color.Empty;
     this.kbtnGetDetails.StateDisabled.Content.LongText.Font  = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.kbtnGetDetails.StateDisabled.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnGetDetails.StateDisabledBackGroundColourOne     = System.Drawing.Color.Empty;
     this.kbtnGetDetails.StateDisabledBackGroundColourTwo     = System.Drawing.Color.Empty;
     this.kbtnGetDetails.StateDisabledLongTextColourOne       = System.Drawing.Color.Empty;
     this.kbtnGetDetails.StateDisabledLongTextColourTwo       = System.Drawing.Color.Empty;
     this.kbtnGetDetails.StateDisabledShortTextColourOne      = System.Drawing.Color.Empty;
     this.kbtnGetDetails.StateDisabledShortTextColourTwo      = System.Drawing.Color.Empty;
     this.kbtnGetDetails.StateNormal.Content.LongText.Font    = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.kbtnGetDetails.StateNormal.Content.ShortText.Font   = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnGetDetails.StateNormalBackGroundColourOne       = System.Drawing.Color.Empty;
     this.kbtnGetDetails.StateNormalBackGroundColourTwo       = System.Drawing.Color.Empty;
     this.kbtnGetDetails.StateNormalLongTextColourOne         = System.Drawing.Color.Empty;
     this.kbtnGetDetails.StateNormalLongTextColourTwo         = System.Drawing.Color.Empty;
     this.kbtnGetDetails.StateNormalShortTextColourOne        = System.Drawing.Color.Empty;
     this.kbtnGetDetails.StateNormalShortTextColourTwo        = System.Drawing.Color.Empty;
     this.kbtnGetDetails.StatePressed.Content.LongText.Font   = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.kbtnGetDetails.StatePressed.Content.ShortText.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnGetDetails.StatePressedBackGroundColourOne      = System.Drawing.Color.Empty;
     this.kbtnGetDetails.StatePressedBackGroundColourTwo      = System.Drawing.Color.Empty;
     this.kbtnGetDetails.StatePressedLongTextColourOne        = System.Drawing.Color.Empty;
     this.kbtnGetDetails.StatePressedLongTextColourTwo        = System.Drawing.Color.Empty;
     this.kbtnGetDetails.StatePressedShortTextColourOne       = System.Drawing.Color.Empty;
     this.kbtnGetDetails.StatePressedShortTextColourTwo       = System.Drawing.Color.Empty;
     this.kbtnGetDetails.StateTracking.Content.LongText.Font  = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
     this.kbtnGetDetails.StateTracking.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnGetDetails.StateTrackingBackGroundColourOne     = System.Drawing.Color.Empty;
     this.kbtnGetDetails.StateTrackingBackGroundColourTwo     = System.Drawing.Color.Empty;
     this.kbtnGetDetails.StateTrackingLongTextColourOne       = System.Drawing.Color.Empty;
     this.kbtnGetDetails.StateTrackingLongTextColourTwo       = System.Drawing.Color.Empty;
     this.kbtnGetDetails.StateTrackingShortTextColourOne      = System.Drawing.Color.Empty;
     this.kbtnGetDetails.StateTrackingShortTextColourTwo      = System.Drawing.Color.Empty;
     this.kbtnGetDetails.TabIndex    = 3;
     this.kbtnGetDetails.Values.Text = "&Get File Version Details";
     this.kbtnGetDetails.Click      += new System.EventHandler(this.kbtnGetDetails_Click);
     //
     // FileVersion
     //
     this.ClientSize = new System.Drawing.Size(951, 92);
     this.Controls.Add(this.kryptonPanelExtended1);
     this.Name = "FileVersion";
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanelExtended1)).EndInit();
     this.kryptonPanelExtended1.ResumeLayout(false);
     this.kryptonPanelExtended1.PerformLayout();
     this.ResumeLayout(false);
 }
Exemplo n.º 14
0
 private void InitializeComponent()
 {
     this.kpnlButtons           = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kbtnCancel            = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kbtnOk                = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kbtnApply             = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kpnlContent           = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kbtnLoadTheme         = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kbtnBrowse            = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.ktxtCustomPath        = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this.klblCustomTheme       = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kcmbPaletteTheme      = new ComponentFactory.Krypton.Toolkit.KryptonComboBox();
     this.kryptonLabel1         = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.pnlSeperator          = new System.Windows.Forms.Panel();
     this.kbtnRestoreToDefaults = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     ((System.ComponentModel.ISupportInitialize)(this.kpnlButtons)).BeginInit();
     this.kpnlButtons.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kpnlContent)).BeginInit();
     this.kpnlContent.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kcmbPaletteTheme)).BeginInit();
     this.SuspendLayout();
     //
     // kpnlButtons
     //
     this.kpnlButtons.Controls.Add(this.kbtnRestoreToDefaults);
     this.kpnlButtons.Controls.Add(this.kbtnCancel);
     this.kpnlButtons.Controls.Add(this.kbtnOk);
     this.kpnlButtons.Controls.Add(this.kbtnApply);
     this.kpnlButtons.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.kpnlButtons.Location = new System.Drawing.Point(0, 142);
     this.kpnlButtons.Name     = "kpnlButtons";
     this.kpnlButtons.Size     = new System.Drawing.Size(781, 54);
     this.kpnlButtons.TabIndex = 0;
     //
     // 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(583, 12);
     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.StateCommon.Content.ShortText.ImageStyle = ComponentFactory.Krypton.Toolkit.PaletteImageStyle.Inherit;
     this.kbtnCancel.StateCommon.Content.ShortText.Trim       = ComponentFactory.Krypton.Toolkit.PaletteTextTrim.Inherit;
     this.kbtnCancel.TabIndex    = 2;
     this.kbtnCancel.Values.Text = "&Cancel";
     this.kbtnCancel.Click      += new System.EventHandler(this.kbtnCancel_Click);
     //
     // kbtnOk
     //
     this.kbtnOk.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.kbtnOk.Location = new System.Drawing.Point(487, 12);
     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.StateCommon.Content.ShortText.ImageStyle = ComponentFactory.Krypton.Toolkit.PaletteImageStyle.Inherit;
     this.kbtnOk.StateCommon.Content.ShortText.Trim       = ComponentFactory.Krypton.Toolkit.PaletteTextTrim.Inherit;
     this.kbtnOk.TabIndex    = 1;
     this.kbtnOk.Values.Text = "&Ok";
     this.kbtnOk.Click      += new System.EventHandler(this.kbtnOk_Click);
     //
     // kbtnApply
     //
     this.kbtnApply.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.kbtnApply.Enabled  = false;
     this.kbtnApply.Location = new System.Drawing.Point(679, 12);
     this.kbtnApply.Name     = "kbtnApply";
     this.kbtnApply.Size     = new System.Drawing.Size(90, 30);
     this.kbtnApply.StateCommon.Content.ShortText.Font       = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnApply.StateCommon.Content.ShortText.ImageStyle = ComponentFactory.Krypton.Toolkit.PaletteImageStyle.Inherit;
     this.kbtnApply.StateCommon.Content.ShortText.Trim       = ComponentFactory.Krypton.Toolkit.PaletteTextTrim.Inherit;
     this.kbtnApply.TabIndex    = 0;
     this.kbtnApply.Values.Text = "A&pply";
     this.kbtnApply.Click      += new System.EventHandler(this.kbtnApply_Click);
     //
     // kpnlContent
     //
     this.kpnlContent.Controls.Add(this.kbtnLoadTheme);
     this.kpnlContent.Controls.Add(this.kbtnBrowse);
     this.kpnlContent.Controls.Add(this.ktxtCustomPath);
     this.kpnlContent.Controls.Add(this.klblCustomTheme);
     this.kpnlContent.Controls.Add(this.kcmbPaletteTheme);
     this.kpnlContent.Controls.Add(this.kryptonLabel1);
     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(781, 142);
     this.kpnlContent.TabIndex = 1;
     //
     // kbtnLoadTheme
     //
     this.kbtnLoadTheme.AutoSize     = true;
     this.kbtnLoadTheme.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.kbtnLoadTheme.Enabled      = false;
     this.kbtnLoadTheme.Location     = new System.Drawing.Point(720, 87);
     this.kbtnLoadTheme.Name         = "kbtnLoadTheme";
     this.kbtnLoadTheme.Size         = new System.Drawing.Size(47, 30);
     this.kbtnLoadTheme.StateCommon.Content.ShortText.Font       = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnLoadTheme.StateCommon.Content.ShortText.ImageStyle = ComponentFactory.Krypton.Toolkit.PaletteImageStyle.Inherit;
     this.kbtnLoadTheme.StateCommon.Content.ShortText.Trim       = ComponentFactory.Krypton.Toolkit.PaletteTextTrim.Inherit;
     this.kbtnLoadTheme.TabIndex    = 5;
     this.kbtnLoadTheme.Values.Text = "&Load";
     this.kbtnLoadTheme.Click      += new System.EventHandler(this.kbtnLoadTheme_Click);
     //
     // kbtnBrowse
     //
     this.kbtnBrowse.AutoSize     = true;
     this.kbtnBrowse.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.kbtnBrowse.Enabled      = false;
     this.kbtnBrowse.Location     = new System.Drawing.Point(744, 51);
     this.kbtnBrowse.Name         = "kbtnBrowse";
     this.kbtnBrowse.Size         = new System.Drawing.Size(23, 30);
     this.kbtnBrowse.StateCommon.Content.ShortText.Font       = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnBrowse.StateCommon.Content.ShortText.ImageStyle = ComponentFactory.Krypton.Toolkit.PaletteImageStyle.Inherit;
     this.kbtnBrowse.StateCommon.Content.ShortText.Trim       = ComponentFactory.Krypton.Toolkit.PaletteTextTrim.Inherit;
     this.kbtnBrowse.TabIndex    = 4;
     this.kbtnBrowse.Values.Text = ".&..";
     this.kbtnBrowse.Click      += new System.EventHandler(this.kbtnBrowse_Click);
     //
     // ktxtCustomPath
     //
     this.ktxtCustomPath.Enabled  = false;
     this.ktxtCustomPath.Location = new System.Drawing.Point(248, 52);
     this.ktxtCustomPath.Name     = "ktxtCustomPath";
     this.ktxtCustomPath.Size     = new System.Drawing.Size(490, 29);
     this.ktxtCustomPath.StateCommon.Content.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ktxtCustomPath.TabIndex     = 3;
     this.ktxtCustomPath.TextChanged += new System.EventHandler(this.ktxtCustomPath_TextChanged);
     //
     // klblCustomTheme
     //
     this.klblCustomTheme.Enabled  = false;
     this.klblCustomTheme.Location = new System.Drawing.Point(38, 55);
     this.klblCustomTheme.Name     = "klblCustomTheme";
     this.klblCustomTheme.Size     = new System.Drawing.Size(204, 26);
     this.klblCustomTheme.StateCommon.ShortText.Font       = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.klblCustomTheme.StateCommon.ShortText.ImageStyle = ComponentFactory.Krypton.Toolkit.PaletteImageStyle.Inherit;
     this.klblCustomTheme.StateCommon.ShortText.Trim       = ComponentFactory.Krypton.Toolkit.PaletteTextTrim.Inherit;
     this.klblCustomTheme.TabIndex    = 2;
     this.klblCustomTheme.Values.Text = "Custom Theme File Path:";
     //
     // kcmbPaletteTheme
     //
     this.kcmbPaletteTheme.DropDownWidth = 216;
     this.kcmbPaletteTheme.Location      = new System.Drawing.Point(147, 12);
     this.kcmbPaletteTheme.Name          = "kcmbPaletteTheme";
     this.kcmbPaletteTheme.Size          = new System.Drawing.Size(216, 27);
     this.kcmbPaletteTheme.StateCommon.ComboBox.Content.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kcmbPaletteTheme.TabIndex              = 1;
     this.kcmbPaletteTheme.SelectedIndexChanged += new System.EventHandler(this.kcmbPaletteTheme_SelectedIndexChanged);
     this.kcmbPaletteTheme.TextChanged          += new System.EventHandler(this.kcmbPaletteTheme_TextChanged);
     //
     // kryptonLabel1
     //
     this.kryptonLabel1.Location = new System.Drawing.Point(12, 12);
     this.kryptonLabel1.Name     = "kryptonLabel1";
     this.kryptonLabel1.Size     = new System.Drawing.Size(128, 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.StateCommon.ShortText.ImageStyle = ComponentFactory.Krypton.Toolkit.PaletteImageStyle.Inherit;
     this.kryptonLabel1.StateCommon.ShortText.Trim       = ComponentFactory.Krypton.Toolkit.PaletteTextTrim.Inherit;
     this.kryptonLabel1.TabIndex    = 0;
     this.kryptonLabel1.Values.Text = "Palette Theme:";
     //
     // pnlSeperator
     //
     this.pnlSeperator.BackColor = System.Drawing.SystemColors.ControlDarkDark;
     this.pnlSeperator.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.pnlSeperator.Location  = new System.Drawing.Point(0, 139);
     this.pnlSeperator.Name      = "pnlSeperator";
     this.pnlSeperator.Size      = new System.Drawing.Size(781, 3);
     this.pnlSeperator.TabIndex  = 2;
     //
     // kbtnRestoreToDefaults
     //
     this.kbtnRestoreToDefaults.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.kbtnRestoreToDefaults.Enabled  = false;
     this.kbtnRestoreToDefaults.Location = new System.Drawing.Point(12, 12);
     this.kbtnRestoreToDefaults.Name     = "kbtnRestoreToDefaults";
     this.kbtnRestoreToDefaults.Size     = new System.Drawing.Size(163, 30);
     this.kbtnRestoreToDefaults.StateCommon.Content.ShortText.Font       = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnRestoreToDefaults.StateCommon.Content.ShortText.ImageStyle = ComponentFactory.Krypton.Toolkit.PaletteImageStyle.Inherit;
     this.kbtnRestoreToDefaults.StateCommon.Content.ShortText.Trim       = ComponentFactory.Krypton.Toolkit.PaletteTextTrim.Inherit;
     this.kbtnRestoreToDefaults.TabIndex    = 3;
     this.kbtnRestoreToDefaults.Values.Text = "&Restore to Defaults";
     this.kbtnRestoreToDefaults.Click      += new System.EventHandler(this.kbtnRestoreToDefaults_Click);
     //
     // ThemeOptions
     //
     this.AcceptButton = this.kbtnOk;
     this.CancelButton = this.kbtnCancel;
     this.ClientSize   = new System.Drawing.Size(781, 196);
     this.Controls.Add(this.pnlSeperator);
     this.Controls.Add(this.kpnlContent);
     this.Controls.Add(this.kpnlButtons);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "ThemeOptions";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "Palette Theme Options";
     this.Load           += new System.EventHandler(this.ThemeOptions_Load);
     ((System.ComponentModel.ISupportInitialize)(this.kpnlButtons)).EndInit();
     this.kpnlButtons.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kpnlContent)).EndInit();
     this.kpnlContent.ResumeLayout(false);
     this.kpnlContent.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kcmbPaletteTheme)).EndInit();
     this.ResumeLayout(false);
 }
Exemplo n.º 15
0
 private void InitializeComponent()
 {
     this.kryptonPanel1   = new Krypton.Toolkit.KryptonPanel();
     this.kbtnBack        = new Krypton.Toolkit.KryptonButton();
     this.ktxtDescription = new Krypton.Toolkit.KryptonTextBox();
     this.klblDescription = new Krypton.Toolkit.KryptonLabel();
     this.klblVersions    = new Krypton.Toolkit.KryptonLabel();
     this.pictureBox1     = new System.Windows.Forms.PictureBox();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.SuspendLayout();
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.kbtnBack);
     this.kryptonPanel1.Controls.Add(this.ktxtDescription);
     this.kryptonPanel1.Controls.Add(this.klblDescription);
     this.kryptonPanel1.Controls.Add(this.klblVersions);
     this.kryptonPanel1.Controls.Add(this.pictureBox1);
     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(284, 261);
     this.kryptonPanel1.TabIndex = 0;
     //
     // kbtnBack
     //
     this.kbtnBack.Location    = new System.Drawing.Point(98, 225);
     this.kbtnBack.Name        = "kbtnBack";
     this.kbtnBack.Size        = new System.Drawing.Size(90, 25);
     this.kbtnBack.TabIndex    = 9;
     this.kbtnBack.Values.Text = "&Back";
     this.kbtnBack.Click      += new System.EventHandler(this.kbtnBack_Click);
     //
     // ktxtDescription
     //
     this.ktxtDescription.Location   = new System.Drawing.Point(12, 124);
     this.ktxtDescription.Multiline  = true;
     this.ktxtDescription.Name       = "ktxtDescription";
     this.ktxtDescription.ReadOnly   = true;
     this.ktxtDescription.ScrollBars = System.Windows.Forms.ScrollBars.Both;
     this.ktxtDescription.Size       = new System.Drawing.Size(260, 95);
     this.ktxtDescription.TabIndex   = 8;
     this.ktxtDescription.KeyDown   += new System.Windows.Forms.KeyEventHandler(this.ktxtDescription_KeyDown);
     //
     // klblDescription
     //
     this.klblDescription.Location    = new System.Drawing.Point(12, 98);
     this.klblDescription.Name        = "klblDescription";
     this.klblDescription.Size        = new System.Drawing.Size(75, 20);
     this.klblDescription.TabIndex    = 7;
     this.klblDescription.Values.Text = "Description:";
     //
     // klblVersions
     //
     this.klblVersions.AutoSize = false;
     this.klblVersions.Location = new System.Drawing.Point(98, 22);
     this.klblVersions.Name     = "klblVersions";
     this.klblVersions.Size     = new System.Drawing.Size(174, 61);
     this.klblVersions.StateCommon.ShortText.TextH = Krypton.Toolkit.PaletteRelativeAlign.Center;
     this.klblVersions.TabIndex    = 6;
     this.klblVersions.Values.Text = "";
     //
     // pictureBox1
     //
     this.pictureBox1.BackColor = System.Drawing.Color.Transparent;
     this.pictureBox1.Image     = global::Krypton.Toolkit.Extended.Software.Updater.Properties.Resources.update2;
     this.pictureBox1.Location  = new System.Drawing.Point(12, 12);
     this.pictureBox1.Name      = "pictureBox1";
     this.pictureBox1.Size      = new System.Drawing.Size(80, 80);
     this.pictureBox1.SizeMode  = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
     this.pictureBox1.TabIndex  = 5;
     this.pictureBox1.TabStop   = false;
     //
     // SharpUpdateInfoDialog
     //
     this.ClientSize = new System.Drawing.Size(284, 261);
     this.Controls.Add(this.kryptonPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "SharpUpdateInfoDialog";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
     this.kryptonPanel1.ResumeLayout(false);
     this.kryptonPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.ResumeLayout(false);
 }
Exemplo n.º 16
0
        /// <summary>
        /// Clean up any resources being used.
        /// </summary>
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing)
            {
                if (_textBox != null)
                {
                    UnmonitorControl(_textBox);
                    _textBox.Dispose();
                    _textBox = null;
                }
            }

            base.Dispose(disposing);
        }
Exemplo n.º 17
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(KryptonFileInformationExample));
     this.kryptonPanel1       = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kbtnFileInformation = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kbtnBrowse          = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.ktbFilePath         = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this.kryptonLabel1       = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.kbtnFileInformation);
     this.kryptonPanel1.Controls.Add(this.kbtnBrowse);
     this.kryptonPanel1.Controls.Add(this.ktbFilePath);
     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(741, 81);
     this.kryptonPanel1.TabIndex = 0;
     //
     // kbtnFileInformation
     //
     this.kbtnFileInformation.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.kbtnFileInformation.Enabled  = false;
     this.kbtnFileInformation.Location = new System.Drawing.Point(528, 44);
     this.kbtnFileInformation.Name     = "kbtnFileInformation";
     this.kbtnFileInformation.Size     = new System.Drawing.Size(195, 29);
     this.kbtnFileInformation.StateCommon.Content.LongText.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnFileInformation.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnFileInformation.TabIndex    = 17;
     this.kbtnFileInformation.Values.Text = "Get File &Information";
     this.kbtnFileInformation.Click      += new System.EventHandler(this.KbtnFileInformation_Click);
     //
     // kbtnBrowse
     //
     this.kbtnBrowse.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.kbtnBrowse.Location = new System.Drawing.Point(687, 12);
     this.kbtnBrowse.Name     = "kbtnBrowse";
     this.kbtnBrowse.Size     = new System.Drawing.Size(36, 26);
     this.kbtnBrowse.StateCommon.Content.LongText.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnBrowse.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnBrowse.TabIndex    = 16;
     this.kbtnBrowse.Values.Text = "...";
     this.kbtnBrowse.Click      += new System.EventHandler(this.KbtnBrowse_Click);
     //
     // ktbFilePath
     //
     this.ktbFilePath.Hint     = "File path...";
     this.ktbFilePath.Location = new System.Drawing.Point(101, 12);
     this.ktbFilePath.Name     = "ktbFilePath";
     this.ktbFilePath.Size     = new System.Drawing.Size(580, 27);
     this.ktbFilePath.StateCommon.Content.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ktbFilePath.TabIndex = 5;
     //
     // kryptonLabel1
     //
     this.kryptonLabel1.Location = new System.Drawing.Point(12, 12);
     this.kryptonLabel1.Name     = "kryptonLabel1";
     this.kryptonLabel1.Size     = new System.Drawing.Size(83, 26);
     this.kryptonLabel1.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     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    = 4;
     this.kryptonLabel1.Values.Text = "File Path:";
     //
     // KryptonFileInformationExample
     //
     this.ClientSize = new System.Drawing.Size(741, 81);
     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            = "KryptonFileInformationExample";
     this.Text            = "Get File Information";
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
     this.kryptonPanel1.ResumeLayout(false);
     this.kryptonPanel1.PerformLayout();
     this.ResumeLayout(false);
 }
Exemplo n.º 18
0
        private void txt_Validated(object sender, EventArgs e)
        {
            KryptonTextBox txt = (KryptonTextBox)sender;

            txt.Text = txt.Text.PadLeft(6, '0');
        }
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(OptionsWindow));
     this.kMan                         = new ComponentFactory.Krypton.Toolkit.KryptonManager(this.components);
     this.kryptonPalette1              = new ComponentFactory.Krypton.Toolkit.KryptonPalette(this.components);
     this.kryptonPanel1                = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kbtnCancel                   = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.ksbApply                     = new KryptonExtendedToolkit.ExtendedToolkit.Controls.KryptonUACElevatedButton();
     this.kryptonPanel2                = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.knOptions                    = new ComponentFactory.Krypton.Navigator.KryptonNavigator();
     this.kpGeneral                    = new ComponentFactory.Krypton.Navigator.KryptonPage();
     this.kpTheme                      = new ComponentFactory.Krypton.Navigator.KryptonPage();
     this.kryptonGroupBox1             = new ComponentFactory.Krypton.Toolkit.KryptonGroupBox();
     this.kbtnLoadTheme                = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kbtnCustomThemeFileBrowse    = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.ktxtCustomThemePath          = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this.klblCustomThemeFilePath      = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kcbTheme                     = new ComponentFactory.Krypton.Toolkit.KryptonComboBox();
     this.kryptonLabel1                = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kryptonPage1                 = new ComponentFactory.Krypton.Navigator.KryptonPage();
     this.kcbTest                      = new ComponentFactory.Krypton.Toolkit.KryptonColorButton();
     this.klblMediumColourFloatValue   = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.klblLightColourFloatValue    = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.klblDarkColourFloatValue     = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.klblLightestColourFloatValue = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.knumDarkValue                = new ComponentFactory.Krypton.Toolkit.KryptonNumericUpDown();
     this.knumMediumValue              = new ComponentFactory.Krypton.Toolkit.KryptonNumericUpDown();
     this.knumLightValue               = new ComponentFactory.Krypton.Toolkit.KryptonNumericUpDown();
     this.knumLightestValue            = new ComponentFactory.Krypton.Toolkit.KryptonNumericUpDown();
     this.cbxLightestColour            = new ExtendedControls.ExtendedToolkit.Controls.CircularPictureBox();
     this.cbxLightColour               = new ExtendedControls.ExtendedToolkit.Controls.CircularPictureBox();
     this.cbxMediumColour              = new ExtendedControls.ExtendedToolkit.Controls.CircularPictureBox();
     this.cbxDarkColour                = new ExtendedControls.ExtendedToolkit.Controls.CircularPictureBox();
     this.kryptonLabel7                = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kryptonLabel5                = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kryptonLabel4                = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kryptonLabel2                = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.panel1                       = new System.Windows.Forms.Panel();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).BeginInit();
     this.kryptonPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.knOptions)).BeginInit();
     this.knOptions.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kpGeneral)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kpTheme)).BeginInit();
     this.kpTheme.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.kcbTheme)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPage1)).BeginInit();
     this.kryptonPage1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbxLightestColour)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxLightColour)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxMediumColour)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxDarkColour)).BeginInit();
     this.SuspendLayout();
     //
     // kMan
     //
     this.kMan.GlobalPaletteMode = ComponentFactory.Krypton.Toolkit.PaletteModeManager.Office2007Blue;
     //
     // kryptonPalette1
     //
     this.kryptonPalette1.CustomisedKryptonPaletteFilePath = null;
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.kbtnCancel);
     this.kryptonPanel1.Controls.Add(this.ksbApply);
     this.kryptonPanel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.kryptonPanel1.Location = new System.Drawing.Point(0, 797);
     this.kryptonPanel1.Name     = "kryptonPanel1";
     this.kryptonPanel1.Size     = new System.Drawing.Size(906, 55);
     this.kryptonPanel1.TabIndex = 0;
     //
     // kbtnCancel
     //
     this.kbtnCancel.AutoSize     = true;
     this.kbtnCancel.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.kbtnCancel.Location     = new System.Drawing.Point(757, 13);
     this.kbtnCancel.Name         = "kbtnCancel";
     this.kbtnCancel.Size         = new System.Drawing.Size(60, 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    = 1;
     this.kbtnCancel.Values.Text = "Can&cel";
     //
     // ksbApply
     //
     this.ksbApply.AutoSize     = true;
     this.ksbApply.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.ksbApply.Enabled      = false;
     this.ksbApply.Location     = new System.Drawing.Point(823, 13);
     this.ksbApply.Name         = "ksbApply";
     this.ksbApply.Size         = new System.Drawing.Size(71, 30);
     this.ksbApply.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ksbApply.TabIndex     = 0;
     this.ksbApply.Values.Image = ((System.Drawing.Image)(resources.GetObject("ksbApply.Values.Image")));
     this.ksbApply.Values.Text  = "&Apply";
     //
     // kryptonPanel2
     //
     this.kryptonPanel2.Controls.Add(this.knOptions);
     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(906, 797);
     this.kryptonPanel2.TabIndex = 1;
     //
     // knOptions
     //
     this.knOptions.Button.CloseButtonAction  = ComponentFactory.Krypton.Navigator.CloseButtonAction.None;
     this.knOptions.Button.CloseButtonDisplay = ComponentFactory.Krypton.Navigator.ButtonDisplay.Hide;
     this.knOptions.Location = new System.Drawing.Point(12, 12);
     this.knOptions.Name     = "knOptions";
     this.knOptions.Pages.AddRange(new ComponentFactory.Krypton.Navigator.KryptonPage[] {
         this.kpGeneral,
         this.kpTheme,
         this.kryptonPage1
     });
     this.knOptions.SelectedIndex = 0;
     this.knOptions.Size          = new System.Drawing.Size(882, 776);
     this.knOptions.StateCommon.Tab.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.knOptions.TabIndex = 0;
     this.knOptions.Text     = "kryptonNavigator1";
     //
     // kpGeneral
     //
     this.kpGeneral.AutoHiddenSlideSize = new System.Drawing.Size(200, 200);
     this.kpGeneral.Flags          = 65534;
     this.kpGeneral.LastVisibleSet = true;
     this.kpGeneral.MinimumSize    = new System.Drawing.Size(50, 50);
     this.kpGeneral.Name           = "kpGeneral";
     this.kpGeneral.Size           = new System.Drawing.Size(880, 745);
     this.kpGeneral.Text           = "General";
     this.kpGeneral.ToolTipTitle   = "Page ToolTip";
     this.kpGeneral.UniqueName     = "8CF4DE8AD8A6433C038CBF6707BB28B6";
     //
     // kpTheme
     //
     this.kpTheme.AutoHiddenSlideSize = new System.Drawing.Size(200, 200);
     this.kpTheme.Controls.Add(this.kryptonGroupBox1);
     this.kpTheme.Flags          = 65534;
     this.kpTheme.LastVisibleSet = true;
     this.kpTheme.MinimumSize    = new System.Drawing.Size(50, 50);
     this.kpTheme.Name           = "kpTheme";
     this.kpTheme.Size           = new System.Drawing.Size(880, 745);
     this.kpTheme.Text           = "Theme";
     this.kpTheme.ToolTipTitle   = "Page ToolTip";
     this.kpTheme.UniqueName     = "A80439CDD42845E10BA62B98A827DD36";
     //
     // kryptonGroupBox1
     //
     this.kryptonGroupBox1.Location = new System.Drawing.Point(20, 16);
     this.kryptonGroupBox1.Name     = "kryptonGroupBox1";
     //
     // kryptonGroupBox1.Panel
     //
     this.kryptonGroupBox1.Panel.Controls.Add(this.kbtnLoadTheme);
     this.kryptonGroupBox1.Panel.Controls.Add(this.kbtnCustomThemeFileBrowse);
     this.kryptonGroupBox1.Panel.Controls.Add(this.ktxtCustomThemePath);
     this.kryptonGroupBox1.Panel.Controls.Add(this.klblCustomThemeFilePath);
     this.kryptonGroupBox1.Panel.Controls.Add(this.kcbTheme);
     this.kryptonGroupBox1.Panel.Controls.Add(this.kryptonLabel1);
     this.kryptonGroupBox1.Size = new System.Drawing.Size(840, 169);
     this.kryptonGroupBox1.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonGroupBox1.TabIndex       = 0;
     this.kryptonGroupBox1.Values.Heading = "Theme Selector";
     //
     // kbtnLoadTheme
     //
     this.kbtnLoadTheme.AutoSize     = true;
     this.kbtnLoadTheme.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.kbtnLoadTheme.Enabled      = false;
     this.kbtnLoadTheme.Location     = new System.Drawing.Point(668, 97);
     this.kbtnLoadTheme.Name         = "kbtnLoadTheme";
     this.kbtnLoadTheme.Size         = new System.Drawing.Size(152, 28);
     this.kbtnLoadTheme.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 11.25F);
     this.kbtnLoadTheme.TabIndex    = 5;
     this.kbtnLoadTheme.Values.Text = "&Load Custom Theme";
     //
     // kbtnCustomThemeFileBrowse
     //
     this.kbtnCustomThemeFileBrowse.AutoSize     = true;
     this.kbtnCustomThemeFileBrowse.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.kbtnCustomThemeFileBrowse.Enabled      = false;
     this.kbtnCustomThemeFileBrowse.Location     = new System.Drawing.Point(798, 53);
     this.kbtnCustomThemeFileBrowse.Name         = "kbtnCustomThemeFileBrowse";
     this.kbtnCustomThemeFileBrowse.Size         = new System.Drawing.Size(22, 28);
     this.kbtnCustomThemeFileBrowse.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 11.25F);
     this.kbtnCustomThemeFileBrowse.TabIndex    = 4;
     this.kbtnCustomThemeFileBrowse.Values.Text = ".&..";
     //
     // ktxtCustomThemePath
     //
     this.ktxtCustomThemePath.Enabled  = false;
     this.ktxtCustomThemePath.Location = new System.Drawing.Point(231, 54);
     this.ktxtCustomThemePath.Name     = "ktxtCustomThemePath";
     this.ktxtCustomThemePath.Size     = new System.Drawing.Size(561, 27);
     this.ktxtCustomThemePath.StateCommon.Content.Font  = new System.Drawing.Font("Segoe UI", 11.25F);
     this.ktxtCustomThemePath.StateCommon.Content.TextH = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Inherit;
     this.ktxtCustomThemePath.TabIndex = 3;
     //
     // klblCustomThemeFilePath
     //
     this.klblCustomThemeFilePath.Enabled  = false;
     this.klblCustomThemeFilePath.Location = new System.Drawing.Point(34, 55);
     this.klblCustomThemeFilePath.Name     = "klblCustomThemeFilePath";
     this.klblCustomThemeFilePath.Size     = new System.Drawing.Size(191, 24);
     this.klblCustomThemeFilePath.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.klblCustomThemeFilePath.TabIndex    = 2;
     this.klblCustomThemeFilePath.Values.Text = "Custom Theme File Path:";
     //
     // kcbTheme
     //
     this.kcbTheme.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.kcbTheme.DropDownWidth = 182;
     this.kcbTheme.Location      = new System.Drawing.Point(124, 12);
     this.kcbTheme.Name          = "kcbTheme";
     this.kcbTheme.Size          = new System.Drawing.Size(182, 25);
     this.kcbTheme.StateCommon.ComboBox.Content.Font  = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kcbTheme.StateCommon.ComboBox.Content.TextH = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Near;
     this.kcbTheme.TabIndex              = 1;
     this.kcbTheme.SelectedIndexChanged += new System.EventHandler(this.KcbTheme_SelectedIndexChanged);
     //
     // kryptonLabel1
     //
     this.kryptonLabel1.Location = new System.Drawing.Point(14, 13);
     this.kryptonLabel1.Name     = "kryptonLabel1";
     this.kryptonLabel1.Size     = new System.Drawing.Size(104, 24);
     this.kryptonLabel1.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel1.TabIndex    = 0;
     this.kryptonLabel1.Values.Text = "Theme Type:";
     //
     // kryptonPage1
     //
     this.kryptonPage1.AutoHiddenSlideSize = new System.Drawing.Size(200, 200);
     this.kryptonPage1.Controls.Add(this.kcbTest);
     this.kryptonPage1.Controls.Add(this.klblMediumColourFloatValue);
     this.kryptonPage1.Controls.Add(this.klblLightColourFloatValue);
     this.kryptonPage1.Controls.Add(this.klblDarkColourFloatValue);
     this.kryptonPage1.Controls.Add(this.klblLightestColourFloatValue);
     this.kryptonPage1.Controls.Add(this.knumDarkValue);
     this.kryptonPage1.Controls.Add(this.knumMediumValue);
     this.kryptonPage1.Controls.Add(this.knumLightValue);
     this.kryptonPage1.Controls.Add(this.knumLightestValue);
     this.kryptonPage1.Controls.Add(this.cbxLightestColour);
     this.kryptonPage1.Controls.Add(this.cbxLightColour);
     this.kryptonPage1.Controls.Add(this.cbxMediumColour);
     this.kryptonPage1.Controls.Add(this.cbxDarkColour);
     this.kryptonPage1.Controls.Add(this.kryptonLabel7);
     this.kryptonPage1.Controls.Add(this.kryptonLabel5);
     this.kryptonPage1.Controls.Add(this.kryptonLabel4);
     this.kryptonPage1.Controls.Add(this.kryptonLabel2);
     this.kryptonPage1.Flags          = 65534;
     this.kryptonPage1.LastVisibleSet = true;
     this.kryptonPage1.MinimumSize    = new System.Drawing.Size(50, 50);
     this.kryptonPage1.Name           = "kryptonPage1";
     this.kryptonPage1.Size           = new System.Drawing.Size(880, 745);
     this.kryptonPage1.Text           = "Colour Intensity";
     this.kryptonPage1.ToolTipTitle   = "Page ToolTip";
     this.kryptonPage1.UniqueName     = "e0550eb663f7425e99be7d6b7761bd8e";
     //
     // kcbTest
     //
     this.kcbTest.Location = new System.Drawing.Point(36, 462);
     this.kcbTest.Name     = "kcbTest";
     this.kcbTest.Size     = new System.Drawing.Size(178, 25);
     this.kcbTest.StateCommon.Content.LongText.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kcbTest.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kcbTest.TabIndex              = 34;
     this.kcbTest.Values.Text           = "&Test Colour";
     this.kcbTest.SelectedColorChanged += new System.EventHandler <ComponentFactory.Krypton.Toolkit.ColorEventArgs>(this.KcbTest_SelectedColorChanged);
     //
     // klblMediumColourFloatValue
     //
     this.klblMediumColourFloatValue.Location = new System.Drawing.Point(366, 172);
     this.klblMediumColourFloatValue.Name     = "klblMediumColourFloatValue";
     this.klblMediumColourFloatValue.Size     = new System.Drawing.Size(42, 33);
     this.klblMediumColourFloatValue.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.klblMediumColourFloatValue.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.klblMediumColourFloatValue.TabIndex    = 33;
     this.klblMediumColourFloatValue.Values.Text = "{0}";
     //
     // klblLightColourFloatValue
     //
     this.klblLightColourFloatValue.Location = new System.Drawing.Point(366, 290);
     this.klblLightColourFloatValue.Name     = "klblLightColourFloatValue";
     this.klblLightColourFloatValue.Size     = new System.Drawing.Size(42, 33);
     this.klblLightColourFloatValue.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.klblLightColourFloatValue.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.klblLightColourFloatValue.TabIndex    = 32;
     this.klblLightColourFloatValue.Values.Text = "{0}";
     //
     // klblDarkColourFloatValue
     //
     this.klblDarkColourFloatValue.Location = new System.Drawing.Point(366, 54);
     this.klblDarkColourFloatValue.Name     = "klblDarkColourFloatValue";
     this.klblDarkColourFloatValue.Size     = new System.Drawing.Size(42, 33);
     this.klblDarkColourFloatValue.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.klblDarkColourFloatValue.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.klblDarkColourFloatValue.TabIndex    = 31;
     this.klblDarkColourFloatValue.Values.Text = "{0}";
     //
     // klblLightestColourFloatValue
     //
     this.klblLightestColourFloatValue.Location = new System.Drawing.Point(366, 408);
     this.klblLightestColourFloatValue.Name     = "klblLightestColourFloatValue";
     this.klblLightestColourFloatValue.Size     = new System.Drawing.Size(42, 33);
     this.klblLightestColourFloatValue.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.klblLightestColourFloatValue.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.klblLightestColourFloatValue.TabIndex    = 30;
     this.klblLightestColourFloatValue.Values.Text = "{0}";
     //
     // knumDarkValue
     //
     this.knumDarkValue.DecimalPlaces = 99;
     this.knumDarkValue.Location      = new System.Drawing.Point(217, 54);
     this.knumDarkValue.Maximum       = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.knumDarkValue.Name = "knumDarkValue";
     this.knumDarkValue.Size = new System.Drawing.Size(120, 32);
     this.knumDarkValue.StateCommon.Content.Font  = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.knumDarkValue.StateCommon.Content.TextH = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Center;
     this.knumDarkValue.TabIndex      = 29;
     this.knumDarkValue.ValueChanged += new System.EventHandler(this.KnumDarkValue_ValueChanged);
     //
     // knumMediumValue
     //
     this.knumMediumValue.DecimalPlaces = 99;
     this.knumMediumValue.Location      = new System.Drawing.Point(217, 172);
     this.knumMediumValue.Maximum       = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.knumMediumValue.Name = "knumMediumValue";
     this.knumMediumValue.Size = new System.Drawing.Size(120, 32);
     this.knumMediumValue.StateCommon.Content.Font  = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.knumMediumValue.StateCommon.Content.TextH = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Center;
     this.knumMediumValue.TabIndex      = 28;
     this.knumMediumValue.ValueChanged += new System.EventHandler(this.KnumMediumValue_ValueChanged);
     //
     // knumLightValue
     //
     this.knumLightValue.DecimalPlaces = 99;
     this.knumLightValue.Location      = new System.Drawing.Point(217, 290);
     this.knumLightValue.Maximum       = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.knumLightValue.Name = "knumLightValue";
     this.knumLightValue.Size = new System.Drawing.Size(120, 32);
     this.knumLightValue.StateCommon.Content.Font  = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.knumLightValue.StateCommon.Content.TextH = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Center;
     this.knumLightValue.TabIndex      = 27;
     this.knumLightValue.ValueChanged += new System.EventHandler(this.KnumLightValue_ValueChanged);
     //
     // knumLightestValue
     //
     this.knumLightestValue.DecimalPlaces = 99;
     this.knumLightestValue.Location      = new System.Drawing.Point(217, 408);
     this.knumLightestValue.Maximum       = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.knumLightestValue.Name = "knumLightestValue";
     this.knumLightestValue.Size = new System.Drawing.Size(120, 32);
     this.knumLightestValue.StateCommon.Content.Font  = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.knumLightestValue.StateCommon.Content.TextH = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Center;
     this.knumLightestValue.TabIndex      = 26;
     this.knumLightestValue.ValueChanged += new System.EventHandler(this.KnumLightestValue_ValueChanged);
     //
     // cbxLightestColour
     //
     this.cbxLightestColour.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cbxLightestColour.BackColor = System.Drawing.Color.Black;
     this.cbxLightestColour.Location  = new System.Drawing.Point(765, 374);
     this.cbxLightestColour.Name      = "cbxLightestColour";
     this.cbxLightestColour.Size      = new System.Drawing.Size(95, 95);
     this.cbxLightestColour.TabIndex  = 25;
     this.cbxLightestColour.TabStop   = false;
     //
     // cbxLightColour
     //
     this.cbxLightColour.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cbxLightColour.BackColor = System.Drawing.Color.Black;
     this.cbxLightColour.Location  = new System.Drawing.Point(765, 258);
     this.cbxLightColour.Name      = "cbxLightColour";
     this.cbxLightColour.Size      = new System.Drawing.Size(95, 95);
     this.cbxLightColour.TabIndex  = 24;
     this.cbxLightColour.TabStop   = false;
     //
     // cbxMediumColour
     //
     this.cbxMediumColour.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cbxMediumColour.BackColor = System.Drawing.Color.Black;
     this.cbxMediumColour.Location  = new System.Drawing.Point(765, 142);
     this.cbxMediumColour.Name      = "cbxMediumColour";
     this.cbxMediumColour.Size      = new System.Drawing.Size(95, 95);
     this.cbxMediumColour.TabIndex  = 23;
     this.cbxMediumColour.TabStop   = false;
     //
     // cbxDarkColour
     //
     this.cbxDarkColour.Anchor    = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cbxDarkColour.BackColor = System.Drawing.Color.Black;
     this.cbxDarkColour.Location  = new System.Drawing.Point(765, 26);
     this.cbxDarkColour.Name      = "cbxDarkColour";
     this.cbxDarkColour.Size      = new System.Drawing.Size(95, 95);
     this.cbxDarkColour.TabIndex  = 22;
     this.cbxDarkColour.TabStop   = false;
     //
     // kryptonLabel7
     //
     this.kryptonLabel7.Location = new System.Drawing.Point(36, 172);
     this.kryptonLabel7.Name     = "kryptonLabel7";
     this.kryptonLabel7.Size     = new System.Drawing.Size(178, 33);
     this.kryptonLabel7.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel7.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel7.TabIndex    = 21;
     this.kryptonLabel7.Values.Text = "Medium Colour:";
     //
     // kryptonLabel5
     //
     this.kryptonLabel5.Location = new System.Drawing.Point(36, 408);
     this.kryptonLabel5.Name     = "kryptonLabel5";
     this.kryptonLabel5.Size     = new System.Drawing.Size(175, 33);
     this.kryptonLabel5.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel5.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel5.TabIndex    = 20;
     this.kryptonLabel5.Values.Text = "Lightest Colour:";
     //
     // kryptonLabel4
     //
     this.kryptonLabel4.Location = new System.Drawing.Point(36, 290);
     this.kryptonLabel4.Name     = "kryptonLabel4";
     this.kryptonLabel4.Size     = new System.Drawing.Size(145, 33);
     this.kryptonLabel4.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel4.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel4.TabIndex    = 19;
     this.kryptonLabel4.Values.Text = "Light Colour:";
     //
     // kryptonLabel2
     //
     this.kryptonLabel2.Location = new System.Drawing.Point(36, 54);
     this.kryptonLabel2.Name     = "kryptonLabel2";
     this.kryptonLabel2.Size     = new System.Drawing.Size(141, 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    = 18;
     this.kryptonLabel2.Values.Text = "Dark 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, 794);
     this.panel1.Name      = "panel1";
     this.panel1.Size      = new System.Drawing.Size(906, 3);
     this.panel1.TabIndex  = 2;
     //
     // OptionsWindow
     //
     this.ClientSize = new System.Drawing.Size(906, 852);
     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            = "OptionsWindow";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text            = "Palette Explorer Options";
     this.Load           += new System.EventHandler(this.OptionsWindow_Load);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
     this.kryptonPanel1.ResumeLayout(false);
     this.kryptonPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).EndInit();
     this.kryptonPanel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.knOptions)).EndInit();
     this.knOptions.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kpGeneral)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.kpTheme)).EndInit();
     this.kpTheme.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.kcbTheme)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPage1)).EndInit();
     this.kryptonPage1.ResumeLayout(false);
     this.kryptonPage1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbxLightestColour)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxLightColour)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxMediumColour)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxDarkColour)).EndInit();
     this.ResumeLayout(false);
 }
 private void InitializeComponent()
 {
     this.kryptonPanel1        = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kbtnGeneratePassword = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kbtnCancel           = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kbtnCopy             = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.panel1             = new System.Windows.Forms.Panel();
     this.kryptonPanel2      = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.ktxtOutput         = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this.kryptonLabel2      = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.knudPasswordLength = new ComponentFactory.Krypton.Toolkit.KryptonNumericUpDown();
     this.kryptonLabel1      = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).BeginInit();
     this.kryptonPanel2.SuspendLayout();
     this.SuspendLayout();
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.kbtnCopy);
     this.kryptonPanel1.Controls.Add(this.kbtnCancel);
     this.kryptonPanel1.Controls.Add(this.kbtnGeneratePassword);
     this.kryptonPanel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.kryptonPanel1.Location = new System.Drawing.Point(0, 166);
     this.kryptonPanel1.Name     = "kryptonPanel1";
     this.kryptonPanel1.Size     = new System.Drawing.Size(767, 50);
     this.kryptonPanel1.TabIndex = 0;
     //
     // kbtnGeneratePassword
     //
     this.kbtnGeneratePassword.Location = new System.Drawing.Point(476, 9);
     this.kbtnGeneratePassword.Name     = "kbtnGeneratePassword";
     this.kbtnGeneratePassword.Size     = new System.Drawing.Size(156, 29);
     this.kbtnGeneratePassword.StateCommon.Content.LongText.Font        = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnGeneratePassword.StateCommon.Content.LongText.ImageStyle  = ComponentFactory.Krypton.Toolkit.PaletteImageStyle.Inherit;
     this.kbtnGeneratePassword.StateCommon.Content.LongText.Trim        = ComponentFactory.Krypton.Toolkit.PaletteTextTrim.Inherit;
     this.kbtnGeneratePassword.StateCommon.Content.ShortText.Font       = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnGeneratePassword.StateCommon.Content.ShortText.ImageStyle = ComponentFactory.Krypton.Toolkit.PaletteImageStyle.Inherit;
     this.kbtnGeneratePassword.StateCommon.Content.ShortText.Trim       = ComponentFactory.Krypton.Toolkit.PaletteTextTrim.Inherit;
     this.kbtnGeneratePassword.TabIndex    = 13;
     this.kbtnGeneratePassword.Values.Text = "&Generate";
     this.kbtnGeneratePassword.Click      += new System.EventHandler(this.kbtnGeneratePassword_Click);
     //
     // kbtnCancel
     //
     this.kbtnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.kbtnCancel.Location     = new System.Drawing.Point(638, 9);
     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.LongText.ImageStyle  = ComponentFactory.Krypton.Toolkit.PaletteImageStyle.Inherit;
     this.kbtnCancel.StateCommon.Content.LongText.Trim        = ComponentFactory.Krypton.Toolkit.PaletteTextTrim.Inherit;
     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.StateCommon.Content.ShortText.ImageStyle = ComponentFactory.Krypton.Toolkit.PaletteImageStyle.Inherit;
     this.kbtnCancel.StateCommon.Content.ShortText.Trim       = ComponentFactory.Krypton.Toolkit.PaletteTextTrim.Inherit;
     this.kbtnCancel.TabIndex    = 12;
     this.kbtnCancel.Values.Text = "&Cancel";
     this.kbtnCancel.Click      += new System.EventHandler(this.kbtnCancel_Click);
     //
     // kbtnCopy
     //
     this.kbtnCopy.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.kbtnCopy.Enabled      = false;
     this.kbtnCopy.Location     = new System.Drawing.Point(12, 9);
     this.kbtnCopy.Name         = "kbtnCopy";
     this.kbtnCopy.Size         = new System.Drawing.Size(117, 29);
     this.kbtnCopy.StateCommon.Content.LongText.Font        = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnCopy.StateCommon.Content.LongText.ImageStyle  = ComponentFactory.Krypton.Toolkit.PaletteImageStyle.Inherit;
     this.kbtnCopy.StateCommon.Content.LongText.Trim        = ComponentFactory.Krypton.Toolkit.PaletteTextTrim.Inherit;
     this.kbtnCopy.StateCommon.Content.ShortText.Font       = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnCopy.StateCommon.Content.ShortText.ImageStyle = ComponentFactory.Krypton.Toolkit.PaletteImageStyle.Inherit;
     this.kbtnCopy.StateCommon.Content.ShortText.Trim       = ComponentFactory.Krypton.Toolkit.PaletteTextTrim.Inherit;
     this.kbtnCopy.TabIndex    = 14;
     this.kbtnCopy.Values.Text = "C&opy";
     this.kbtnCopy.Click      += new System.EventHandler(this.kbtnCopy_Click);
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.SystemColors.ControlDarkDark;
     this.panel1.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Location  = new System.Drawing.Point(0, 163);
     this.panel1.Name      = "panel1";
     this.panel1.Size      = new System.Drawing.Size(767, 3);
     this.panel1.TabIndex  = 1;
     //
     // kryptonPanel2
     //
     this.kryptonPanel2.Controls.Add(this.ktxtOutput);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel2);
     this.kryptonPanel2.Controls.Add(this.knudPasswordLength);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel1);
     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(767, 163);
     this.kryptonPanel2.TabIndex = 2;
     //
     // ktxtOutput
     //
     this.ktxtOutput.Location = new System.Drawing.Point(12, 113);
     this.ktxtOutput.Name     = "ktxtOutput";
     this.ktxtOutput.ReadOnly = true;
     this.ktxtOutput.Size     = new System.Drawing.Size(739, 29);
     this.ktxtOutput.StateCommon.Content.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ktxtOutput.StateCommon.Content.TextH = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Inherit;
     this.ktxtOutput.TabIndex     = 8;
     this.ktxtOutput.TextAlign    = System.Windows.Forms.HorizontalAlignment.Center;
     this.ktxtOutput.TextChanged += new System.EventHandler(this.ktxtOutput_TextChanged);
     //
     // kryptonLabel2
     //
     this.kryptonLabel2.Location = new System.Drawing.Point(12, 70);
     this.kryptonLabel2.Name     = "kryptonLabel2";
     this.kryptonLabel2.Size     = new System.Drawing.Size(150, 26);
     this.kryptonLabel2.StateCommon.LongText.Font        = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel2.StateCommon.LongText.ImageStyle  = ComponentFactory.Krypton.Toolkit.PaletteImageStyle.Inherit;
     this.kryptonLabel2.StateCommon.LongText.Trim        = ComponentFactory.Krypton.Toolkit.PaletteTextTrim.Inherit;
     this.kryptonLabel2.StateCommon.ShortText.Font       = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel2.StateCommon.ShortText.ImageStyle = ComponentFactory.Krypton.Toolkit.PaletteImageStyle.Inherit;
     this.kryptonLabel2.StateCommon.ShortText.Trim       = ComponentFactory.Krypton.Toolkit.PaletteTextTrim.Inherit;
     this.kryptonLabel2.TabIndex    = 7;
     this.kryptonLabel2.Values.Text = "Password Output:";
     //
     // knudPasswordLength
     //
     this.knudPasswordLength.Location = new System.Drawing.Point(166, 12);
     this.knudPasswordLength.Maximum  = new decimal(new int[] {
         20,
         0,
         0,
         0
     });
     this.knudPasswordLength.Minimum = new decimal(new int[] {
         5,
         0,
         0,
         0
     });
     this.knudPasswordLength.Name = "knudPasswordLength";
     this.knudPasswordLength.Size = new System.Drawing.Size(120, 28);
     this.knudPasswordLength.StateCommon.Content.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.knudPasswordLength.StateCommon.Content.TextH = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Center;
     this.knudPasswordLength.TabIndex = 6;
     this.knudPasswordLength.Value    = new decimal(new int[] {
         5,
         0,
         0,
         0
     });
     //
     // kryptonLabel1
     //
     this.kryptonLabel1.Location = new System.Drawing.Point(12, 12);
     this.kryptonLabel1.Name     = "kryptonLabel1";
     this.kryptonLabel1.Size     = new System.Drawing.Size(148, 26);
     this.kryptonLabel1.StateCommon.LongText.Font        = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel1.StateCommon.LongText.ImageStyle  = ComponentFactory.Krypton.Toolkit.PaletteImageStyle.Inherit;
     this.kryptonLabel1.StateCommon.LongText.Trim        = ComponentFactory.Krypton.Toolkit.PaletteTextTrim.Inherit;
     this.kryptonLabel1.StateCommon.ShortText.Font       = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel1.StateCommon.ShortText.ImageStyle = ComponentFactory.Krypton.Toolkit.PaletteImageStyle.Inherit;
     this.kryptonLabel1.StateCommon.ShortText.Trim       = ComponentFactory.Krypton.Toolkit.PaletteTextTrim.Inherit;
     this.kryptonLabel1.TabIndex    = 5;
     this.kryptonLabel1.Values.Text = "Password Length:";
     //
     // RandomPasswordGenerator
     //
     this.ClientSize = new System.Drawing.Size(767, 216);
     this.Controls.Add(this.kryptonPanel2);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.kryptonPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "RandomPasswordGenerator";
     this.StartPosition   = System.Windows.Forms.FormStartPosition.Manual;
     this.Text            = "Generate a Random Password";
     this.FormClosing    += new System.Windows.Forms.FormClosingEventHandler(this.RandomPasswordGenerator_FormClosing);
     this.Load           += new System.EventHandler(this.RandomPasswordGenerator_Load);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
     this.kryptonPanel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).EndInit();
     this.kryptonPanel2.ResumeLayout(false);
     this.kryptonPanel2.PerformLayout();
     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);
 }
Exemplo n.º 22
0
 private void InitializeComponent()
 {
     this.kryptonPanel1                = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kbtnOk                       = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.panel1                       = new System.Windows.Forms.Panel();
     this.kryptonPanel2                = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kryptonAlphaValueLabel9      = new ExtendedColourControls.Controls.Labels.KryptonAlphaValueLabel();
     this.kryptonAlphaValueLabel10     = new ExtendedColourControls.Controls.Labels.KryptonAlphaValueLabel();
     this.kryptonAlphaValueLabel11     = new ExtendedColourControls.Controls.Labels.KryptonAlphaValueLabel();
     this.kryptonRedValueNumericBox2   = new ExtendedColourControls.KryptonRedValueNumericBox();
     this.kryptonGreenValueNumericBox2 = new ExtendedColourControls.KryptonGreenValueNumericBox();
     this.kryptonBlueValueNumericBox2  = new ExtendedColourControls.KryptonBlueValueNumericBox();
     this.kryptonAlphaValueLabel8      = new ExtendedColourControls.Controls.Labels.KryptonAlphaValueLabel();
     this.kryptonAlphaValueLabel7      = new ExtendedColourControls.Controls.Labels.KryptonAlphaValueLabel();
     this.kryptonAlphaValueLabel6      = new ExtendedColourControls.Controls.Labels.KryptonAlphaValueLabel();
     this.kryptonAlphaValueLabel5      = new ExtendedColourControls.Controls.Labels.KryptonAlphaValueLabel();
     this.kryptonAlphaValueLabel4      = new ExtendedColourControls.Controls.Labels.KryptonAlphaValueLabel();
     this.kryptonAlphaValueLabel3      = new ExtendedColourControls.Controls.Labels.KryptonAlphaValueLabel();
     this.kryptonAlphaValueLabel2      = new ExtendedColourControls.Controls.Labels.KryptonAlphaValueLabel();
     this.kryptonAlphaValueNumericBox1 = new ExtendedColourControls.KryptonAlphaValueNumericBox();
     this.kryptonRedValueNumericBox1   = new ExtendedColourControls.KryptonRedValueNumericBox();
     this.kryptonAlphaValueLabel1      = new ExtendedColourControls.Controls.Labels.KryptonAlphaValueLabel();
     this.kryptonGreenValueNumericBox1 = new ExtendedColourControls.KryptonGreenValueNumericBox();
     this.kavlNormal                   = new ExtendedColourControls.Controls.Labels.KryptonAlphaValueLabel();
     this.kryptonBlueValueNumericBox1  = new ExtendedColourControls.KryptonBlueValueNumericBox();
     this.ktxtHexValue                 = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).BeginInit();
     this.kryptonPanel2.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, 216);
     this.kryptonPanel1.Name     = "kryptonPanel1";
     this.kryptonPanel1.Size     = new System.Drawing.Size(494, 45);
     this.kryptonPanel1.TabIndex = 1;
     //
     // 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(452, 6);
     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    = 102;
     this.kbtnOk.Values.Text = "&Ok";
     this.kbtnOk.Click      += new System.EventHandler(this.KbtnOk_Click);
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.SystemColors.ControlDarkDark;
     this.panel1.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Location  = new System.Drawing.Point(0, 213);
     this.panel1.Name      = "panel1";
     this.panel1.Size      = new System.Drawing.Size(494, 3);
     this.panel1.TabIndex  = 2;
     //
     // kryptonPanel2
     //
     this.kryptonPanel2.Controls.Add(this.ktxtHexValue);
     this.kryptonPanel2.Controls.Add(this.kryptonAlphaValueLabel9);
     this.kryptonPanel2.Controls.Add(this.kryptonAlphaValueLabel10);
     this.kryptonPanel2.Controls.Add(this.kryptonAlphaValueLabel11);
     this.kryptonPanel2.Controls.Add(this.kryptonRedValueNumericBox2);
     this.kryptonPanel2.Controls.Add(this.kryptonGreenValueNumericBox2);
     this.kryptonPanel2.Controls.Add(this.kryptonBlueValueNumericBox2);
     this.kryptonPanel2.Controls.Add(this.kryptonAlphaValueLabel8);
     this.kryptonPanel2.Controls.Add(this.kryptonAlphaValueLabel7);
     this.kryptonPanel2.Controls.Add(this.kryptonAlphaValueLabel6);
     this.kryptonPanel2.Controls.Add(this.kryptonAlphaValueLabel5);
     this.kryptonPanel2.Controls.Add(this.kryptonAlphaValueLabel4);
     this.kryptonPanel2.Controls.Add(this.kryptonAlphaValueLabel3);
     this.kryptonPanel2.Controls.Add(this.kryptonAlphaValueLabel2);
     this.kryptonPanel2.Controls.Add(this.kryptonAlphaValueNumericBox1);
     this.kryptonPanel2.Controls.Add(this.kryptonRedValueNumericBox1);
     this.kryptonPanel2.Controls.Add(this.kryptonAlphaValueLabel1);
     this.kryptonPanel2.Controls.Add(this.kryptonGreenValueNumericBox1);
     this.kryptonPanel2.Controls.Add(this.kavlNormal);
     this.kryptonPanel2.Controls.Add(this.kryptonBlueValueNumericBox1);
     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(494, 213);
     this.kryptonPanel2.TabIndex = 3;
     //
     // kryptonAlphaValueLabel9
     //
     this.kryptonAlphaValueLabel9.AlphaValue = 255;
     this.kryptonAlphaValueLabel9.Location   = new System.Drawing.Point(367, 95);
     this.kryptonAlphaValueLabel9.Name       = "kryptonAlphaValueLabel9";
     this.kryptonAlphaValueLabel9.Size       = new System.Drawing.Size(18, 26);
     this.kryptonAlphaValueLabel9.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.kryptonAlphaValueLabel9.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.kryptonAlphaValueLabel9.TabIndex    = 32;
     this.kryptonAlphaValueLabel9.TextSize    = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.kryptonAlphaValueLabel9.Values.Text = ")";
     //
     // kryptonAlphaValueLabel10
     //
     this.kryptonAlphaValueLabel10.AlphaValue = 255;
     this.kryptonAlphaValueLabel10.Location   = new System.Drawing.Point(277, 95);
     this.kryptonAlphaValueLabel10.Name       = "kryptonAlphaValueLabel10";
     this.kryptonAlphaValueLabel10.Size       = new System.Drawing.Size(16, 26);
     this.kryptonAlphaValueLabel10.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.kryptonAlphaValueLabel10.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.kryptonAlphaValueLabel10.TabIndex    = 31;
     this.kryptonAlphaValueLabel10.TextSize    = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.kryptonAlphaValueLabel10.Values.Text = ",";
     //
     // kryptonAlphaValueLabel11
     //
     this.kryptonAlphaValueLabel11.AlphaValue = 255;
     this.kryptonAlphaValueLabel11.Location   = new System.Drawing.Point(187, 95);
     this.kryptonAlphaValueLabel11.Name       = "kryptonAlphaValueLabel11";
     this.kryptonAlphaValueLabel11.Size       = new System.Drawing.Size(16, 26);
     this.kryptonAlphaValueLabel11.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.kryptonAlphaValueLabel11.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.kryptonAlphaValueLabel11.TabIndex    = 30;
     this.kryptonAlphaValueLabel11.TextSize    = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.kryptonAlphaValueLabel11.Values.Text = ",";
     //
     // kryptonRedValueNumericBox2
     //
     this.kryptonRedValueNumericBox2.Location = new System.Drawing.Point(119, 95);
     this.kryptonRedValueNumericBox2.Maximum  = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.kryptonRedValueNumericBox2.Name = "kryptonRedValueNumericBox2";
     this.kryptonRedValueNumericBox2.Size = new System.Drawing.Size(62, 26);
     this.kryptonRedValueNumericBox2.StateCommon.Back.Color1    = System.Drawing.Color.Red;
     this.kryptonRedValueNumericBox2.StateCommon.Content.Color1 = System.Drawing.Color.White;
     this.kryptonRedValueNumericBox2.StateCommon.Content.Font   = new System.Drawing.Font("Segoe UI", 11F);
     this.kryptonRedValueNumericBox2.StateCommon.Content.TextH  = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Inherit;
     this.kryptonRedValueNumericBox2.TabIndex = 27;
     //
     // kryptonGreenValueNumericBox2
     //
     this.kryptonGreenValueNumericBox2.Location = new System.Drawing.Point(209, 95);
     this.kryptonGreenValueNumericBox2.Maximum  = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.kryptonGreenValueNumericBox2.Name = "kryptonGreenValueNumericBox2";
     this.kryptonGreenValueNumericBox2.Size = new System.Drawing.Size(62, 26);
     this.kryptonGreenValueNumericBox2.StateCommon.Back.Color1    = System.Drawing.Color.Green;
     this.kryptonGreenValueNumericBox2.StateCommon.Content.Color1 = System.Drawing.Color.White;
     this.kryptonGreenValueNumericBox2.StateCommon.Content.Font   = new System.Drawing.Font("Segoe UI", 11F);
     this.kryptonGreenValueNumericBox2.StateCommon.Content.TextH  = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Inherit;
     this.kryptonGreenValueNumericBox2.TabIndex = 28;
     //
     // kryptonBlueValueNumericBox2
     //
     this.kryptonBlueValueNumericBox2.Location = new System.Drawing.Point(299, 95);
     this.kryptonBlueValueNumericBox2.Maximum  = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.kryptonBlueValueNumericBox2.Name = "kryptonBlueValueNumericBox2";
     this.kryptonBlueValueNumericBox2.Size = new System.Drawing.Size(62, 26);
     this.kryptonBlueValueNumericBox2.StateCommon.Back.Color1    = System.Drawing.Color.Blue;
     this.kryptonBlueValueNumericBox2.StateCommon.Content.Color1 = System.Drawing.Color.White;
     this.kryptonBlueValueNumericBox2.StateCommon.Content.Font   = new System.Drawing.Font("Segoe UI", 11F);
     this.kryptonBlueValueNumericBox2.StateCommon.Content.TextH  = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Inherit;
     this.kryptonBlueValueNumericBox2.TabIndex = 29;
     //
     // kryptonAlphaValueLabel8
     //
     this.kryptonAlphaValueLabel8.AlphaValue = 255;
     this.kryptonAlphaValueLabel8.Location   = new System.Drawing.Point(95, 95);
     this.kryptonAlphaValueLabel8.Name       = "kryptonAlphaValueLabel8";
     this.kryptonAlphaValueLabel8.Size       = new System.Drawing.Size(18, 26);
     this.kryptonAlphaValueLabel8.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.kryptonAlphaValueLabel8.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.kryptonAlphaValueLabel8.TabIndex    = 26;
     this.kryptonAlphaValueLabel8.TextSize    = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.kryptonAlphaValueLabel8.Values.Text = "(";
     //
     // kryptonAlphaValueLabel7
     //
     this.kryptonAlphaValueLabel7.AlphaValue = 255;
     this.kryptonAlphaValueLabel7.Location   = new System.Drawing.Point(28, 95);
     this.kryptonAlphaValueLabel7.Name       = "kryptonAlphaValueLabel7";
     this.kryptonAlphaValueLabel7.Size       = new System.Drawing.Size(49, 26);
     this.kryptonAlphaValueLabel7.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.kryptonAlphaValueLabel7.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.kryptonAlphaValueLabel7.TabIndex    = 25;
     this.kryptonAlphaValueLabel7.TextSize    = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.kryptonAlphaValueLabel7.Values.Text = "RGB:";
     //
     // kryptonAlphaValueLabel6
     //
     this.kryptonAlphaValueLabel6.AlphaValue = 255;
     this.kryptonAlphaValueLabel6.Location   = new System.Drawing.Point(28, 155);
     this.kryptonAlphaValueLabel6.Name       = "kryptonAlphaValueLabel6";
     this.kryptonAlphaValueLabel6.Size       = new System.Drawing.Size(164, 26);
     this.kryptonAlphaValueLabel6.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.kryptonAlphaValueLabel6.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.kryptonAlphaValueLabel6.TabIndex    = 24;
     this.kryptonAlphaValueLabel6.TextSize    = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.kryptonAlphaValueLabel6.Values.Text = "Hexadecimal Value:";
     //
     // kryptonAlphaValueLabel5
     //
     this.kryptonAlphaValueLabel5.AlphaValue = 255;
     this.kryptonAlphaValueLabel5.Location   = new System.Drawing.Point(457, 35);
     this.kryptonAlphaValueLabel5.Name       = "kryptonAlphaValueLabel5";
     this.kryptonAlphaValueLabel5.Size       = new System.Drawing.Size(18, 26);
     this.kryptonAlphaValueLabel5.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.kryptonAlphaValueLabel5.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.kryptonAlphaValueLabel5.TabIndex    = 23;
     this.kryptonAlphaValueLabel5.TextSize    = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.kryptonAlphaValueLabel5.Values.Text = ")";
     //
     // kryptonAlphaValueLabel4
     //
     this.kryptonAlphaValueLabel4.AlphaValue = 255;
     this.kryptonAlphaValueLabel4.Location   = new System.Drawing.Point(367, 35);
     this.kryptonAlphaValueLabel4.Name       = "kryptonAlphaValueLabel4";
     this.kryptonAlphaValueLabel4.Size       = new System.Drawing.Size(16, 26);
     this.kryptonAlphaValueLabel4.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.kryptonAlphaValueLabel4.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.kryptonAlphaValueLabel4.TabIndex    = 22;
     this.kryptonAlphaValueLabel4.TextSize    = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.kryptonAlphaValueLabel4.Values.Text = ",";
     //
     // kryptonAlphaValueLabel3
     //
     this.kryptonAlphaValueLabel3.AlphaValue = 255;
     this.kryptonAlphaValueLabel3.Location   = new System.Drawing.Point(277, 35);
     this.kryptonAlphaValueLabel3.Name       = "kryptonAlphaValueLabel3";
     this.kryptonAlphaValueLabel3.Size       = new System.Drawing.Size(16, 26);
     this.kryptonAlphaValueLabel3.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.kryptonAlphaValueLabel3.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.kryptonAlphaValueLabel3.TabIndex    = 21;
     this.kryptonAlphaValueLabel3.TextSize    = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.kryptonAlphaValueLabel3.Values.Text = ",";
     //
     // kryptonAlphaValueLabel2
     //
     this.kryptonAlphaValueLabel2.AlphaValue = 255;
     this.kryptonAlphaValueLabel2.Location   = new System.Drawing.Point(187, 35);
     this.kryptonAlphaValueLabel2.Name       = "kryptonAlphaValueLabel2";
     this.kryptonAlphaValueLabel2.Size       = new System.Drawing.Size(16, 26);
     this.kryptonAlphaValueLabel2.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.kryptonAlphaValueLabel2.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.kryptonAlphaValueLabel2.TabIndex    = 20;
     this.kryptonAlphaValueLabel2.TextSize    = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.kryptonAlphaValueLabel2.Values.Text = ",";
     //
     // kryptonAlphaValueNumericBox1
     //
     this.kryptonAlphaValueNumericBox1.Location = new System.Drawing.Point(119, 35);
     this.kryptonAlphaValueNumericBox1.Maximum  = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.kryptonAlphaValueNumericBox1.Name = "kryptonAlphaValueNumericBox1";
     this.kryptonAlphaValueNumericBox1.Size = new System.Drawing.Size(62, 26);
     this.kryptonAlphaValueNumericBox1.StateCommon.Back.Color1    = System.Drawing.Color.White;
     this.kryptonAlphaValueNumericBox1.StateCommon.Content.Color1 = System.Drawing.Color.Black;
     this.kryptonAlphaValueNumericBox1.StateCommon.Content.Font   = new System.Drawing.Font("Segoe UI", 11F);
     this.kryptonAlphaValueNumericBox1.StateCommon.Content.TextH  = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Inherit;
     this.kryptonAlphaValueNumericBox1.TabIndex = 16;
     this.kryptonAlphaValueNumericBox1.Value    = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     //
     // kryptonRedValueNumericBox1
     //
     this.kryptonRedValueNumericBox1.Location = new System.Drawing.Point(209, 35);
     this.kryptonRedValueNumericBox1.Maximum  = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.kryptonRedValueNumericBox1.Name = "kryptonRedValueNumericBox1";
     this.kryptonRedValueNumericBox1.Size = new System.Drawing.Size(62, 26);
     this.kryptonRedValueNumericBox1.StateCommon.Back.Color1    = System.Drawing.Color.Red;
     this.kryptonRedValueNumericBox1.StateCommon.Content.Color1 = System.Drawing.Color.White;
     this.kryptonRedValueNumericBox1.StateCommon.Content.Font   = new System.Drawing.Font("Segoe UI", 11F);
     this.kryptonRedValueNumericBox1.StateCommon.Content.TextH  = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Inherit;
     this.kryptonRedValueNumericBox1.TabIndex = 17;
     //
     // kryptonAlphaValueLabel1
     //
     this.kryptonAlphaValueLabel1.AlphaValue = 255;
     this.kryptonAlphaValueLabel1.Location   = new System.Drawing.Point(95, 35);
     this.kryptonAlphaValueLabel1.Name       = "kryptonAlphaValueLabel1";
     this.kryptonAlphaValueLabel1.Size       = new System.Drawing.Size(18, 26);
     this.kryptonAlphaValueLabel1.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.kryptonAlphaValueLabel1.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.kryptonAlphaValueLabel1.TabIndex    = 5;
     this.kryptonAlphaValueLabel1.TextSize    = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.kryptonAlphaValueLabel1.Values.Text = "(";
     //
     // kryptonGreenValueNumericBox1
     //
     this.kryptonGreenValueNumericBox1.Location = new System.Drawing.Point(299, 35);
     this.kryptonGreenValueNumericBox1.Maximum  = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.kryptonGreenValueNumericBox1.Name = "kryptonGreenValueNumericBox1";
     this.kryptonGreenValueNumericBox1.Size = new System.Drawing.Size(62, 26);
     this.kryptonGreenValueNumericBox1.StateCommon.Back.Color1    = System.Drawing.Color.Green;
     this.kryptonGreenValueNumericBox1.StateCommon.Content.Color1 = System.Drawing.Color.White;
     this.kryptonGreenValueNumericBox1.StateCommon.Content.Font   = new System.Drawing.Font("Segoe UI", 11F);
     this.kryptonGreenValueNumericBox1.StateCommon.Content.TextH  = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Inherit;
     this.kryptonGreenValueNumericBox1.TabIndex = 18;
     //
     // kavlNormal
     //
     this.kavlNormal.AlphaValue = 255;
     this.kavlNormal.Location   = new System.Drawing.Point(28, 35);
     this.kavlNormal.Name       = "kavlNormal";
     this.kavlNormal.Size       = new System.Drawing.Size(61, 26);
     this.kavlNormal.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.kavlNormal.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.kavlNormal.TabIndex    = 4;
     this.kavlNormal.TextSize    = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.kavlNormal.Values.Text = "ARGB:";
     //
     // kryptonBlueValueNumericBox1
     //
     this.kryptonBlueValueNumericBox1.Location = new System.Drawing.Point(389, 35);
     this.kryptonBlueValueNumericBox1.Maximum  = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.kryptonBlueValueNumericBox1.Name = "kryptonBlueValueNumericBox1";
     this.kryptonBlueValueNumericBox1.Size = new System.Drawing.Size(62, 26);
     this.kryptonBlueValueNumericBox1.StateCommon.Back.Color1    = System.Drawing.Color.Blue;
     this.kryptonBlueValueNumericBox1.StateCommon.Content.Color1 = System.Drawing.Color.White;
     this.kryptonBlueValueNumericBox1.StateCommon.Content.Font   = new System.Drawing.Font("Segoe UI", 11F);
     this.kryptonBlueValueNumericBox1.StateCommon.Content.TextH  = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Inherit;
     this.kryptonBlueValueNumericBox1.TabIndex = 19;
     //
     // ktxtHexValue
     //
     this.ktxtHexValue.Hint      = "#000000";
     this.ktxtHexValue.Location  = new System.Drawing.Point(198, 152);
     this.ktxtHexValue.MaxLength = 7;
     this.ktxtHexValue.Name      = "ktxtHexValue";
     this.ktxtHexValue.Size      = new System.Drawing.Size(100, 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  = 33;
     this.ktxtHexValue.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     //
     // KryptonColourDetailsDialog
     //
     this.ClientSize = new System.Drawing.Size(494, 261);
     this.Controls.Add(this.kryptonPanel2);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.kryptonPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "KryptonColourDetailsDialog";
     this.ShowInTaskbar   = false;
     this.Load           += new System.EventHandler(this.KryptonColourDetailsDialog_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.ResumeLayout(false);
 }
 private void InitializeComponent()
 {
     this.components     = new System.ComponentModel.Container();
     this.kryptonPanel1  = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.txtFilePath    = new System.Windows.Forms.TextBox();
     this.ktxtFilePath   = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this.tvFileList     = new System.Windows.Forms.TreeView();
     this.ktvFileList    = new ComponentFactory.Krypton.Toolkit.KryptonTreeView();
     this.panel1         = new System.Windows.Forms.Panel();
     this.kryptonPanel2  = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kbtnNewFolder  = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kbtnOk         = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kbtnCancel     = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.ilSystemImages = new System.Windows.Forms.ImageList(this.components);
     this.kptxtFilePath  = new ExtendedControls.ExtendedToolkit.Controls.KryptonPromptTextBox();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).BeginInit();
     this.kryptonPanel2.SuspendLayout();
     this.SuspendLayout();
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.txtFilePath);
     this.kryptonPanel1.Controls.Add(this.kptxtFilePath);
     this.kryptonPanel1.Controls.Add(this.ktxtFilePath);
     this.kryptonPanel1.Controls.Add(this.tvFileList);
     this.kryptonPanel1.Controls.Add(this.ktvFileList);
     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(491, 517);
     this.kryptonPanel1.TabIndex = 0;
     //
     // txtFilePath
     //
     this.txtFilePath.Font     = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtFilePath.Location = new System.Drawing.Point(12, 13);
     this.txtFilePath.Name     = "txtFilePath";
     this.txtFilePath.Size     = new System.Drawing.Size(466, 27);
     this.txtFilePath.TabIndex = 3;
     //
     // ktxtFilePath
     //
     this.ktxtFilePath.Location = new System.Drawing.Point(12, 13);
     this.ktxtFilePath.Name     = "ktxtFilePath";
     this.ktxtFilePath.Size     = new System.Drawing.Size(466, 27);
     this.ktxtFilePath.StateCommon.Content.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ktxtFilePath.TabIndex = 4;
     //
     // tvFileList
     //
     this.tvFileList.Font         = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.tvFileList.Location     = new System.Drawing.Point(11, 50);
     this.tvFileList.Name         = "tvFileList";
     this.tvFileList.Size         = new System.Drawing.Size(467, 450);
     this.tvFileList.TabIndex     = 3;
     this.tvFileList.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.tvFileList_AfterSelect);
     //
     // ktvFileList
     //
     this.ktvFileList.Location = new System.Drawing.Point(12, 50);
     this.ktvFileList.Name     = "ktvFileList";
     this.ktvFileList.Size     = new System.Drawing.Size(467, 450);
     this.ktvFileList.StateNormal.Node.Content.LongText.Font  = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ktvFileList.StateNormal.Node.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ktvFileList.TabIndex     = 0;
     this.ktvFileList.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.ktvFileList_AfterSelect);
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.SystemColors.ControlDarkDark;
     this.panel1.Dock      = System.Windows.Forms.DockStyle.Top;
     this.panel1.Location  = new System.Drawing.Point(0, 517);
     this.panel1.Name      = "panel1";
     this.panel1.Size      = new System.Drawing.Size(491, 3);
     this.panel1.TabIndex  = 1;
     //
     // kryptonPanel2
     //
     this.kryptonPanel2.Controls.Add(this.kbtnNewFolder);
     this.kryptonPanel2.Controls.Add(this.kbtnOk);
     this.kryptonPanel2.Controls.Add(this.kbtnCancel);
     this.kryptonPanel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.kryptonPanel2.Location = new System.Drawing.Point(0, 520);
     this.kryptonPanel2.Name     = "kryptonPanel2";
     this.kryptonPanel2.Size     = new System.Drawing.Size(491, 47);
     this.kryptonPanel2.TabIndex = 2;
     //
     // kbtnNewFolder
     //
     this.kbtnNewFolder.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.kbtnNewFolder.Location     = new System.Drawing.Point(12, 7);
     this.kbtnNewFolder.Name         = "kbtnNewFolder";
     this.kbtnNewFolder.Size         = new System.Drawing.Size(118, 28);
     this.kbtnNewFolder.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnNewFolder.TabIndex    = 2;
     this.kbtnNewFolder.Values.Text = "New &Folder";
     this.kbtnNewFolder.Click      += new System.EventHandler(this.kbtnNewFolder_Click);
     //
     // kbtnOk
     //
     this.kbtnOk.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.kbtnOk.Location     = new System.Drawing.Point(292, 7);
     this.kbtnOk.Name         = "kbtnOk";
     this.kbtnOk.Size         = new System.Drawing.Size(90, 28);
     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    = 1;
     this.kbtnOk.Values.Text = "&Ok";
     this.kbtnOk.Click      += new System.EventHandler(this.kbtnOk_Click);
     //
     // kbtnCancel
     //
     this.kbtnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.kbtnCancel.Location     = new System.Drawing.Point(388, 7);
     this.kbtnCancel.Name         = "kbtnCancel";
     this.kbtnCancel.Size         = new System.Drawing.Size(90, 28);
     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    = 0;
     this.kbtnCancel.Values.Text = "&Cancel";
     this.kbtnCancel.Click      += new System.EventHandler(this.kbtnCancel_Click);
     //
     // ilSystemImages
     //
     this.ilSystemImages.ColorDepth       = System.Windows.Forms.ColorDepth.Depth8Bit;
     this.ilSystemImages.ImageSize        = new System.Drawing.Size(16, 16);
     this.ilSystemImages.TransparentColor = System.Drawing.Color.Transparent;
     //
     // kptxtFilePath
     //
     this.kptxtFilePath.DrawPrompt       = true;
     this.kptxtFilePath.FocusSelect      = true;
     this.kptxtFilePath.Font             = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kptxtFilePath.Location         = new System.Drawing.Point(12, 13);
     this.kptxtFilePath.Name             = "kptxtFilePath";
     this.kptxtFilePath.PromptForeColour = System.Drawing.SystemColors.GrayText;
     this.kptxtFilePath.PromptText       = "Enter directory path...";
     this.kptxtFilePath.PromptTypeface   = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kptxtFilePath.Size             = new System.Drawing.Size(466, 27);
     this.kptxtFilePath.TabIndex         = 2;
     //
     // KryptonFileBrowser
     //
     this.ClientSize = new System.Drawing.Size(491, 567);
     this.Controls.Add(this.kryptonPanel2);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.kryptonPanel1);
     this.Font            = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "KryptonFileBrowser";
     this.ShowIcon        = false;
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text            = "File Browser";
     this.TextExtra       = "(Beta)";
     this.Load           += new System.EventHandler(this.KryptonFileBrowser_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.ResumeLayout(false);
 }
Exemplo n.º 24
0
 private void InitializeComponent()
 {
     _panelMessage    = new KryptonPanel();
     _textBoxResponse = new KryptonTextBox();
     _labelPrompt     = new KryptonWrapLabel();
     _buttonCancel    = new KryptonButton();
     _buttonOK        = new KryptonButton();
     ((ISupportInitialize)(_panelMessage)).BeginInit();
     _panelMessage.SuspendLayout();
     SuspendLayout();
     //
     // _panelMessage
     //
     _panelMessage.Controls.Add(_textBoxResponse);
     _panelMessage.Controls.Add(_labelPrompt);
     _panelMessage.Controls.Add(_buttonCancel);
     _panelMessage.Controls.Add(_buttonOK);
     _panelMessage.Dock     = DockStyle.Fill;
     _panelMessage.Location = new Point(0, 0);
     _panelMessage.Name     = "_panelMessage";
     _panelMessage.Size     = new Size(357, 118);
     _panelMessage.TabIndex = 0;
     //
     // _textBoxResponse
     //
     _textBoxResponse.Location = new Point(12, 86);
     _textBoxResponse.Name     = "_textBoxResponse";
     _textBoxResponse.Size     = new Size(333, 20);
     _textBoxResponse.TabIndex = 0;
     //
     // _labelPrompt
     //
     _labelPrompt.AutoSize   = false;
     _labelPrompt.Font       = new Font("Segoe UI", 9F);
     _labelPrompt.ForeColor  = Color.FromArgb(30, 57, 91);
     _labelPrompt.LabelStyle = LabelStyle.NormalPanel;
     _labelPrompt.Location   = new Point(12, 12);
     _labelPrompt.Margin     = new Padding(0);
     _labelPrompt.Name       = "_labelPrompt";
     _labelPrompt.Size       = new Size(78, 15);
     _labelPrompt.Text       = "Prompt";
     //
     // _buttonCancel
     //
     _buttonCancel.Anchor       = AnchorStyles.Top | AnchorStyles.Right;
     _buttonCancel.AutoSize     = true;
     _buttonCancel.DialogResult = DialogResult.Cancel;
     _buttonCancel.Location     = new Point(295, 43);
     _buttonCancel.Margin       = new Padding(0);
     _buttonCancel.MinimumSize  = new Size(50, 26);
     _buttonCancel.Name         = "_buttonCancel";
     _buttonCancel.Size         = new Size(50, 26);
     _buttonCancel.TabIndex     = 2;
     _buttonCancel.Values.Text  = "Cancel";
     _buttonCancel.KeyDown     += button_keyDown;
     //
     // _buttonOK
     //
     _buttonOK.Anchor       = AnchorStyles.Top | AnchorStyles.Right;
     _buttonOK.AutoSize     = true;
     _buttonOK.DialogResult = DialogResult.OK;
     _buttonOK.Location     = new Point(295, 12);
     _buttonOK.Margin       = new Padding(0);
     _buttonOK.MinimumSize  = new Size(50, 26);
     _buttonOK.Name         = "_buttonOK";
     _buttonOK.Size         = new Size(50, 26);
     _buttonOK.TabIndex     = 1;
     _buttonOK.Values.Text  = "OK";
     _buttonOK.KeyDown     += button_keyDown;
     //
     // KryptonInputBox
     //
     AutoScaleDimensions = new SizeF(6F, 13F);
     AutoScaleMode       = AutoScaleMode.Font;
     ClientSize          = new Size(357, 118);
     Controls.Add(_panelMessage);
     FormBorderStyle = FormBorderStyle.FixedDialog;
     MaximizeBox     = false;
     MinimizeBox     = false;
     Name            = "KryptonInputBox";
     ShowIcon        = false;
     ShowInTaskbar   = false;
     SizeGripStyle   = SizeGripStyle.Hide;
     StartPosition   = FormStartPosition.CenterParent;
     ((ISupportInitialize)(_panelMessage)).EndInit();
     _panelMessage.ResumeLayout(false);
     _panelMessage.PerformLayout();
     ResumeLayout(false);
 }
Exemplo n.º 25
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();
     ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues popupPositionValues15 = new ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues();
     ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues popupPositionValues14 = new ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues();
     ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues popupPositionValues13 = new ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues();
     ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues popupPositionValues10 = new ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues();
     ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues popupPositionValues11 = new ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues();
     ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues popupPositionValues12 = new ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues();
     ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues popupPositionValues9  = new ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues();
     ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues popupPositionValues8  = new ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues();
     ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues popupPositionValues6  = new ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues();
     ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues popupPositionValues7  = new ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues();
     ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues popupPositionValues5  = new ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues();
     ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues popupPositionValues4  = new ComponentFactory.Krypton.Toolkit.Values.PopupPositionValues();
     this.kryptonPanel1              = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kbtnCancel                 = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kbtnSave                   = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kbtnResizeImage            = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.panel1                     = new System.Windows.Forms.Panel();
     this.kryptonPanel2              = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.klblPaletteStyle           = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.ktxtTargetImageLocation    = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this.kbtnTargetBrowse           = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kbtnBrowseNewImageLocation = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.ktxtNewImageLocation       = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this.kryptonLabel1              = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kryptonLabel2              = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.knudWidth                  = new ComponentFactory.Krypton.Toolkit.KryptonNumericUpDown();
     this.knudHeight                 = new ComponentFactory.Krypton.Toolkit.KryptonNumericUpDown();
     this.kryptonLabel3              = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kryptonLabel4              = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kcmbFileType               = new ComponentFactory.Krypton.Toolkit.KryptonComboBox();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).BeginInit();
     this.kryptonPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kcmbFileType)).BeginInit();
     this.SuspendLayout();
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.kbtnResizeImage);
     this.kryptonPanel1.Controls.Add(this.kbtnSave);
     this.kryptonPanel1.Controls.Add(this.kbtnCancel);
     this.kryptonPanel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.kryptonPanel1.Location = new System.Drawing.Point(0, 158);
     this.kryptonPanel1.Name     = "kryptonPanel1";
     this.kryptonPanel1.Size     = new System.Drawing.Size(830, 55);
     this.kryptonPanel1.TabIndex = 0;
     //
     // 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(701, 14);
     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                      = 14;
     popupPositionValues3.PlacementMode            = ComponentFactory.Krypton.Toolkit.PlacementMode.Bottom;
     this.kbtnCancel.ToolTipValues.ToolTipPosition = popupPositionValues3;
     this.kbtnCancel.Values.Text                   = "&Cancel";
     //
     // kbtnSave
     //
     this.kbtnSave.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.kbtnSave.Enabled  = false;
     this.kbtnSave.Location = new System.Drawing.Point(578, 14);
     this.kbtnSave.Name     = "kbtnSave";
     this.kbtnSave.Size     = new System.Drawing.Size(117, 29);
     this.kbtnSave.StateCommon.Content.LongText.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnSave.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnSave.TabIndex                      = 15;
     popupPositionValues2.PlacementMode          = ComponentFactory.Krypton.Toolkit.PlacementMode.Bottom;
     this.kbtnSave.ToolTipValues.ToolTipPosition = popupPositionValues2;
     this.kbtnSave.Values.Text                   = "&Save";
     this.kbtnSave.Click += new System.EventHandler(this.KbtnSave_Click);
     //
     // kbtnResizeImage
     //
     this.kbtnResizeImage.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.kbtnResizeImage.Location = new System.Drawing.Point(371, 14);
     this.kbtnResizeImage.Name     = "kbtnResizeImage";
     this.kbtnResizeImage.Size     = new System.Drawing.Size(201, 29);
     this.kbtnResizeImage.StateCommon.Content.LongText.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnResizeImage.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnResizeImage.TabIndex      = 16;
     popupPositionValues1.PlacementMode = ComponentFactory.Krypton.Toolkit.PlacementMode.Bottom;
     this.kbtnResizeImage.ToolTipValues.ToolTipPosition = popupPositionValues1;
     this.kbtnResizeImage.Values.Text = "Resize &Image";
     this.kbtnResizeImage.Click      += new System.EventHandler(this.KbtnResizeImage_Click);
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.SystemColors.ControlDarkDark;
     this.panel1.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Location  = new System.Drawing.Point(0, 153);
     this.panel1.Name      = "panel1";
     this.panel1.Size      = new System.Drawing.Size(830, 5);
     this.panel1.TabIndex  = 1;
     //
     // kryptonPanel2
     //
     this.kryptonPanel2.Controls.Add(this.kcmbFileType);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel4);
     this.kryptonPanel2.Controls.Add(this.knudHeight);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel3);
     this.kryptonPanel2.Controls.Add(this.knudWidth);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel2);
     this.kryptonPanel2.Controls.Add(this.kbtnBrowseNewImageLocation);
     this.kryptonPanel2.Controls.Add(this.ktxtNewImageLocation);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel1);
     this.kryptonPanel2.Controls.Add(this.kbtnTargetBrowse);
     this.kryptonPanel2.Controls.Add(this.ktxtTargetImageLocation);
     this.kryptonPanel2.Controls.Add(this.klblPaletteStyle);
     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(830, 153);
     this.kryptonPanel2.TabIndex = 2;
     //
     // klblPaletteStyle
     //
     this.klblPaletteStyle.Location = new System.Drawing.Point(12, 12);
     this.klblPaletteStyle.Name     = "klblPaletteStyle";
     this.klblPaletteStyle.Size     = new System.Drawing.Size(113, 24);
     this.klblPaletteStyle.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.klblPaletteStyle.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.klblPaletteStyle.TabIndex      = 6;
     popupPositionValues15.PlacementMode = ComponentFactory.Krypton.Toolkit.PlacementMode.Bottom;
     this.klblPaletteStyle.ToolTipValues.ToolTipPosition = popupPositionValues15;
     this.klblPaletteStyle.Values.Text = "Target Image:";
     //
     // ktxtTargetImageLocation
     //
     this.ktxtTargetImageLocation.Hint     = "Taget image location...";
     this.ktxtTargetImageLocation.Location = new System.Drawing.Point(131, 10);
     this.ktxtTargetImageLocation.Name     = "ktxtTargetImageLocation";
     this.ktxtTargetImageLocation.Size     = new System.Drawing.Size(642, 29);
     this.ktxtTargetImageLocation.StateCommon.Content.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ktxtTargetImageLocation.TabIndex = 7;
     popupPositionValues14.PlacementMode   = ComponentFactory.Krypton.Toolkit.PlacementMode.Bottom;
     this.ktxtTargetImageLocation.ToolTipValues.ToolTipPosition = popupPositionValues14;
     //
     // kbtnTargetBrowse
     //
     this.kbtnTargetBrowse.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.kbtnTargetBrowse.Location = new System.Drawing.Point(779, 12);
     this.kbtnTargetBrowse.Name     = "kbtnTargetBrowse";
     this.kbtnTargetBrowse.Size     = new System.Drawing.Size(39, 27);
     this.kbtnTargetBrowse.StateCommon.Content.LongText.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnTargetBrowse.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnTargetBrowse.TabIndex      = 17;
     popupPositionValues13.PlacementMode = ComponentFactory.Krypton.Toolkit.PlacementMode.Bottom;
     this.kbtnTargetBrowse.ToolTipValues.ToolTipPosition = popupPositionValues13;
     this.kbtnTargetBrowse.Values.Text = "...";
     this.kbtnTargetBrowse.Click      += new System.EventHandler(this.KbtnTargetBrowse_Click);
     //
     // kbtnBrowseNewImageLocation
     //
     this.kbtnBrowseNewImageLocation.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.kbtnBrowseNewImageLocation.Location = new System.Drawing.Point(779, 56);
     this.kbtnBrowseNewImageLocation.Name     = "kbtnBrowseNewImageLocation";
     this.kbtnBrowseNewImageLocation.Size     = new System.Drawing.Size(39, 27);
     this.kbtnBrowseNewImageLocation.StateCommon.Content.LongText.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnBrowseNewImageLocation.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnBrowseNewImageLocation.TabIndex = 20;
     popupPositionValues10.PlacementMode      = ComponentFactory.Krypton.Toolkit.PlacementMode.Bottom;
     this.kbtnBrowseNewImageLocation.ToolTipValues.ToolTipPosition = popupPositionValues10;
     this.kbtnBrowseNewImageLocation.Values.Text = "...";
     this.kbtnBrowseNewImageLocation.Click      += new System.EventHandler(this.KbtnBrowseNewImageLocation_Click);
     //
     // ktxtNewImageLocation
     //
     this.ktxtNewImageLocation.Hint     = "New image location...";
     this.ktxtNewImageLocation.Location = new System.Drawing.Point(131, 54);
     this.ktxtNewImageLocation.Name     = "ktxtNewImageLocation";
     this.ktxtNewImageLocation.Size     = new System.Drawing.Size(642, 29);
     this.ktxtNewImageLocation.StateCommon.Content.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ktxtNewImageLocation.TabIndex  = 19;
     popupPositionValues11.PlacementMode = ComponentFactory.Krypton.Toolkit.PlacementMode.Bottom;
     this.ktxtNewImageLocation.ToolTipValues.ToolTipPosition = popupPositionValues11;
     //
     // kryptonLabel1
     //
     this.kryptonLabel1.Location = new System.Drawing.Point(12, 56);
     this.kryptonLabel1.Name     = "kryptonLabel1";
     this.kryptonLabel1.Size     = new System.Drawing.Size(99, 24);
     this.kryptonLabel1.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel1.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel1.TabIndex         = 18;
     popupPositionValues12.PlacementMode = ComponentFactory.Krypton.Toolkit.PlacementMode.Bottom;
     this.kryptonLabel1.ToolTipValues.ToolTipPosition = popupPositionValues12;
     this.kryptonLabel1.Values.Text = "Save Image:";
     //
     // kryptonLabel2
     //
     this.kryptonLabel2.Location = new System.Drawing.Point(106, 110);
     this.kryptonLabel2.Name     = "kryptonLabel2";
     this.kryptonLabel2.Size     = new System.Drawing.Size(60, 24);
     this.kryptonLabel2.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel2.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel2.TabIndex        = 21;
     popupPositionValues9.PlacementMode = ComponentFactory.Krypton.Toolkit.PlacementMode.Bottom;
     this.kryptonLabel2.ToolTipValues.ToolTipPosition = popupPositionValues9;
     this.kryptonLabel2.Values.Text = "Width:";
     //
     // knudWidth
     //
     this.knudWidth.DecimalPlaces = 99;
     this.knudWidth.Location      = new System.Drawing.Point(172, 108);
     this.knudWidth.Maximum       = new decimal(new int[] {
         999999,
         0,
         0,
         0
     });
     this.knudWidth.Name = "knudWidth";
     this.knudWidth.Size = new System.Drawing.Size(120, 28);
     this.knudWidth.StateCommon.Content.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.knudWidth.TabIndex                      = 22;
     this.knudWidth.TextAlign                     = System.Windows.Forms.HorizontalAlignment.Center;
     popupPositionValues8.PlacementMode           = ComponentFactory.Krypton.Toolkit.PlacementMode.Bottom;
     this.knudWidth.ToolTipValues.ToolTipPosition = popupPositionValues8;
     //
     // knudHeight
     //
     this.knudHeight.DecimalPlaces = 99;
     this.knudHeight.Location      = new System.Drawing.Point(393, 108);
     this.knudHeight.Maximum       = new decimal(new int[] {
         999999,
         0,
         0,
         0
     });
     this.knudHeight.Name = "knudHeight";
     this.knudHeight.Size = new System.Drawing.Size(120, 28);
     this.knudHeight.StateCommon.Content.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.knudHeight.TabIndex                      = 24;
     this.knudHeight.TextAlign                     = System.Windows.Forms.HorizontalAlignment.Center;
     popupPositionValues6.PlacementMode            = ComponentFactory.Krypton.Toolkit.PlacementMode.Bottom;
     this.knudHeight.ToolTipValues.ToolTipPosition = popupPositionValues6;
     //
     // kryptonLabel3
     //
     this.kryptonLabel3.Location = new System.Drawing.Point(322, 110);
     this.kryptonLabel3.Name     = "kryptonLabel3";
     this.kryptonLabel3.Size     = new System.Drawing.Size(65, 24);
     this.kryptonLabel3.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel3.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel3.TabIndex        = 23;
     popupPositionValues7.PlacementMode = ComponentFactory.Krypton.Toolkit.PlacementMode.Bottom;
     this.kryptonLabel3.ToolTipValues.ToolTipPosition = popupPositionValues7;
     this.kryptonLabel3.Values.Text = "Height:";
     //
     // kryptonLabel4
     //
     this.kryptonLabel4.Location = new System.Drawing.Point(556, 110);
     this.kryptonLabel4.Name     = "kryptonLabel4";
     this.kryptonLabel4.Size     = new System.Drawing.Size(51, 24);
     this.kryptonLabel4.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel4.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel4.TabIndex        = 25;
     popupPositionValues5.PlacementMode = ComponentFactory.Krypton.Toolkit.PlacementMode.Bottom;
     this.kryptonLabel4.ToolTipValues.ToolTipPosition = popupPositionValues5;
     this.kryptonLabel4.Values.Text = "Type:";
     //
     // kcmbFileType
     //
     this.kcmbFileType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.kcmbFileType.DropDownWidth = 121;
     this.kcmbFileType.Location      = new System.Drawing.Point(613, 110);
     this.kcmbFileType.Name          = "kcmbFileType";
     this.kcmbFileType.Size          = new System.Drawing.Size(121, 27);
     this.kcmbFileType.StateCommon.ComboBox.Content.Font       = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kcmbFileType.StateCommon.Item.Content.LongText.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kcmbFileType.StateCommon.Item.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kcmbFileType.TabIndex         = 26;
     popupPositionValues4.PlacementMode = ComponentFactory.Krypton.Toolkit.PlacementMode.Bottom;
     this.kcmbFileType.ToolTipValues.ToolTipPosition = popupPositionValues4;
     //
     // KryptonImageResizingToolWindow
     //
     this.ClientSize = new System.Drawing.Size(830, 213);
     this.Controls.Add(this.kryptonPanel2);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.kryptonPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "KryptonImageResizingToolWindow";
     this.ShowInTaskbar   = false;
     this.Text            = "Krypton Image Resizer";
     this.Load           += new System.EventHandler(this.KryptonImageResizingToolWindow_Load);
     ((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.kcmbFileType)).EndInit();
     this.ResumeLayout(false);
 }
Exemplo n.º 26
0
 private void InitializeComponent()
 {
     this.components       = new System.ComponentModel.Container();
     this.kryptonLabel1    = new Krypton.Toolkit.KryptonLabel();
     this.ktxtChamberOne   = new Krypton.Toolkit.KryptonTextBox();
     this.kryptonLabel2    = new Krypton.Toolkit.KryptonLabel();
     this.ktxtChamberTwo   = new Krypton.Toolkit.KryptonTextBox();
     this.kryptonLabel3    = new Krypton.Toolkit.KryptonLabel();
     this.ktxtChamberThree = new Krypton.Toolkit.KryptonTextBox();
     this.ktxtChamberFour  = new Krypton.Toolkit.KryptonTextBox();
     this._tt = new System.Windows.Forms.ToolTip(this.components);
     this.SuspendLayout();
     //
     // kryptonLabel1
     //
     this.kryptonLabel1.Dock        = System.Windows.Forms.DockStyle.Left;
     this.kryptonLabel1.Location    = new System.Drawing.Point(41, 0);
     this.kryptonLabel1.Name        = "kryptonLabel1";
     this.kryptonLabel1.Size        = new System.Drawing.Size(13, 20);
     this.kryptonLabel1.TabIndex    = 3;
     this.kryptonLabel1.Values.Text = ".";
     //
     // ktxtChamberOne
     //
     this.ktxtChamberOne.Dock      = System.Windows.Forms.DockStyle.Left;
     this.ktxtChamberOne.Hint      = "0";
     this.ktxtChamberOne.Location  = new System.Drawing.Point(0, 0);
     this.ktxtChamberOne.MaxLength = 3;
     this.ktxtChamberOne.Name      = "ktxtChamberOne";
     this.ktxtChamberOne.Size      = new System.Drawing.Size(41, 20);
     this.ktxtChamberOne.TabIndex  = 2;
     this.ktxtChamberOne.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.ktxtChamberOne.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.ktxtChamberOne_KeyPress);
     this.ktxtChamberOne.Enter    += new System.EventHandler(this.EnterBox);
     //
     // kryptonLabel2
     //
     this.kryptonLabel2.Dock        = System.Windows.Forms.DockStyle.Left;
     this.kryptonLabel2.Location    = new System.Drawing.Point(95, 0);
     this.kryptonLabel2.Name        = "kryptonLabel2";
     this.kryptonLabel2.Size        = new System.Drawing.Size(13, 20);
     this.kryptonLabel2.TabIndex    = 5;
     this.kryptonLabel2.Values.Text = ".";
     //
     // ktxtChamberTwo
     //
     this.ktxtChamberTwo.Dock      = System.Windows.Forms.DockStyle.Left;
     this.ktxtChamberTwo.Hint      = "0";
     this.ktxtChamberTwo.Location  = new System.Drawing.Point(54, 0);
     this.ktxtChamberTwo.MaxLength = 3;
     this.ktxtChamberTwo.Name      = "ktxtChamberTwo";
     this.ktxtChamberTwo.Size      = new System.Drawing.Size(41, 20);
     this.ktxtChamberTwo.TabIndex  = 4;
     this.ktxtChamberTwo.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.ktxtChamberTwo.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.ktxtChamberTwo_KeyPress);
     this.ktxtChamberTwo.Enter    += new System.EventHandler(this.EnterBox);
     //
     // kryptonLabel3
     //
     this.kryptonLabel3.Dock        = System.Windows.Forms.DockStyle.Left;
     this.kryptonLabel3.Location    = new System.Drawing.Point(149, 0);
     this.kryptonLabel3.Name        = "kryptonLabel3";
     this.kryptonLabel3.Size        = new System.Drawing.Size(13, 20);
     this.kryptonLabel3.TabIndex    = 7;
     this.kryptonLabel3.Values.Text = ".";
     //
     // ktxtChamberThree
     //
     this.ktxtChamberThree.Dock      = System.Windows.Forms.DockStyle.Left;
     this.ktxtChamberThree.Hint      = "0";
     this.ktxtChamberThree.Location  = new System.Drawing.Point(108, 0);
     this.ktxtChamberThree.MaxLength = 3;
     this.ktxtChamberThree.Name      = "ktxtChamberThree";
     this.ktxtChamberThree.Size      = new System.Drawing.Size(41, 20);
     this.ktxtChamberThree.TabIndex  = 6;
     this.ktxtChamberThree.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.ktxtChamberThree.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.ktxtChamberThree_KeyPress);
     this.ktxtChamberThree.Enter    += new System.EventHandler(this.EnterBox);
     //
     // ktxtChamberFour
     //
     this.ktxtChamberFour.Dock      = System.Windows.Forms.DockStyle.Left;
     this.ktxtChamberFour.Hint      = "0";
     this.ktxtChamberFour.Location  = new System.Drawing.Point(162, 0);
     this.ktxtChamberFour.MaxLength = 3;
     this.ktxtChamberFour.Name      = "ktxtChamberFour";
     this.ktxtChamberFour.Size      = new System.Drawing.Size(41, 20);
     this.ktxtChamberFour.TabIndex  = 8;
     this.ktxtChamberFour.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
     this.ktxtChamberFour.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.ktxtChamberFour_KeyPress);
     this.ktxtChamberFour.Enter    += new System.EventHandler(this.EnterBox);
     //
     // KryptonIPTextBox
     //
     this.BackColor = System.Drawing.Color.Transparent;
     this.Controls.Add(this.ktxtChamberFour);
     this.Controls.Add(this.kryptonLabel3);
     this.Controls.Add(this.ktxtChamberThree);
     this.Controls.Add(this.kryptonLabel2);
     this.Controls.Add(this.ktxtChamberTwo);
     this.Controls.Add(this.kryptonLabel1);
     this.Controls.Add(this.ktxtChamberOne);
     this.Name = "KryptonIPTextBox";
     this.Size = new System.Drawing.Size(203, 20);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ThemeSelector));
     this.kpnlButtons           = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kbtnRestoreToDefaults = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kbtnCancel            = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kbtnOk           = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kbtnApply        = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.pnlSeperator     = new System.Windows.Forms.Panel();
     this.kpnlContent      = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kbtnTry          = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kbtnBrowse       = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.ktxtCustomPath   = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this.klblCustomTheme  = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kcmbPaletteTheme = new ComponentFactory.Krypton.Toolkit.KryptonComboBox();
     this.kryptonLabel1    = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.palette          = new ComponentFactory.Krypton.Toolkit.KryptonPalette(this.components);
     this.kman             = new ComponentFactory.Krypton.Toolkit.KryptonManager(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.kpnlButtons)).BeginInit();
     this.kpnlButtons.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kpnlContent)).BeginInit();
     this.kpnlContent.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kcmbPaletteTheme)).BeginInit();
     this.SuspendLayout();
     //
     // kpnlButtons
     //
     this.kpnlButtons.Controls.Add(this.kbtnRestoreToDefaults);
     this.kpnlButtons.Controls.Add(this.kbtnCancel);
     this.kpnlButtons.Controls.Add(this.kbtnOk);
     this.kpnlButtons.Controls.Add(this.kbtnApply);
     this.kpnlButtons.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.kpnlButtons.Location = new System.Drawing.Point(0, 146);
     this.kpnlButtons.Name     = "kpnlButtons";
     this.kpnlButtons.Size     = new System.Drawing.Size(785, 54);
     this.kpnlButtons.TabIndex = 1;
     //
     // kbtnRestoreToDefaults
     //
     this.kbtnRestoreToDefaults.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.kbtnRestoreToDefaults.Enabled  = false;
     this.kbtnRestoreToDefaults.Location = new System.Drawing.Point(16, 12);
     this.kbtnRestoreToDefaults.Name     = "kbtnRestoreToDefaults";
     this.kbtnRestoreToDefaults.Size     = new System.Drawing.Size(163, 30);
     this.kbtnRestoreToDefaults.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnRestoreToDefaults.TabIndex    = 3;
     this.kbtnRestoreToDefaults.Values.Text = "&Restore to Defaults";
     this.kbtnRestoreToDefaults.Click      += new System.EventHandler(this.kbtnRestoreToDefaults_Click);
     //
     // 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(587, 12);
     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    = 2;
     this.kbtnCancel.Values.Text = "&Cancel";
     this.kbtnCancel.Click      += new System.EventHandler(this.kbtnCancel_Click);
     //
     // kbtnOk
     //
     this.kbtnOk.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.kbtnOk.Location = new System.Drawing.Point(491, 12);
     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    = 1;
     this.kbtnOk.Values.Text = "&Ok";
     this.kbtnOk.Click      += new System.EventHandler(this.kbtnOk_Click);
     //
     // kbtnApply
     //
     this.kbtnApply.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.kbtnApply.Enabled  = false;
     this.kbtnApply.Location = new System.Drawing.Point(683, 12);
     this.kbtnApply.Name     = "kbtnApply";
     this.kbtnApply.Size     = new System.Drawing.Size(90, 30);
     this.kbtnApply.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnApply.TabIndex    = 0;
     this.kbtnApply.Values.Text = "A&pply";
     this.kbtnApply.Click      += new System.EventHandler(this.kbtnApply_Click);
     //
     // pnlSeperator
     //
     this.pnlSeperator.BackColor = System.Drawing.SystemColors.ControlDarkDark;
     this.pnlSeperator.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.pnlSeperator.Location  = new System.Drawing.Point(0, 143);
     this.pnlSeperator.Name      = "pnlSeperator";
     this.pnlSeperator.Size      = new System.Drawing.Size(785, 3);
     this.pnlSeperator.TabIndex  = 3;
     //
     // kpnlContent
     //
     this.kpnlContent.Controls.Add(this.kbtnTry);
     this.kpnlContent.Controls.Add(this.kbtnBrowse);
     this.kpnlContent.Controls.Add(this.ktxtCustomPath);
     this.kpnlContent.Controls.Add(this.klblCustomTheme);
     this.kpnlContent.Controls.Add(this.kcmbPaletteTheme);
     this.kpnlContent.Controls.Add(this.kryptonLabel1);
     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(785, 143);
     this.kpnlContent.TabIndex = 4;
     //
     // kbtnTry
     //
     this.kbtnTry.AutoSize     = true;
     this.kbtnTry.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.kbtnTry.Enabled      = false;
     this.kbtnTry.Location     = new System.Drawing.Point(733, 87);
     this.kbtnTry.Name         = "kbtnTry";
     this.kbtnTry.Size         = new System.Drawing.Size(34, 30);
     this.kbtnTry.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnTry.TabIndex    = 5;
     this.kbtnTry.Values.Text = "T&ry";
     this.kbtnTry.Click      += new System.EventHandler(this.kbtnTry_Click);
     //
     // kbtnBrowse
     //
     this.kbtnBrowse.AutoSize     = true;
     this.kbtnBrowse.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.kbtnBrowse.Enabled      = false;
     this.kbtnBrowse.Location     = new System.Drawing.Point(744, 51);
     this.kbtnBrowse.Name         = "kbtnBrowse";
     this.kbtnBrowse.Size         = new System.Drawing.Size(23, 30);
     this.kbtnBrowse.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnBrowse.TabIndex    = 4;
     this.kbtnBrowse.Values.Text = ".&..";
     this.kbtnBrowse.Click      += new System.EventHandler(this.kbtnBrowse_Click);
     //
     // ktxtCustomPath
     //
     this.ktxtCustomPath.Enabled  = false;
     this.ktxtCustomPath.Location = new System.Drawing.Point(248, 52);
     this.ktxtCustomPath.Name     = "ktxtCustomPath";
     this.ktxtCustomPath.Size     = new System.Drawing.Size(490, 29);
     this.ktxtCustomPath.StateCommon.Content.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ktxtCustomPath.StateCommon.Content.TextH = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Inherit;
     this.ktxtCustomPath.TabIndex     = 3;
     this.ktxtCustomPath.TextChanged += new System.EventHandler(this.ktxtCustomPath_TextChanged);
     //
     // klblCustomTheme
     //
     this.klblCustomTheme.Enabled  = false;
     this.klblCustomTheme.Location = new System.Drawing.Point(38, 55);
     this.klblCustomTheme.Name     = "klblCustomTheme";
     this.klblCustomTheme.Size     = new System.Drawing.Size(204, 26);
     this.klblCustomTheme.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.klblCustomTheme.TabIndex    = 2;
     this.klblCustomTheme.Values.Text = "Custom Theme File Path:";
     //
     // kcmbPaletteTheme
     //
     this.kcmbPaletteTheme.DropDownWidth  = 216;
     this.kcmbPaletteTheme.IntegralHeight = false;
     this.kcmbPaletteTheme.Location       = new System.Drawing.Point(147, 12);
     this.kcmbPaletteTheme.Name           = "kcmbPaletteTheme";
     this.kcmbPaletteTheme.Size           = new System.Drawing.Size(216, 27);
     this.kcmbPaletteTheme.StateCommon.ComboBox.Content.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kcmbPaletteTheme.StateCommon.ComboBox.Content.TextH = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Near;
     this.kcmbPaletteTheme.TabIndex     = 1;
     this.kcmbPaletteTheme.TextChanged += new System.EventHandler(this.kcmbPaletteTheme_TextChanged);
     //
     // kryptonLabel1
     //
     this.kryptonLabel1.Location = new System.Drawing.Point(12, 12);
     this.kryptonLabel1.Name     = "kryptonLabel1";
     this.kryptonLabel1.Size     = new System.Drawing.Size(128, 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    = 0;
     this.kryptonLabel1.Values.Text = "Palette Theme:";
     //
     // palette
     //
     this.palette.CustomisedKryptonPaletteFilePath = null;
     //
     // ThemeSelector
     //
     this.ClientSize = new System.Drawing.Size(785, 200);
     this.Controls.Add(this.kpnlContent);
     this.Controls.Add(this.pnlSeperator);
     this.Controls.Add(this.kpnlButtons);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.Icon            = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "ThemeSelector";
     this.Text            = "Palette Theme Selector";
     this.FormClosing    += new System.Windows.Forms.FormClosingEventHandler(this.ThemeSelector_FormClosing);
     this.Load           += new System.EventHandler(this.ThemeSelector_Load);
     ((System.ComponentModel.ISupportInitialize)(this.kpnlButtons)).EndInit();
     this.kpnlButtons.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kpnlContent)).EndInit();
     this.kpnlContent.ResumeLayout(false);
     this.kpnlContent.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kcmbPaletteTheme)).EndInit();
     this.ResumeLayout(false);
 }
Exemplo n.º 28
0
 private void InitializeComponent()
 {
     this._panelMessage    = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this._textBoxResponse = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this._labelPrompt     = new ComponentFactory.Krypton.Toolkit.KryptonWrapLabel();
     this._buttonCancel    = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this._buttonOK        = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     ((System.ComponentModel.ISupportInitialize)(this._panelMessage)).BeginInit();
     this._panelMessage.SuspendLayout();
     this.SuspendLayout();
     //
     // _panelMessage
     //
     this._panelMessage.Controls.Add(this._textBoxResponse);
     this._panelMessage.Controls.Add(this._labelPrompt);
     this._panelMessage.Controls.Add(this._buttonCancel);
     this._panelMessage.Controls.Add(this._buttonOK);
     this._panelMessage.Dock     = System.Windows.Forms.DockStyle.Fill;
     this._panelMessage.Location = new System.Drawing.Point(0, 0);
     this._panelMessage.Name     = "_panelMessage";
     this._panelMessage.Size     = new System.Drawing.Size(357, 118);
     this._panelMessage.TabIndex = 0;
     //
     // _textBoxResponse
     //
     this._textBoxResponse.Location = new System.Drawing.Point(12, 86);
     this._textBoxResponse.Name     = "_textBoxResponse";
     this._textBoxResponse.Size     = new System.Drawing.Size(333, 20);
     this._textBoxResponse.TabIndex = 0;
     //
     // _labelPrompt
     //
     this._labelPrompt.AutoSize   = false;
     this._labelPrompt.Font       = new System.Drawing.Font("Segoe UI", 9F);
     this._labelPrompt.ForeColor  = System.Drawing.Color.FromArgb(((int)(((byte)(30)))), ((int)(((byte)(57)))), ((int)(((byte)(91)))));
     this._labelPrompt.LabelStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.NormalPanel;
     this._labelPrompt.Location   = new System.Drawing.Point(12, 12);
     this._labelPrompt.Margin     = new System.Windows.Forms.Padding(0);
     this._labelPrompt.Name       = "_labelPrompt";
     this._labelPrompt.Size       = new System.Drawing.Size(78, 15);
     this._labelPrompt.Text       = "Prompt";
     //
     // _buttonCancel
     //
     this._buttonCancel.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this._buttonCancel.AutoSize     = true;
     this._buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this._buttonCancel.Location     = new System.Drawing.Point(295, 43);
     this._buttonCancel.Margin       = new System.Windows.Forms.Padding(0);
     this._buttonCancel.MinimumSize  = new System.Drawing.Size(50, 26);
     this._buttonCancel.Name         = "_buttonCancel";
     this._buttonCancel.Size         = new System.Drawing.Size(50, 26);
     this._buttonCancel.TabIndex     = 2;
     this._buttonCancel.Values.Text  = "Cancel";
     this._buttonCancel.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.button_keyDown);
     //
     // _buttonOK
     //
     this._buttonOK.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this._buttonOK.AutoSize     = true;
     this._buttonOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this._buttonOK.Location     = new System.Drawing.Point(295, 12);
     this._buttonOK.Margin       = new System.Windows.Forms.Padding(0);
     this._buttonOK.MinimumSize  = new System.Drawing.Size(50, 26);
     this._buttonOK.Name         = "_buttonOK";
     this._buttonOK.Size         = new System.Drawing.Size(50, 26);
     this._buttonOK.TabIndex     = 1;
     this._buttonOK.Values.Text  = "OK";
     this._buttonOK.KeyDown     += new System.Windows.Forms.KeyEventHandler(this.button_keyDown);
     //
     // KryptonInputBox
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize          = new System.Drawing.Size(357, 118);
     this.Controls.Add(this._panelMessage);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "KryptonInputBox";
     this.ShowIcon        = false;
     this.ShowInTaskbar   = false;
     this.SizeGripStyle   = System.Windows.Forms.SizeGripStyle.Hide;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterParent;
     ((System.ComponentModel.ISupportInitialize)(this._panelMessage)).EndInit();
     this._panelMessage.ResumeLayout(false);
     this._panelMessage.PerformLayout();
     this.ResumeLayout(false);
 }
Exemplo n.º 29
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ColourMixerAdvanced));
     this.kryptonPanel1     = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kbtnAdvanced      = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kbtnWriteToFile   = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kbtnGenerateARGB  = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kbtnGenerate      = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kbtnOk            = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kryptonPanel2     = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.klblRedValue      = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.klblGreenValue    = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.klblBlueValue     = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.klblAlphaValue    = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kryptonLabel6     = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.ktxtHexValue      = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this.klblHexValue      = 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.kryptonLabel7     = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.cbxLightestColour = new ExtendedControls.ExtendedToolkit.Controls.CircularPictureBox();
     this.cbxLightColour    = new ExtendedControls.ExtendedToolkit.Controls.CircularPictureBox();
     this.cbxMediumColour   = new ExtendedControls.ExtendedToolkit.Controls.CircularPictureBox();
     this.cbxDarkColour     = new ExtendedControls.ExtendedToolkit.Controls.CircularPictureBox();
     this.cbxBaseColour     = new ExtendedControls.ExtendedToolkit.Controls.CircularPictureBox();
     this.kryptonLabel5     = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kryptonLabel4     = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kryptonLabel3     = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kryptonLabel2     = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kryptonLabel1     = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.cwSelectedColour  = new ExtendedControls.ExtendedToolkit.Controls.Colours.Controls.ColourWheel();
     this.panel1            = new System.Windows.Forms.Panel();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).BeginInit();
     this.kryptonPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cbxLightestColour)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxLightColour)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxMediumColour)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxDarkColour)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxBaseColour)).BeginInit();
     this.SuspendLayout();
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.kbtnAdvanced);
     this.kryptonPanel1.Controls.Add(this.kbtnWriteToFile);
     this.kryptonPanel1.Controls.Add(this.kbtnGenerateARGB);
     this.kryptonPanel1.Controls.Add(this.kbtnGenerate);
     this.kryptonPanel1.Controls.Add(this.kbtnOk);
     this.kryptonPanel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.kryptonPanel1.Location = new System.Drawing.Point(0, 639);
     this.kryptonPanel1.Name     = "kryptonPanel1";
     this.kryptonPanel1.Size     = new System.Drawing.Size(851, 65);
     this.kryptonPanel1.TabIndex = 0;
     //
     // kbtnAdvanced
     //
     this.kbtnAdvanced.AutoSize     = true;
     this.kbtnAdvanced.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.kbtnAdvanced.Location     = new System.Drawing.Point(381, 15);
     this.kbtnAdvanced.Name         = "kbtnAdvanced";
     this.kbtnAdvanced.Size         = new System.Drawing.Size(84, 30);
     this.kbtnAdvanced.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnAdvanced.TabIndex    = 64;
     this.kbtnAdvanced.Values.Text = "&Advanced";
     this.kbtnAdvanced.Click      += new System.EventHandler(this.KbtnAdvanced_Click);
     //
     // kbtnWriteToFile
     //
     this.kbtnWriteToFile.AutoSize     = true;
     this.kbtnWriteToFile.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.kbtnWriteToFile.Enabled      = false;
     this.kbtnWriteToFile.Location     = new System.Drawing.Point(215, 15);
     this.kbtnWriteToFile.Name         = "kbtnWriteToFile";
     this.kbtnWriteToFile.Size         = new System.Drawing.Size(160, 30);
     this.kbtnWriteToFile.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnWriteToFile.TabIndex    = 63;
     this.kbtnWriteToFile.Values.Text = "Write &Colours to File";
     this.kbtnWriteToFile.Click      += new System.EventHandler(this.KbtnWriteToFile_Click);
     //
     // kbtnGenerateARGB
     //
     this.kbtnGenerateARGB.AutoSize     = true;
     this.kbtnGenerateARGB.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.kbtnGenerateARGB.Location     = new System.Drawing.Point(215, 15);
     this.kbtnGenerateARGB.Name         = "kbtnGenerateARGB";
     this.kbtnGenerateARGB.Size         = new System.Drawing.Size(242, 30);
     this.kbtnGenerateARGB.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnGenerateARGB.TabIndex    = 62;
     this.kbtnGenerateARGB.Values.Text = "Gener&ate Random ARGB Colour";
     this.kbtnGenerateARGB.Visible     = false;
     this.kbtnGenerateARGB.Click      += new System.EventHandler(this.KbtnGenerateARGB_Click);
     //
     // kbtnGenerate
     //
     this.kbtnGenerate.AutoSize     = true;
     this.kbtnGenerate.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.kbtnGenerate.Location     = new System.Drawing.Point(12, 15);
     this.kbtnGenerate.Name         = "kbtnGenerate";
     this.kbtnGenerate.Size         = new System.Drawing.Size(197, 30);
     this.kbtnGenerate.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnGenerate.TabIndex    = 61;
     this.kbtnGenerate.Values.Text = "Gener&ate Random Colour";
     this.kbtnGenerate.Click      += new System.EventHandler(this.KbtnGenerate_Click);
     //
     // kbtnOk
     //
     this.kbtnOk.AutoSize     = true;
     this.kbtnOk.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.kbtnOk.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.kbtnOk.Location     = new System.Drawing.Point(807, 15);
     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    = 60;
     this.kbtnOk.Values.Text = "O&k";
     this.kbtnOk.Click      += new System.EventHandler(this.KbtnOk_Click);
     //
     // kryptonPanel2
     //
     this.kryptonPanel2.Controls.Add(this.klblRedValue);
     this.kryptonPanel2.Controls.Add(this.klblGreenValue);
     this.kryptonPanel2.Controls.Add(this.klblBlueValue);
     this.kryptonPanel2.Controls.Add(this.klblAlphaValue);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel6);
     this.kryptonPanel2.Controls.Add(this.ktxtHexValue);
     this.kryptonPanel2.Controls.Add(this.klblHexValue);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel10);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel9);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel8);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel7);
     this.kryptonPanel2.Controls.Add(this.cbxLightestColour);
     this.kryptonPanel2.Controls.Add(this.cbxLightColour);
     this.kryptonPanel2.Controls.Add(this.cbxMediumColour);
     this.kryptonPanel2.Controls.Add(this.cbxDarkColour);
     this.kryptonPanel2.Controls.Add(this.cbxBaseColour);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel5);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel4);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel3);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel2);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel1);
     this.kryptonPanel2.Controls.Add(this.cwSelectedColour);
     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(851, 639);
     this.kryptonPanel2.TabIndex = 1;
     //
     // klblRedValue
     //
     this.klblRedValue.Location = new System.Drawing.Point(100, 456);
     this.klblRedValue.Name     = "klblRedValue";
     this.klblRedValue.Size     = new System.Drawing.Size(42, 33);
     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.LongText.TextH   = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Center;
     this.klblRedValue.StateCommon.LongText.TextV   = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Center;
     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.StateCommon.ShortText.TextH  = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Center;
     this.klblRedValue.StateCommon.ShortText.TextV  = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Center;
     this.klblRedValue.TabIndex    = 53;
     this.klblRedValue.Values.Text = "{0}";
     //
     // klblGreenValue
     //
     this.klblGreenValue.Location = new System.Drawing.Point(100, 518);
     this.klblGreenValue.Name     = "klblGreenValue";
     this.klblGreenValue.Size     = new System.Drawing.Size(42, 33);
     this.klblGreenValue.StateCommon.LongText.Color1  = System.Drawing.Color.Green;
     this.klblGreenValue.StateCommon.LongText.Color2  = System.Drawing.Color.Green;
     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.LongText.TextH   = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Center;
     this.klblGreenValue.StateCommon.LongText.TextV   = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Center;
     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.StateCommon.ShortText.TextH  = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Center;
     this.klblGreenValue.StateCommon.ShortText.TextV  = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Center;
     this.klblGreenValue.TabIndex    = 52;
     this.klblGreenValue.Values.Text = "{0}";
     //
     // klblBlueValue
     //
     this.klblBlueValue.Location = new System.Drawing.Point(100, 580);
     this.klblBlueValue.Name     = "klblBlueValue";
     this.klblBlueValue.Size     = new System.Drawing.Size(42, 33);
     this.klblBlueValue.StateCommon.LongText.Color1  = System.Drawing.Color.Blue;
     this.klblBlueValue.StateCommon.LongText.Color2  = System.Drawing.Color.Blue;
     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.LongText.TextH   = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Center;
     this.klblBlueValue.StateCommon.LongText.TextV   = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Center;
     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.StateCommon.ShortText.TextH  = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Center;
     this.klblBlueValue.StateCommon.ShortText.TextV  = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Center;
     this.klblBlueValue.TabIndex    = 51;
     this.klblBlueValue.Values.Text = "{0}";
     //
     // klblAlphaValue
     //
     this.klblAlphaValue.Location = new System.Drawing.Point(100, 387);
     this.klblAlphaValue.Name     = "klblAlphaValue";
     this.klblAlphaValue.Size     = new System.Drawing.Size(42, 33);
     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.LongText.TextH = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Center;
     this.klblAlphaValue.StateCommon.LongText.TextV = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Center;
     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    = 50;
     this.klblAlphaValue.Values.Text = "{0}";
     //
     // kryptonLabel6
     //
     this.kryptonLabel6.Location = new System.Drawing.Point(649, 589);
     this.kryptonLabel6.Name     = "kryptonLabel6";
     this.kryptonLabel6.Size     = new System.Drawing.Size(26, 33);
     this.kryptonLabel6.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel6.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel6.TabIndex    = 49;
     this.kryptonLabel6.Values.Text = "#";
     //
     // ktxtHexValue
     //
     this.ktxtHexValue.Hint      = "FFFFFF";
     this.ktxtHexValue.Location  = new System.Drawing.Point(681, 593);
     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     = 48;
     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(583, 589);
     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    = 47;
     this.klblHexValue.Values.Text = "Hex:";
     //
     // kryptonLabel10
     //
     this.kryptonLabel10.Location = new System.Drawing.Point(12, 456);
     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    = 20;
     this.kryptonLabel10.Values.Text = "Red:";
     //
     // kryptonLabel9
     //
     this.kryptonLabel9.Location = new System.Drawing.Point(12, 518);
     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    = 19;
     this.kryptonLabel9.Values.Text = "Green:";
     //
     // kryptonLabel8
     //
     this.kryptonLabel8.Location = new System.Drawing.Point(12, 580);
     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    = 18;
     this.kryptonLabel8.Values.Text = "Blue:";
     //
     // kryptonLabel7
     //
     this.kryptonLabel7.Location = new System.Drawing.Point(546, 272);
     this.kryptonLabel7.Name     = "kryptonLabel7";
     this.kryptonLabel7.Size     = new System.Drawing.Size(178, 33);
     this.kryptonLabel7.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel7.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel7.TabIndex    = 17;
     this.kryptonLabel7.Values.Text = "Medium Colour:";
     //
     // cbxLightestColour
     //
     this.cbxLightestColour.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cbxLightestColour.BackColor   = System.Drawing.Color.White;
     this.cbxLightestColour.Location    = new System.Drawing.Point(744, 477);
     this.cbxLightestColour.Name        = "cbxLightestColour";
     this.cbxLightestColour.Size        = new System.Drawing.Size(95, 95);
     this.cbxLightestColour.TabIndex    = 15;
     this.cbxLightestColour.TabStop     = false;
     this.cbxLightestColour.MouseEnter += new System.EventHandler(this.CbxLightestColour_MouseEnter);
     //
     // cbxLightColour
     //
     this.cbxLightColour.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cbxLightColour.BackColor   = System.Drawing.Color.White;
     this.cbxLightColour.Location    = new System.Drawing.Point(744, 361);
     this.cbxLightColour.Name        = "cbxLightColour";
     this.cbxLightColour.Size        = new System.Drawing.Size(95, 95);
     this.cbxLightColour.TabIndex    = 14;
     this.cbxLightColour.TabStop     = false;
     this.cbxLightColour.MouseEnter += new System.EventHandler(this.CbxLightColour_MouseEnter);
     //
     // cbxMediumColour
     //
     this.cbxMediumColour.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cbxMediumColour.BackColor   = System.Drawing.Color.White;
     this.cbxMediumColour.Location    = new System.Drawing.Point(744, 245);
     this.cbxMediumColour.Name        = "cbxMediumColour";
     this.cbxMediumColour.Size        = new System.Drawing.Size(95, 95);
     this.cbxMediumColour.TabIndex    = 13;
     this.cbxMediumColour.TabStop     = false;
     this.cbxMediumColour.MouseEnter += new System.EventHandler(this.CbxMediumColour_MouseEnter);
     //
     // cbxDarkColour
     //
     this.cbxDarkColour.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cbxDarkColour.BackColor   = System.Drawing.Color.White;
     this.cbxDarkColour.Location    = new System.Drawing.Point(744, 129);
     this.cbxDarkColour.Name        = "cbxDarkColour";
     this.cbxDarkColour.Size        = new System.Drawing.Size(95, 95);
     this.cbxDarkColour.TabIndex    = 12;
     this.cbxDarkColour.TabStop     = false;
     this.cbxDarkColour.MouseEnter += new System.EventHandler(this.CbxDarkColour_MouseEnter);
     //
     // cbxBaseColour
     //
     this.cbxBaseColour.Anchor      = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.cbxBaseColour.BackColor   = System.Drawing.Color.White;
     this.cbxBaseColour.Location    = new System.Drawing.Point(744, 13);
     this.cbxBaseColour.Name        = "cbxBaseColour";
     this.cbxBaseColour.Size        = new System.Drawing.Size(95, 95);
     this.cbxBaseColour.TabIndex    = 11;
     this.cbxBaseColour.TabStop     = false;
     this.cbxBaseColour.MouseEnter += new System.EventHandler(this.CbxBaseColour_MouseEnter);
     //
     // kryptonLabel5
     //
     this.kryptonLabel5.Location = new System.Drawing.Point(546, 508);
     this.kryptonLabel5.Name     = "kryptonLabel5";
     this.kryptonLabel5.Size     = new System.Drawing.Size(175, 33);
     this.kryptonLabel5.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel5.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel5.TabIndex    = 9;
     this.kryptonLabel5.Values.Text = "Lightest Colour:";
     //
     // kryptonLabel4
     //
     this.kryptonLabel4.Location = new System.Drawing.Point(546, 390);
     this.kryptonLabel4.Name     = "kryptonLabel4";
     this.kryptonLabel4.Size     = new System.Drawing.Size(145, 33);
     this.kryptonLabel4.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel4.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel4.TabIndex    = 8;
     this.kryptonLabel4.Values.Text = "Light Colour:";
     //
     // kryptonLabel3
     //
     this.kryptonLabel3.Location = new System.Drawing.Point(546, 36);
     this.kryptonLabel3.Name     = "kryptonLabel3";
     this.kryptonLabel3.Size     = new System.Drawing.Size(140, 33);
     this.kryptonLabel3.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel3.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel3.TabIndex    = 7;
     this.kryptonLabel3.Values.Text = "Base Colour:";
     //
     // kryptonLabel2
     //
     this.kryptonLabel2.Location = new System.Drawing.Point(546, 154);
     this.kryptonLabel2.Name     = "kryptonLabel2";
     this.kryptonLabel2.Size     = new System.Drawing.Size(141, 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    = 6;
     this.kryptonLabel2.Values.Text = "Dark Colour:";
     //
     // kryptonLabel1
     //
     this.kryptonLabel1.Location = new System.Drawing.Point(12, 387);
     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    = 4;
     this.kryptonLabel1.Values.Text = "Alpha:";
     //
     // cwSelectedColour
     //
     this.cwSelectedColour.BackColor      = System.Drawing.Color.Transparent;
     this.cwSelectedColour.Location       = new System.Drawing.Point(12, 12);
     this.cwSelectedColour.Name           = "cwSelectedColour";
     this.cwSelectedColour.Size           = new System.Drawing.Size(352, 362);
     this.cwSelectedColour.TabIndex       = 3;
     this.cwSelectedColour.ColourChanged += new System.EventHandler(this.CwSelectedColour_ColourChanged);
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.SystemColors.ControlDarkDark;
     this.panel1.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Location  = new System.Drawing.Point(0, 637);
     this.panel1.Name      = "panel1";
     this.panel1.Size      = new System.Drawing.Size(851, 2);
     this.panel1.TabIndex  = 2;
     //
     // ColourMixerAdvanced
     //
     this.ClientSize = new System.Drawing.Size(851, 704);
     this.Controls.Add(this.panel1);
     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.Name            = "ColourMixerAdvanced";
     this.Text            = "Krypton Palette Colour Mixer";
     this.Load           += new System.EventHandler(this.ColourMixerAdvanced_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.cbxLightestColour)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxLightColour)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxMediumColour)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxDarkColour)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxBaseColour)).EndInit();
     this.ResumeLayout(false);
 }
Exemplo n.º 30
0
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ColourContrastTool));
     this.kryptonPanel1               = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kbtnExport                  = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kbtnImportValues            = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kbtnSaveValues              = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kbtnOk                      = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kchkUpdateValues            = new ComponentFactory.Krypton.Toolkit.KryptonCheckBox();
     this.kryptonPanel2               = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kcbCustomColourTwoSelector  = new ComponentFactory.Krypton.Toolkit.KryptonComboBox();
     this.kcbCustomColourOneSelector  = new ComponentFactory.Krypton.Toolkit.KryptonComboBox();
     this.cbxContrastColourTwoPreview = new ExtendedControls.ExtendedToolkit.Controls.CircularPictureBox();
     this.kryptonLabel3               = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.cbxContrastColourOnePreview = new ExtendedControls.ExtendedToolkit.Controls.CircularPictureBox();
     this.kryptonLabel2               = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kryptonLabel6               = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.knudBlueChannelValue        = new ComponentFactory.Krypton.Toolkit.KryptonNumericUpDown();
     this.ktxtHexValue                = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this.cwChosenColour              = new ExtendedControls.ExtendedToolkit.Controls.Colours.Controls.ColourWheelExtended();
     this.klblHexValue                = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.knudGreenChannelValue       = new ComponentFactory.Krypton.Toolkit.KryptonNumericUpDown();
     this.kryptonLabel1               = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.knudRedChannelValue         = new ComponentFactory.Krypton.Toolkit.KryptonNumericUpDown();
     this.knumAlpaValue               = new ComponentFactory.Krypton.Toolkit.KryptonNumericUpDown();
     this.kryptonLabel10              = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kryptonLabel8               = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kryptonLabel9               = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.panel1                      = new System.Windows.Forms.Panel();
     this.kbtnGenerate                = new ComponentFactory.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.kcbCustomColourTwoSelector)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kcbCustomColourOneSelector)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxContrastColourTwoPreview)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxContrastColourOnePreview)).BeginInit();
     this.SuspendLayout();
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.kbtnGenerate);
     this.kryptonPanel1.Controls.Add(this.kbtnExport);
     this.kryptonPanel1.Controls.Add(this.kbtnImportValues);
     this.kryptonPanel1.Controls.Add(this.kbtnSaveValues);
     this.kryptonPanel1.Controls.Add(this.kbtnOk);
     this.kryptonPanel1.Controls.Add(this.kchkUpdateValues);
     this.kryptonPanel1.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.kryptonPanel1.Location = new System.Drawing.Point(0, 755);
     this.kryptonPanel1.Name     = "kryptonPanel1";
     this.kryptonPanel1.Size     = new System.Drawing.Size(988, 55);
     this.kryptonPanel1.TabIndex = 0;
     //
     // kbtnExport
     //
     this.kbtnExport.AutoSize     = true;
     this.kbtnExport.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.kbtnExport.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.kbtnExport.Enabled      = false;
     this.kbtnExport.Location     = new System.Drawing.Point(605, 13);
     this.kbtnExport.Name         = "kbtnExport";
     this.kbtnExport.Size         = new System.Drawing.Size(110, 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    = 64;
     this.kbtnExport.Values.Text = "E&xport Values";
     //
     // kbtnImportValues
     //
     this.kbtnImportValues.AutoSize     = true;
     this.kbtnImportValues.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.kbtnImportValues.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.kbtnImportValues.Location     = new System.Drawing.Point(721, 13);
     this.kbtnImportValues.Name         = "kbtnImportValues";
     this.kbtnImportValues.Size         = new System.Drawing.Size(113, 30);
     this.kbtnImportValues.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnImportValues.TabIndex    = 63;
     this.kbtnImportValues.Values.Text = "&Import Values";
     //
     // kbtnSaveValues
     //
     this.kbtnSaveValues.AutoSize     = true;
     this.kbtnSaveValues.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.kbtnSaveValues.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.kbtnSaveValues.Location     = new System.Drawing.Point(840, 13);
     this.kbtnSaveValues.Name         = "kbtnSaveValues";
     this.kbtnSaveValues.Size         = new System.Drawing.Size(98, 30);
     this.kbtnSaveValues.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnSaveValues.TabIndex    = 62;
     this.kbtnSaveValues.Values.Text = "&Save Values";
     //
     // kbtnOk
     //
     this.kbtnOk.AutoSize     = true;
     this.kbtnOk.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.kbtnOk.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.kbtnOk.Location     = new System.Drawing.Point(944, 13);
     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    = 61;
     this.kbtnOk.Values.Text = "O&k";
     this.kbtnOk.Click      += new System.EventHandler(this.KbtnOk_Click);
     //
     // kchkUpdateValues
     //
     this.kchkUpdateValues.Location = new System.Drawing.Point(12, 17);
     this.kchkUpdateValues.Name     = "kchkUpdateValues";
     this.kchkUpdateValues.Size     = new System.Drawing.Size(185, 26);
     this.kchkUpdateValues.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kchkUpdateValues.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kchkUpdateValues.TabIndex        = 0;
     this.kchkUpdateValues.Values.Text     = "Always &Update Values";
     this.kchkUpdateValues.CheckedChanged += new System.EventHandler(this.KchkUpdateValues_CheckedChanged);
     //
     // kryptonPanel2
     //
     this.kryptonPanel2.Controls.Add(this.kcbCustomColourTwoSelector);
     this.kryptonPanel2.Controls.Add(this.kcbCustomColourOneSelector);
     this.kryptonPanel2.Controls.Add(this.cbxContrastColourTwoPreview);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel3);
     this.kryptonPanel2.Controls.Add(this.cbxContrastColourOnePreview);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel2);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel6);
     this.kryptonPanel2.Controls.Add(this.knudBlueChannelValue);
     this.kryptonPanel2.Controls.Add(this.ktxtHexValue);
     this.kryptonPanel2.Controls.Add(this.cwChosenColour);
     this.kryptonPanel2.Controls.Add(this.klblHexValue);
     this.kryptonPanel2.Controls.Add(this.knudGreenChannelValue);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel1);
     this.kryptonPanel2.Controls.Add(this.knudRedChannelValue);
     this.kryptonPanel2.Controls.Add(this.knumAlpaValue);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel10);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel8);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel9);
     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(988, 755);
     this.kryptonPanel2.TabIndex = 1;
     //
     // kcbCustomColourTwoSelector
     //
     this.kcbCustomColourTwoSelector.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.kcbCustomColourTwoSelector.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.kcbCustomColourTwoSelector.DropDownWidth = 435;
     this.kcbCustomColourTwoSelector.Location      = new System.Drawing.Point(638, 711);
     this.kcbCustomColourTwoSelector.Name          = "kcbCustomColourTwoSelector";
     this.kcbCustomColourTwoSelector.Size          = new System.Drawing.Size(338, 27);
     this.kcbCustomColourTwoSelector.StateCommon.ComboBox.Content.Font       = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kcbCustomColourTwoSelector.StateCommon.ComboBox.Content.TextH      = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Near;
     this.kcbCustomColourTwoSelector.StateCommon.Item.Content.LongText.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kcbCustomColourTwoSelector.StateCommon.Item.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kcbCustomColourTwoSelector.TabIndex              = 58;
     this.kcbCustomColourTwoSelector.SelectedIndexChanged += new System.EventHandler(this.KcbCustomColourTwoSelector_SelectedIndexChanged);
     //
     // kcbCustomColourOneSelector
     //
     this.kcbCustomColourOneSelector.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.kcbCustomColourOneSelector.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.kcbCustomColourOneSelector.DropDownWidth = 435;
     this.kcbCustomColourOneSelector.Location      = new System.Drawing.Point(638, 333);
     this.kcbCustomColourOneSelector.Name          = "kcbCustomColourOneSelector";
     this.kcbCustomColourOneSelector.Size          = new System.Drawing.Size(338, 27);
     this.kcbCustomColourOneSelector.StateCommon.ComboBox.Content.Font       = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kcbCustomColourOneSelector.StateCommon.ComboBox.Content.TextH      = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Near;
     this.kcbCustomColourOneSelector.StateCommon.Item.Content.LongText.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kcbCustomColourOneSelector.StateCommon.Item.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kcbCustomColourOneSelector.TabIndex              = 57;
     this.kcbCustomColourOneSelector.SelectedIndexChanged += new System.EventHandler(this.KcbCustomColourOneSelector_SelectedIndexChanged);
     //
     // cbxContrastColourTwoPreview
     //
     this.cbxContrastColourTwoPreview.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.cbxContrastColourTwoPreview.BackColor   = System.Drawing.Color.Black;
     this.cbxContrastColourTwoPreview.Location    = new System.Drawing.Point(673, 391);
     this.cbxContrastColourTwoPreview.Name        = "cbxContrastColourTwoPreview";
     this.cbxContrastColourTwoPreview.Size        = new System.Drawing.Size(303, 291);
     this.cbxContrastColourTwoPreview.TabIndex    = 56;
     this.cbxContrastColourTwoPreview.TabStop     = false;
     this.cbxContrastColourTwoPreview.MouseEnter += new System.EventHandler(this.CbxContrastColourTwoPreview_MouseEnter);
     //
     // kryptonLabel3
     //
     this.kryptonLabel3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.kryptonLabel3.Location = new System.Drawing.Point(424, 522);
     this.kryptonLabel3.Name     = "kryptonLabel3";
     this.kryptonLabel3.Size     = new System.Drawing.Size(211, 33);
     this.kryptonLabel3.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel3.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel3.TabIndex    = 55;
     this.kryptonLabel3.Values.Text = "Contrast Colour #2:";
     //
     // cbxContrastColourOnePreview
     //
     this.cbxContrastColourOnePreview.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.cbxContrastColourOnePreview.BackColor   = System.Drawing.Color.Black;
     this.cbxContrastColourOnePreview.Location    = new System.Drawing.Point(673, 12);
     this.cbxContrastColourOnePreview.Name        = "cbxContrastColourOnePreview";
     this.cbxContrastColourOnePreview.Size        = new System.Drawing.Size(303, 291);
     this.cbxContrastColourOnePreview.TabIndex    = 54;
     this.cbxContrastColourOnePreview.TabStop     = false;
     this.cbxContrastColourOnePreview.MouseEnter += new System.EventHandler(this.CbxContrastColourOnePreview_MouseEnter);
     //
     // kryptonLabel2
     //
     this.kryptonLabel2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                       | System.Windows.Forms.AnchorStyles.Right)));
     this.kryptonLabel2.Location = new System.Drawing.Point(424, 143);
     this.kryptonLabel2.Name     = "kryptonLabel2";
     this.kryptonLabel2.Size     = new System.Drawing.Size(211, 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    = 53;
     this.kryptonLabel2.Values.Text = "Contrast Colour #1:";
     //
     // kryptonLabel6
     //
     this.kryptonLabel6.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                       | System.Windows.Forms.AnchorStyles.Left)));
     this.kryptonLabel6.Location = new System.Drawing.Point(78, 713);
     this.kryptonLabel6.Name     = "kryptonLabel6";
     this.kryptonLabel6.Size     = new System.Drawing.Size(26, 33);
     this.kryptonLabel6.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel6.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 15.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel6.TabIndex    = 52;
     this.kryptonLabel6.Values.Text = "#";
     //
     // knudBlueChannelValue
     //
     this.knudBlueChannelValue.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                              | System.Windows.Forms.AnchorStyles.Left)));
     this.knudBlueChannelValue.DecimalPlaces = 99;
     this.knudBlueChannelValue.Location      = new System.Drawing.Point(98, 631);
     this.knudBlueChannelValue.Maximum       = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.knudBlueChannelValue.Name = "knudBlueChannelValue";
     this.knudBlueChannelValue.Size = new System.Drawing.Size(120, 32);
     this.knudBlueChannelValue.StateCommon.Content.Color1 = System.Drawing.Color.Blue;
     this.knudBlueChannelValue.StateCommon.Content.Font   = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.knudBlueChannelValue.StateCommon.Content.TextH  = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Center;
     this.knudBlueChannelValue.TabIndex      = 34;
     this.knudBlueChannelValue.ValueChanged += new System.EventHandler(this.KnudBlueChannelValue_ValueChanged);
     //
     // ktxtHexValue
     //
     this.ktxtHexValue.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                      | System.Windows.Forms.AnchorStyles.Left)));
     this.ktxtHexValue.Hint      = "FFFFFF";
     this.ktxtHexValue.Location  = new System.Drawing.Point(110, 717);
     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     = 51;
     this.ktxtHexValue.TextAlign    = System.Windows.Forms.HorizontalAlignment.Center;
     this.ktxtHexValue.TextChanged += new System.EventHandler(this.KtxtHexValue_TextChanged);
     //
     // cwChosenColour
     //
     this.cwChosenColour.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                        | System.Windows.Forms.AnchorStyles.Left)));
     this.cwChosenColour.BackColor      = System.Drawing.Color.Transparent;
     this.cwChosenColour.Location       = new System.Drawing.Point(12, 12);
     this.cwChosenColour.Name           = "cwChosenColour";
     this.cwChosenColour.Size           = new System.Drawing.Size(368, 373);
     this.cwChosenColour.TabIndex       = 3;
     this.cwChosenColour.ColourChanged += new System.EventHandler(this.CwChosenColour_ColourChanged);
     //
     // klblHexValue
     //
     this.klblHexValue.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                      | System.Windows.Forms.AnchorStyles.Left)));
     this.klblHexValue.Location = new System.Drawing.Point(12, 711);
     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    = 50;
     this.klblHexValue.Values.Text = "Hex:";
     //
     // knudGreenChannelValue
     //
     this.knudGreenChannelValue.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                               | System.Windows.Forms.AnchorStyles.Left)));
     this.knudGreenChannelValue.DecimalPlaces = 99;
     this.knudGreenChannelValue.Location      = new System.Drawing.Point(98, 551);
     this.knudGreenChannelValue.Maximum       = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.knudGreenChannelValue.Name = "knudGreenChannelValue";
     this.knudGreenChannelValue.Size = new System.Drawing.Size(120, 32);
     this.knudGreenChannelValue.StateCommon.Content.Color1 = System.Drawing.Color.Green;
     this.knudGreenChannelValue.StateCommon.Content.Font   = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.knudGreenChannelValue.StateCommon.Content.TextH  = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Center;
     this.knudGreenChannelValue.TabIndex      = 33;
     this.knudGreenChannelValue.ValueChanged += new System.EventHandler(this.KnudGreenChannelValue_ValueChanged);
     //
     // kryptonLabel1
     //
     this.kryptonLabel1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                       | System.Windows.Forms.AnchorStyles.Left)));
     this.kryptonLabel1.Location = new System.Drawing.Point(12, 391);
     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    = 27;
     this.kryptonLabel1.Values.Text = "Alpha:";
     //
     // knudRedChannelValue
     //
     this.knudRedChannelValue.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                             | System.Windows.Forms.AnchorStyles.Left)));
     this.knudRedChannelValue.DecimalPlaces = 99;
     this.knudRedChannelValue.Location      = new System.Drawing.Point(98, 460);
     this.knudRedChannelValue.Maximum       = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.knudRedChannelValue.Name = "knudRedChannelValue";
     this.knudRedChannelValue.Size = new System.Drawing.Size(120, 32);
     this.knudRedChannelValue.StateCommon.Content.Color1 = System.Drawing.Color.Red;
     this.knudRedChannelValue.StateCommon.Content.Font   = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.knudRedChannelValue.StateCommon.Content.TextH  = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Center;
     this.knudRedChannelValue.TabIndex      = 32;
     this.knudRedChannelValue.ValueChanged += new System.EventHandler(this.KnudRedChannelValue_ValueChanged);
     //
     // knumAlpaValue
     //
     this.knumAlpaValue.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                       | System.Windows.Forms.AnchorStyles.Left)));
     this.knumAlpaValue.DecimalPlaces = 99;
     this.knumAlpaValue.Location      = new System.Drawing.Point(97, 391);
     this.knumAlpaValue.Maximum       = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.knumAlpaValue.Name = "knumAlpaValue";
     this.knumAlpaValue.Size = new System.Drawing.Size(120, 32);
     this.knumAlpaValue.StateCommon.Content.Font  = new System.Drawing.Font("Segoe UI", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.knumAlpaValue.StateCommon.Content.TextH = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Center;
     this.knumAlpaValue.TabIndex      = 28;
     this.knumAlpaValue.ValueChanged += new System.EventHandler(this.KnumAlpaValue_ValueChanged);
     //
     // kryptonLabel10
     //
     this.kryptonLabel10.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                        | System.Windows.Forms.AnchorStyles.Left)));
     this.kryptonLabel10.Location = new System.Drawing.Point(12, 460);
     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    = 31;
     this.kryptonLabel10.Values.Text = "Red:";
     //
     // kryptonLabel8
     //
     this.kryptonLabel8.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                       | System.Windows.Forms.AnchorStyles.Left)));
     this.kryptonLabel8.Location = new System.Drawing.Point(12, 631);
     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    = 29;
     this.kryptonLabel8.Values.Text = "Blue:";
     //
     // kryptonLabel9
     //
     this.kryptonLabel9.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                                                                       | System.Windows.Forms.AnchorStyles.Left)));
     this.kryptonLabel9.Location = new System.Drawing.Point(12, 551);
     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    = 30;
     this.kryptonLabel9.Values.Text = "Green:";
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.SystemColors.ControlDarkDark;
     this.panel1.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Location  = new System.Drawing.Point(0, 752);
     this.panel1.Name      = "panel1";
     this.panel1.Size      = new System.Drawing.Size(988, 3);
     this.panel1.TabIndex  = 2;
     //
     // kbtnGenerate
     //
     this.kbtnGenerate.AutoSize     = true;
     this.kbtnGenerate.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.kbtnGenerate.Location     = new System.Drawing.Point(402, 13);
     this.kbtnGenerate.Name         = "kbtnGenerate";
     this.kbtnGenerate.Size         = new System.Drawing.Size(197, 30);
     this.kbtnGenerate.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnGenerate.TabIndex    = 65;
     this.kbtnGenerate.Values.Text = "Gener&ate Random Colour";
     this.kbtnGenerate.Click      += new System.EventHandler(this.KbtnGenerate_Click);
     //
     // ColourContrastTool
     //
     this.ClientSize = new System.Drawing.Size(988, 810);
     this.Controls.Add(this.panel1);
     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.Name            = "ColourContrastTool";
     this.Text            = "Krypton Colour Contrast Tool";
     this.Load           += new System.EventHandler(this.ColourContrastTool_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.kcbCustomColourTwoSelector)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.kcbCustomColourOneSelector)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxContrastColourTwoPreview)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.cbxContrastColourOnePreview)).EndInit();
     this.ResumeLayout(false);
 }
Exemplo n.º 31
0
 public KryptonTextBoxProxy(KryptonTextBox textBox)
 {
     _textBox = textBox;
 }
        private void UpdateParent(Control parentControl)
        {
            // Is there a change in the textbox or a change in
            // the parent control that is hosting the control...
            if ((parentControl != LastParentControl) ||
                (LastTextBox != _ribbonTextBox.TextBox))
            {
                // We only modify the parent and visible state if processing for correct container
                if ((_ribbonTextBox.RibbonContainer.RibbonGroup.ShowingAsPopup && (parentControl is VisualPopupGroup)) ||
                    (!_ribbonTextBox.RibbonContainer.RibbonGroup.ShowingAsPopup && !(parentControl is VisualPopupGroup)))
                {
                    // If we have added the custrom control to a parent before
                    if ((LastTextBox != null) && (LastParentControl != null))
                    {
                        // If that control is still a child of the old parent
                        if (LastParentControl.Controls.Contains(LastTextBox))
                        {
                            // Check for a collection that is based on the read only class
                            LastParentControl.Controls.Remove(LastTextBox);
                        }
                    }

                    // Remember the current control and new parent
                    LastTextBox = _ribbonTextBox.TextBox;
                    LastParentControl = parentControl;

                    // If we have a new textbox and parent
                    if ((LastTextBox != null) && (LastParentControl != null))
                    {
                        // Ensure the control is not in the display area when first added
                        LastTextBox.Location = new Point(-LastTextBox.Width, -LastTextBox.Height);

                        // Check for the correct visible state of the textbox
                        UpdateVisible(LastTextBox);

                        // Check for a collection that is based on the read only class
                        LastParentControl.Controls.Add(LastTextBox);
                    }
                }
            }
        }
Exemplo n.º 33
0
 public KryptonTextBoxProxy(KryptonTextBox textBox)
 {
     _textBox = textBox;
 }
Exemplo n.º 34
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.btnCancel         = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.btnOK             = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.Label3            = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.Label7            = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.pnlColour         = new System.Windows.Forms.Panel();
     this.Label6            = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.Label1            = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.Label5            = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.pnlSelectedColour = new System.Windows.Forms.Panel();
     this.pnlBrightness     = new System.Windows.Forms.Panel();
     this.Label4            = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.Label2            = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kpbg           = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.knumHue        = new ComponentFactory.Krypton.Toolkit.KryptonNumericUpDown();
     this.knumSaturation = new ComponentFactory.Krypton.Toolkit.KryptonNumericUpDown();
     this.knumBrightness = new ComponentFactory.Krypton.Toolkit.KryptonNumericUpDown();
     this.knumBlue       = new ComponentFactory.Krypton.Toolkit.KryptonNumericUpDown();
     this.knumGreen      = new ComponentFactory.Krypton.Toolkit.KryptonNumericUpDown();
     this.knumRed        = new ComponentFactory.Krypton.Toolkit.KryptonNumericUpDown();
     this.ktxtWebColour  = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     ((System.ComponentModel.ISupportInitialize)(this.kpbg)).BeginInit();
     this.kpbg.SuspendLayout();
     this.SuspendLayout();
     //
     // btnCancel
     //
     this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.btnCancel.Font         = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnCancel.Location     = new System.Drawing.Point(192, 320);
     this.btnCancel.Name         = "btnCancel";
     this.btnCancel.Size         = new System.Drawing.Size(64, 24);
     this.btnCancel.TabIndex     = 55;
     this.btnCancel.Values.Text  = "Cancel";
     //
     // btnOK
     //
     this.btnOK.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.btnOK.Font         = new System.Drawing.Font("Microsoft Sans Serif", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.btnOK.Location     = new System.Drawing.Point(120, 320);
     this.btnOK.Name         = "btnOK";
     this.btnOK.Size         = new System.Drawing.Size(64, 24);
     this.btnOK.TabIndex     = 54;
     this.btnOK.Values.Text  = "OK";
     //
     // Label3
     //
     this.Label3.Font        = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label3.Location    = new System.Drawing.Point(152, 280);
     this.Label3.Name        = "Label3";
     this.Label3.Size        = new System.Drawing.Size(37, 20);
     this.Label3.TabIndex    = 45;
     this.Label3.Values.Text = "Blue:";
     //
     // Label7
     //
     this.Label7.Font        = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label7.Location    = new System.Drawing.Point(16, 280);
     this.Label7.Name        = "Label7";
     this.Label7.Size        = new System.Drawing.Size(70, 20);
     this.Label7.TabIndex    = 50;
     this.Label7.Values.Text = "Brightness:";
     //
     // pnlColour
     //
     this.pnlColour.Location = new System.Drawing.Point(8, 8);
     this.pnlColour.Name     = "pnlColour";
     this.pnlColour.Size     = new System.Drawing.Size(176, 176);
     this.pnlColour.TabIndex = 51;
     this.pnlColour.Visible  = false;
     this.pnlColour.MouseUp += new System.Windows.Forms.MouseEventHandler(this.frmMain_MouseUp);
     //
     // Label6
     //
     this.Label6.Font        = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label6.Location    = new System.Drawing.Point(16, 256);
     this.Label6.Name        = "Label6";
     this.Label6.Size        = new System.Drawing.Size(69, 20);
     this.Label6.TabIndex    = 49;
     this.Label6.Values.Text = "Saturation:";
     //
     // Label1
     //
     this.Label1.Font        = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label1.Location    = new System.Drawing.Point(152, 232);
     this.Label1.Name        = "Label1";
     this.Label1.Size        = new System.Drawing.Size(34, 20);
     this.Label1.TabIndex    = 43;
     this.Label1.Values.Text = "Red:";
     //
     // Label5
     //
     this.Label5.Font        = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label5.Location    = new System.Drawing.Point(16, 232);
     this.Label5.Name        = "Label5";
     this.Label5.Size        = new System.Drawing.Size(35, 20);
     this.Label5.TabIndex    = 48;
     this.Label5.Values.Text = "Hue:";
     //
     // pnlSelectedColour
     //
     this.pnlSelectedColour.Location = new System.Drawing.Point(136, 203);
     this.pnlSelectedColour.Name     = "pnlSelectedColour";
     this.pnlSelectedColour.Size     = new System.Drawing.Size(48, 20);
     this.pnlSelectedColour.TabIndex = 53;
     this.pnlSelectedColour.Visible  = false;
     //
     // pnlBrightness
     //
     this.pnlBrightness.Location = new System.Drawing.Point(208, 8);
     this.pnlBrightness.Name     = "pnlBrightness";
     this.pnlBrightness.Size     = new System.Drawing.Size(16, 176);
     this.pnlBrightness.TabIndex = 52;
     this.pnlBrightness.Visible  = false;
     //
     // Label4
     //
     this.Label4.Font        = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label4.Location    = new System.Drawing.Point(80, 203);
     this.Label4.Name        = "Label4";
     this.Label4.Size        = new System.Drawing.Size(50, 20);
     this.Label4.TabIndex    = 46;
     this.Label4.Values.Text = "Colour:";
     //
     // Label2
     //
     this.Label2.Font        = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Label2.Location    = new System.Drawing.Point(152, 256);
     this.Label2.Name        = "Label2";
     this.Label2.Size        = new System.Drawing.Size(46, 20);
     this.Label2.TabIndex    = 44;
     this.Label2.Values.Text = "Green:";
     //
     // kpbg
     //
     this.kpbg.Controls.Add(this.ktxtWebColour);
     this.kpbg.Controls.Add(this.knumBlue);
     this.kpbg.Controls.Add(this.knumGreen);
     this.kpbg.Controls.Add(this.knumRed);
     this.kpbg.Controls.Add(this.knumBrightness);
     this.kpbg.Controls.Add(this.knumSaturation);
     this.kpbg.Controls.Add(this.knumHue);
     this.kpbg.Controls.Add(this.Label4);
     this.kpbg.Controls.Add(this.Label5);
     this.kpbg.Controls.Add(this.Label1);
     this.kpbg.Controls.Add(this.Label3);
     this.kpbg.Controls.Add(this.Label6);
     this.kpbg.Controls.Add(this.Label2);
     this.kpbg.Controls.Add(this.Label7);
     this.kpbg.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.kpbg.Location = new System.Drawing.Point(0, 0);
     this.kpbg.Name     = "kpbg";
     this.kpbg.Size     = new System.Drawing.Size(264, 349);
     this.kpbg.TabIndex = 57;
     //
     // knumHue
     //
     this.knumHue.Location = new System.Drawing.Point(98, 232);
     this.knumHue.Maximum  = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.knumHue.Name     = "knumHue";
     this.knumHue.Size     = new System.Drawing.Size(48, 22);
     this.knumHue.TabIndex = 51;
     //
     // knumSaturation
     //
     this.knumSaturation.Location = new System.Drawing.Point(98, 256);
     this.knumSaturation.Maximum  = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.knumSaturation.Name     = "knumSaturation";
     this.knumSaturation.Size     = new System.Drawing.Size(48, 22);
     this.knumSaturation.TabIndex = 52;
     //
     // knumBrightness
     //
     this.knumBrightness.Location = new System.Drawing.Point(98, 280);
     this.knumBrightness.Maximum  = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.knumBrightness.Name     = "knumBrightness";
     this.knumBrightness.Size     = new System.Drawing.Size(48, 22);
     this.knumBrightness.TabIndex = 53;
     //
     // knumBlue
     //
     this.knumBlue.Location = new System.Drawing.Point(204, 280);
     this.knumBlue.Maximum  = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.knumBlue.Name = "knumBlue";
     this.knumBlue.Size = new System.Drawing.Size(48, 22);
     this.knumBlue.StateActive.Back.Color1    = System.Drawing.Color.Blue;
     this.knumBlue.StateActive.Content.Color1 = System.Drawing.Color.White;
     this.knumBlue.TabIndex = 56;
     //
     // knumGreen
     //
     this.knumGreen.Location = new System.Drawing.Point(204, 256);
     this.knumGreen.Maximum  = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.knumGreen.Name = "knumGreen";
     this.knumGreen.Size = new System.Drawing.Size(48, 22);
     this.knumGreen.StateCommon.Back.Color1 = System.Drawing.Color.Lime;
     this.knumGreen.TabIndex = 55;
     //
     // knumRed
     //
     this.knumRed.Location = new System.Drawing.Point(204, 232);
     this.knumRed.Maximum  = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.knumRed.Name = "knumRed";
     this.knumRed.Size = new System.Drawing.Size(48, 22);
     this.knumRed.StateCommon.Back.Color1    = System.Drawing.Color.Red;
     this.knumRed.StateCommon.Content.Color1 = System.Drawing.Color.White;
     this.knumRed.TabIndex = 54;
     //
     // ktxtWebColour
     //
     this.ktxtWebColour.Location  = new System.Drawing.Point(190, 200);
     this.ktxtWebColour.MaxLength = 6;
     this.ktxtWebColour.Name      = "ktxtWebColour";
     this.ktxtWebColour.Size      = new System.Drawing.Size(66, 23);
     this.ktxtWebColour.TabIndex  = 57;
     //
     // KryptonColourChooser1
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.BackColor         = System.Drawing.Color.White;
     this.ClientSize        = new System.Drawing.Size(264, 349);
     this.Controls.Add(this.btnCancel);
     this.Controls.Add(this.btnOK);
     this.Controls.Add(this.pnlColour);
     this.Controls.Add(this.pnlSelectedColour);
     this.Controls.Add(this.pnlBrightness);
     this.Controls.Add(this.kpbg);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "KryptonColourChooser1";
     this.Text            = "Select Colour";
     this.Load           += new System.EventHandler(this.ColourChooser1_Load);
     this.Paint          += new System.Windows.Forms.PaintEventHandler(this.ColourChooser1_Paint);
     this.MouseDown      += new System.Windows.Forms.MouseEventHandler(this.HandleMouse);
     this.MouseMove      += new System.Windows.Forms.MouseEventHandler(this.HandleMouse);
     this.MouseUp        += new System.Windows.Forms.MouseEventHandler(this.frmMain_MouseUp);
     ((System.ComponentModel.ISupportInitialize)(this.kpbg)).EndInit();
     this.kpbg.ResumeLayout(false);
     this.kpbg.PerformLayout();
     this.ResumeLayout(false);
 }
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(KryptonFileExplorer));
     this.kryptonPanel1              = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.lvExplorer                 = new System.Windows.Forms.ListView();
     this.colName                    = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colDateModified            = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colType                    = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colSize                    = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.kryptonLabel1              = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kbcFilePath                = new ComponentFactory.Krypton.Toolkit.KryptonBreadCrumb();
     this.panel1                     = new System.Windows.Forms.Panel();
     this.kbtnCancel                 = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kryptonPanel2              = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kbtnAccept                 = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kryptonSplitButton1        = new ExtendedControls.ExtendedToolkit.Controls.KryptonControls.KryptonSplitButton();
     this.kryptonListView1           = new ExtendedControls.ExtendedToolkit.Controls.KryptonControls.KryptonListView();
     this.columnHeader1              = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader2              = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader3              = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader4              = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.kryptonFileSystemTreeView1 = new ExtendedControls.ExtendedToolkit.Controls.KryptonControls.KryptonFileSystemTreeView();
     this.circularPictureBox3        = new ExtendedControls.ExtendedToolkit.Controls.CircularPictureBox();
     this.circularPictureBox2        = new ExtendedControls.ExtendedToolkit.Controls.CircularPictureBox();
     this.circularPictureBox1        = new ExtendedControls.ExtendedToolkit.Controls.CircularPictureBox();
     this.kryptonTextBox1            = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kbcFilePath)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).BeginInit();
     this.kryptonPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.circularPictureBox3)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.circularPictureBox2)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.circularPictureBox1)).BeginInit();
     this.SuspendLayout();
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.kryptonTextBox1);
     this.kryptonPanel1.Controls.Add(this.kryptonListView1);
     this.kryptonPanel1.Controls.Add(this.kryptonFileSystemTreeView1);
     this.kryptonPanel1.Controls.Add(this.lvExplorer);
     this.kryptonPanel1.Controls.Add(this.circularPictureBox3);
     this.kryptonPanel1.Controls.Add(this.circularPictureBox2);
     this.kryptonPanel1.Controls.Add(this.circularPictureBox1);
     this.kryptonPanel1.Controls.Add(this.kryptonLabel1);
     this.kryptonPanel1.Controls.Add(this.kbcFilePath);
     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(1039, 577);
     this.kryptonPanel1.TabIndex = 0;
     //
     // lvExplorer
     //
     this.lvExplorer.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.colName,
         this.colDateModified,
         this.colType,
         this.colSize
     });
     this.lvExplorer.Font          = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lvExplorer.HideSelection = false;
     this.lvExplorer.Location      = new System.Drawing.Point(332, 50);
     this.lvExplorer.Name          = "lvExplorer";
     this.lvExplorer.Size          = new System.Drawing.Size(695, 442);
     this.lvExplorer.TabIndex      = 7;
     this.lvExplorer.UseCompatibleStateImageBehavior = false;
     this.lvExplorer.View = System.Windows.Forms.View.Details;
     //
     // colName
     //
     this.colName.Text  = "Name";
     this.colName.Width = 265;
     //
     // colDateModified
     //
     this.colDateModified.Text  = "Date Modified";
     this.colDateModified.Width = 207;
     //
     // colType
     //
     this.colType.Text  = "Type";
     this.colType.Width = 145;
     //
     // colSize
     //
     this.colSize.Text  = "Size";
     this.colSize.Width = 110;
     //
     // kryptonLabel1
     //
     this.kryptonLabel1.Location = new System.Drawing.Point(12, 498);
     this.kryptonLabel1.Name     = "kryptonLabel1";
     this.kryptonLabel1.Size     = new System.Drawing.Size(88, 24);
     this.kryptonLabel1.StateCommon.LongText.Font  = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel1.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel1.TabIndex    = 1;
     this.kryptonLabel1.Values.Text = "File Name:";
     //
     // kbcFilePath
     //
     this.kbcFilePath.AutoSize = false;
     this.kbcFilePath.Location = new System.Drawing.Point(126, 12);
     this.kbcFilePath.Name     = "kbcFilePath";
     //
     //
     //
     this.kbcFilePath.RootItem.ShortText = "Root";
     this.kbcFilePath.SelectedItem       = this.kbcFilePath.RootItem;
     this.kbcFilePath.Size = new System.Drawing.Size(901, 32);
     this.kbcFilePath.StateCommon.BreadCrumb.Content.LongText.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbcFilePath.TabIndex = 0;
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.SystemColors.ControlDarkDark;
     this.panel1.Dock      = System.Windows.Forms.DockStyle.Top;
     this.panel1.Location  = new System.Drawing.Point(0, 577);
     this.panel1.Name      = "panel1";
     this.panel1.Size      = new System.Drawing.Size(1039, 3);
     this.panel1.TabIndex  = 1;
     //
     // kbtnCancel
     //
     this.kbtnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.kbtnCancel.Location     = new System.Drawing.Point(937, 12);
     this.kbtnCancel.Name         = "kbtnCancel";
     this.kbtnCancel.Size         = new System.Drawing.Size(90, 36);
     this.kbtnCancel.StateCommon.Content.LongText.Font  = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnCancel.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnCancel.TabIndex    = 1;
     this.kbtnCancel.Values.Text = "&Cancel";
     //
     // kryptonPanel2
     //
     this.kryptonPanel2.Controls.Add(this.kbtnAccept);
     this.kryptonPanel2.Controls.Add(this.kbtnCancel);
     this.kryptonPanel2.Controls.Add(this.kryptonSplitButton1);
     this.kryptonPanel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.kryptonPanel2.Location = new System.Drawing.Point(0, 580);
     this.kryptonPanel2.Name     = "kryptonPanel2";
     this.kryptonPanel2.Size     = new System.Drawing.Size(1039, 60);
     this.kryptonPanel2.TabIndex = 0;
     //
     // kbtnAccept
     //
     this.kbtnAccept.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.kbtnAccept.Location     = new System.Drawing.Point(817, 12);
     this.kbtnAccept.Name         = "kbtnAccept";
     this.kbtnAccept.Size         = new System.Drawing.Size(114, 36);
     this.kbtnAccept.StateCommon.Content.LongText.Font  = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnAccept.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnAccept.TabIndex    = 2;
     this.kbtnAccept.Values.Text = "O&k";
     //
     // kryptonSplitButton1
     //
     this.kryptonSplitButton1.AutoSize = true;
     this.kryptonSplitButton1.Location = new System.Drawing.Point(12, 12);
     this.kryptonSplitButton1.Name     = "kryptonSplitButton1";
     this.kryptonSplitButton1.Size     = new System.Drawing.Size(120, 36);
     this.kryptonSplitButton1.StateCommon.Content.LongText.Font  = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonSplitButton1.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 11.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonSplitButton1.TabIndex    = 0;
     this.kryptonSplitButton1.Values.Text = "V&iew Type";
     //
     // kryptonListView1
     //
     this.kryptonListView1.AlternateRowColour        = System.Drawing.Color.FromArgb(((int)(((byte)(187)))), ((int)(((byte)(206)))), ((int)(((byte)(230)))));
     this.kryptonListView1.AlternateRowColourEnabled = true;
     this.kryptonListView1.AutoSizeLastColumn        = true;
     this.kryptonListView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnHeader1,
         this.columnHeader2,
         this.columnHeader3,
         this.columnHeader4
     });
     this.kryptonListView1.EnableDragDrop        = false;
     this.kryptonListView1.EnableHeaderGlow      = false;
     this.kryptonListView1.EnableHeaderHotTrack  = false;
     this.kryptonListView1.EnableHeaderRendering = true;
     this.kryptonListView1.EnableSelectionBorder = false;
     this.kryptonListView1.EnableSorting         = true;
     this.kryptonListView1.EnableVistaCheckBoxes = true;
     this.kryptonListView1.ForceLeftAlign        = false;
     this.kryptonListView1.FullRowSelect         = true;
     this.kryptonListView1.HideSelection         = false;
     this.kryptonListView1.ItemHeight            = 0;
     this.kryptonListView1.LineAfter             = -1;
     this.kryptonListView1.LineBefore            = -1;
     this.kryptonListView1.Location                        = new System.Drawing.Point(332, 50);
     this.kryptonListView1.Name                            = "kryptonListView1";
     this.kryptonListView1.OwnerDraw                       = true;
     this.kryptonListView1.PersistentColours               = false;
     this.kryptonListView1.SelectEntireRowOnSubItem        = true;
     this.kryptonListView1.Size                            = new System.Drawing.Size(695, 442);
     this.kryptonListView1.TabIndex                        = 2;
     this.kryptonListView1.UseCompatibleStateImageBehavior = false;
     this.kryptonListView1.UseKryptonRenderer              = true;
     this.kryptonListView1.UseStyledColours                = true;
     this.kryptonListView1.View                            = System.Windows.Forms.View.Details;
     //
     // kryptonFileSystemTreeView1
     //
     this.kryptonFileSystemTreeView1.DrawMode           = System.Windows.Forms.TreeViewDrawMode.OwnerDrawText;
     this.kryptonFileSystemTreeView1.FolderIcon         = ((System.Drawing.Icon)(resources.GetObject("kryptonFileSystemTreeView1.FolderIcon")));
     this.kryptonFileSystemTreeView1.Font               = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonFileSystemTreeView1.ImageIndex         = 0;
     this.kryptonFileSystemTreeView1.Location           = new System.Drawing.Point(12, 50);
     this.kryptonFileSystemTreeView1.Name               = "kryptonFileSystemTreeView1";
     this.kryptonFileSystemTreeView1.SelectedImageIndex = 0;
     this.kryptonFileSystemTreeView1.ShowFiles          = true;
     this.kryptonFileSystemTreeView1.Size               = new System.Drawing.Size(314, 442);
     this.kryptonFileSystemTreeView1.TabIndex           = 2;
     //
     // circularPictureBox3
     //
     this.circularPictureBox3.BackColor = System.Drawing.Color.Black;
     this.circularPictureBox3.Location  = new System.Drawing.Point(88, 12);
     this.circularPictureBox3.Name      = "circularPictureBox3";
     this.circularPictureBox3.Size      = new System.Drawing.Size(32, 32);
     this.circularPictureBox3.TabIndex  = 6;
     this.circularPictureBox3.TabStop   = false;
     //
     // circularPictureBox2
     //
     this.circularPictureBox2.BackColor = System.Drawing.Color.Black;
     this.circularPictureBox2.Location  = new System.Drawing.Point(50, 12);
     this.circularPictureBox2.Name      = "circularPictureBox2";
     this.circularPictureBox2.Size      = new System.Drawing.Size(32, 32);
     this.circularPictureBox2.TabIndex  = 5;
     this.circularPictureBox2.TabStop   = false;
     //
     // circularPictureBox1
     //
     this.circularPictureBox1.BackColor = System.Drawing.Color.Black;
     this.circularPictureBox1.Location  = new System.Drawing.Point(12, 12);
     this.circularPictureBox1.Name      = "circularPictureBox1";
     this.circularPictureBox1.Size      = new System.Drawing.Size(32, 32);
     this.circularPictureBox1.TabIndex  = 4;
     this.circularPictureBox1.TabStop   = false;
     //
     // kryptonTextBox1
     //
     this.kryptonTextBox1.Hint     = "Enter fileneame...";
     this.kryptonTextBox1.Location = new System.Drawing.Point(106, 498);
     this.kryptonTextBox1.Name     = "kryptonTextBox1";
     this.kryptonTextBox1.Size     = new System.Drawing.Size(921, 29);
     this.kryptonTextBox1.StateCommon.Content.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonTextBox1.StateCommon.Content.TextH = ComponentFactory.Krypton.Toolkit.PaletteRelativeAlign.Inherit;
     this.kryptonTextBox1.TabIndex = 2;
     //
     // KryptonFileExplorer
     //
     this.ClientSize = new System.Drawing.Size(1039, 640);
     this.Controls.Add(this.kryptonPanel2);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.kryptonPanel1);
     this.Name  = "KryptonFileExplorer";
     this.Load += new System.EventHandler(this.KryptonFileExplorer_Load);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
     this.kryptonPanel1.ResumeLayout(false);
     this.kryptonPanel1.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kbcFilePath)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).EndInit();
     this.kryptonPanel2.ResumeLayout(false);
     this.kryptonPanel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.circularPictureBox3)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.circularPictureBox2)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.circularPictureBox1)).EndInit();
     this.ResumeLayout(false);
 }
Exemplo n.º 36
0
 private void UnmonitorControl(KryptonTextBox c)
 {
     c.MouseEnter -= new EventHandler(OnControlEnter);
     c.MouseLeave -= new EventHandler(OnControlLeave);
     c.TrackMouseEnter -= new EventHandler(OnControlEnter);
     c.TrackMouseLeave -= new EventHandler(OnControlLeave);
 }
 private void InitializeComponent()
 {
     this.kryptonPanel1    = new Krypton.Toolkit.KryptonPanel();
     this.panel4           = new System.Windows.Forms.Panel();
     this.kbcPath          = new Krypton.Toolkit.KryptonBreadCrumb();
     this.panel1           = new System.Windows.Forms.Panel();
     this.panel3           = new System.Windows.Forms.Panel();
     this.kbtnForward      = new Krypton.Toolkit.KryptonButton();
     this.panel2           = new System.Windows.Forms.Panel();
     this.kbtnBack         = new Krypton.Toolkit.KryptonButton();
     this.kryptonPanel2    = new Krypton.Toolkit.KryptonPanel();
     this.kbtnAction       = new Krypton.Toolkit.KryptonButton();
     this.kbtnCancel       = new Krypton.Toolkit.KryptonButton();
     this.kryptonPanel3    = new Krypton.Toolkit.KryptonPanel();
     this.ebcExplorer      = new Microsoft.WindowsAPICodePack.Controls.WindowsForms.ExplorerBrowser();
     this.kryptonComboBox1 = new Krypton.Toolkit.KryptonComboBox();
     this.kryptonTextBox1  = new Krypton.Toolkit.KryptonTextBox();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     this.panel4.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kbcPath)).BeginInit();
     this.panel1.SuspendLayout();
     this.panel3.SuspendLayout();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).BeginInit();
     this.kryptonPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel3)).BeginInit();
     this.kryptonPanel3.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonComboBox1)).BeginInit();
     this.SuspendLayout();
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.panel4);
     this.kryptonPanel1.Controls.Add(this.panel1);
     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(717, 28);
     this.kryptonPanel1.TabIndex = 0;
     //
     // panel4
     //
     this.panel4.BackColor = System.Drawing.Color.Transparent;
     this.panel4.Controls.Add(this.kbcPath);
     this.panel4.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel4.Location = new System.Drawing.Point(124, 0);
     this.panel4.Name     = "panel4";
     this.panel4.Size     = new System.Drawing.Size(593, 28);
     this.panel4.TabIndex = 1;
     //
     // kbcPath
     //
     this.kbcPath.AutoSize = false;
     this.kbcPath.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.kbcPath.Location = new System.Drawing.Point(0, 0);
     this.kbcPath.Name     = "kbcPath";
     //
     //
     //
     this.kbcPath.RootItem.ShortText = "Root";
     this.kbcPath.SelectedItem       = this.kbcPath.RootItem;
     this.kbcPath.Size     = new System.Drawing.Size(593, 28);
     this.kbcPath.TabIndex = 0;
     //
     // 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(124, 28);
     this.panel1.TabIndex = 0;
     //
     // panel3
     //
     this.panel3.Controls.Add(this.kbtnForward);
     this.panel3.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel3.Location = new System.Drawing.Point(60, 0);
     this.panel3.Name     = "panel3";
     this.panel3.Size     = new System.Drawing.Size(64, 28);
     this.panel3.TabIndex = 1;
     //
     // kbtnForward
     //
     this.kbtnForward.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.kbtnForward.Location    = new System.Drawing.Point(0, 0);
     this.kbtnForward.Name        = "kbtnForward";
     this.kbtnForward.Size        = new System.Drawing.Size(64, 28);
     this.kbtnForward.TabIndex    = 0;
     this.kbtnForward.Values.Text = "-->";
     //
     // panel2
     //
     this.panel2.Controls.Add(this.kbtnBack);
     this.panel2.Dock     = System.Windows.Forms.DockStyle.Left;
     this.panel2.Location = new System.Drawing.Point(0, 0);
     this.panel2.Name     = "panel2";
     this.panel2.Size     = new System.Drawing.Size(60, 28);
     this.panel2.TabIndex = 0;
     //
     // kbtnBack
     //
     this.kbtnBack.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.kbtnBack.Location    = new System.Drawing.Point(0, 0);
     this.kbtnBack.Name        = "kbtnBack";
     this.kbtnBack.Size        = new System.Drawing.Size(60, 28);
     this.kbtnBack.TabIndex    = 0;
     this.kbtnBack.Values.Text = "<--";
     //
     // kryptonPanel2
     //
     this.kryptonPanel2.Controls.Add(this.kryptonTextBox1);
     this.kryptonPanel2.Controls.Add(this.kryptonComboBox1);
     this.kryptonPanel2.Controls.Add(this.kbtnAction);
     this.kryptonPanel2.Controls.Add(this.kbtnCancel);
     this.kryptonPanel2.Dock     = System.Windows.Forms.DockStyle.Bottom;
     this.kryptonPanel2.Location = new System.Drawing.Point(0, 358);
     this.kryptonPanel2.Name     = "kryptonPanel2";
     this.kryptonPanel2.Size     = new System.Drawing.Size(717, 69);
     this.kryptonPanel2.TabIndex = 1;
     //
     // kbtnAction
     //
     this.kbtnAction.Location    = new System.Drawing.Point(519, 17);
     this.kbtnAction.Name        = "kbtnAction";
     this.kbtnAction.Size        = new System.Drawing.Size(90, 31);
     this.kbtnAction.TabIndex    = 1;
     this.kbtnAction.Values.Text = "{0}";
     //
     // kbtnCancel
     //
     this.kbtnCancel.Location    = new System.Drawing.Point(615, 17);
     this.kbtnCancel.Name        = "kbtnCancel";
     this.kbtnCancel.Size        = new System.Drawing.Size(90, 31);
     this.kbtnCancel.TabIndex    = 0;
     this.kbtnCancel.Values.Text = "C&ancel";
     //
     // kryptonPanel3
     //
     this.kryptonPanel3.Controls.Add(this.ebcExplorer);
     this.kryptonPanel3.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.kryptonPanel3.Location = new System.Drawing.Point(0, 28);
     this.kryptonPanel3.Name     = "kryptonPanel3";
     this.kryptonPanel3.Size     = new System.Drawing.Size(717, 330);
     this.kryptonPanel3.TabIndex = 2;
     //
     // ebcExplorer
     //
     this.ebcExplorer.Dock            = System.Windows.Forms.DockStyle.Fill;
     this.ebcExplorer.Location        = new System.Drawing.Point(0, 0);
     this.ebcExplorer.Name            = "ebcExplorer";
     this.ebcExplorer.PropertyBagName = "Microsoft.WindowsAPICodePack.Controls.WindowsForms.ExplorerBrowser";
     this.ebcExplorer.Size            = new System.Drawing.Size(717, 330);
     this.ebcExplorer.TabIndex        = 0;
     //
     // kryptonComboBox1
     //
     this.kryptonComboBox1.DrawMode       = System.Windows.Forms.DrawMode.OwnerDrawVariable;
     this.kryptonComboBox1.DropDownWidth  = 374;
     this.kryptonComboBox1.IntegralHeight = false;
     this.kryptonComboBox1.Location       = new System.Drawing.Point(139, 35);
     this.kryptonComboBox1.Name           = "kryptonComboBox1";
     this.kryptonComboBox1.Size           = new System.Drawing.Size(374, 21);
     this.kryptonComboBox1.StateCommon.ComboBox.Content.TextH = Krypton.Toolkit.PaletteRelativeAlign.Near;
     this.kryptonComboBox1.TabIndex = 2;
     this.kryptonComboBox1.Text     = "kryptonComboBox1";
     //
     // kryptonTextBox1
     //
     this.kryptonTextBox1.Location = new System.Drawing.Point(139, 6);
     this.kryptonTextBox1.Name     = "kryptonTextBox1";
     this.kryptonTextBox1.Size     = new System.Drawing.Size(374, 23);
     this.kryptonTextBox1.TabIndex = 3;
     this.kryptonTextBox1.Text     = "kryptonTextBox1";
     //
     // KryptonFileBrowserDialog
     //
     this.ClientSize = new System.Drawing.Size(717, 427);
     this.Controls.Add(this.kryptonPanel3);
     this.Controls.Add(this.kryptonPanel2);
     this.Controls.Add(this.kryptonPanel1);
     this.Name = "KryptonFileBrowserDialog";
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
     this.kryptonPanel1.ResumeLayout(false);
     this.panel4.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kbcPath)).EndInit();
     this.panel1.ResumeLayout(false);
     this.panel3.ResumeLayout(false);
     this.panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).EndInit();
     this.kryptonPanel2.ResumeLayout(false);
     this.kryptonPanel2.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel3)).EndInit();
     this.kryptonPanel3.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonComboBox1)).EndInit();
     this.ResumeLayout(false);
 }
Exemplo n.º 38
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(LicenseInstallForm));
     this._keyText = new ComponentFactory.Krypton.Toolkit.KryptonTextBox();
     this._keyLabel = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.kryptonPanelTop = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.labelTopHeader = new ComponentFactory.Krypton.Toolkit.KryptonLabel();
     this.pictureBoxRight = new System.Windows.Forms.PictureBox();
     this.kryptonPanelBottom = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kryptonButtonHelp = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kryptonButtonOK = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kryptonButtonIgnore = new ComponentFactory.Krypton.Toolkit.KryptonButton();
     this.kryptonPanelBottomBorder = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kryptonPanelTopBorder = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this.kryptonPanel1 = new ComponentFactory.Krypton.Toolkit.KryptonPanel();
     this._msgError = new System.Windows.Forms.Label();
     this._msgLabel = new System.Windows.Forms.Label();
     this.label1 = new System.Windows.Forms.Label();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanelTop)).BeginInit();
     this.kryptonPanelTop.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxRight)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanelBottom)).BeginInit();
     this.kryptonPanelBottom.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanelBottomBorder)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanelTopBorder)).BeginInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     this.SuspendLayout();
     //
     // _keyText
     //
     this._keyText.InputControlStyle = ComponentFactory.Krypton.Toolkit.InputControlStyle.Standalone;
     this._keyText.Location = new System.Drawing.Point(89, 98);
     this._keyText.Multiline = true;
     this._keyText.Name = "_keyText";
     this._keyText.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.ProfessionalSystem;
     this._keyText.Size = new System.Drawing.Size(320, 35);
     this._keyText.TabIndex = 0;
     this._keyText.TextChanged += new System.EventHandler(this.OnLicenceTextChanged);
     //
     // _keyLabel
     //
     this._keyLabel.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this._keyLabel.LabelStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.NormalControl;
     this._keyLabel.Location = new System.Drawing.Point(17, 101);
     this._keyLabel.Name = "_keyLabel";
     this._keyLabel.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.ProfessionalSystem;
     this._keyLabel.Size = new System.Drawing.Size(69, 19);
     this._keyLabel.TabIndex = 3;
     this._keyLabel.Values.Text = "Licence Key";
     //
     // kryptonPanelTop
     //
     this.kryptonPanelTop.Controls.Add(this.labelTopHeader);
     this.kryptonPanelTop.Controls.Add(this.pictureBoxRight);
     this.kryptonPanelTop.Dock = System.Windows.Forms.DockStyle.Top;
     this.kryptonPanelTop.Location = new System.Drawing.Point(0, 0);
     this.kryptonPanelTop.Name = "kryptonPanelTop";
     this.kryptonPanelTop.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.ProfessionalSystem;
     this.kryptonPanelTop.PanelBackStyle = ComponentFactory.Krypton.Toolkit.PaletteBackStyle.ControlClient;
     this.kryptonPanelTop.Size = new System.Drawing.Size(437, 90);
     this.kryptonPanelTop.TabIndex = 0;
     //
     // labelTopHeader
     //
     this.labelTopHeader.LabelStyle = ComponentFactory.Krypton.Toolkit.LabelStyle.NormalControl;
     this.labelTopHeader.Location = new System.Drawing.Point(12, 30);
     this.labelTopHeader.Name = "labelTopHeader";
     this.labelTopHeader.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.ProfessionalSystem;
     this.labelTopHeader.Size = new System.Drawing.Size(215, 53);
     this.labelTopHeader.StateCommon.ShortText.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.labelTopHeader.StateCommon.ShortText.Hint = ComponentFactory.Krypton.Toolkit.PaletteTextHint.AntiAlias;
     this.labelTopHeader.StateCommon.ShortText.ImageStyle = ComponentFactory.Krypton.Toolkit.PaletteImageStyle.Inherit;
     this.labelTopHeader.StateCommon.ShortText.Trim = ComponentFactory.Krypton.Toolkit.PaletteTextTrim.Inherit;
     this.labelTopHeader.TabIndex = 1;
     this.labelTopHeader.Values.Text = "Krypton Suite\r\nInstall Licence";
     //
     // pictureBoxRight
     //
     this.pictureBoxRight.BackColor = System.Drawing.SystemColors.Window;
     this.pictureBoxRight.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.pictureBoxRight.Dock = System.Windows.Forms.DockStyle.Right;
     this.pictureBoxRight.Image = global::ComponentFactory.Krypton.Workspace.Properties.Resources.CF_Logo;
     this.pictureBoxRight.Location = new System.Drawing.Point(231, 0);
     this.pictureBoxRight.Name = "pictureBoxRight";
     this.pictureBoxRight.Size = new System.Drawing.Size(206, 90);
     this.pictureBoxRight.TabIndex = 0;
     this.pictureBoxRight.TabStop = false;
     //
     // kryptonPanelBottom
     //
     this.kryptonPanelBottom.Controls.Add(this.kryptonButtonHelp);
     this.kryptonPanelBottom.Controls.Add(this.kryptonButtonOK);
     this.kryptonPanelBottom.Controls.Add(this.kryptonButtonIgnore);
     this.kryptonPanelBottom.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.kryptonPanelBottom.Location = new System.Drawing.Point(0, 330);
     this.kryptonPanelBottom.Name = "kryptonPanelBottom";
     this.kryptonPanelBottom.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.ProfessionalSystem;
     this.kryptonPanelBottom.PanelBackStyle = ComponentFactory.Krypton.Toolkit.PaletteBackStyle.PanelClient;
     this.kryptonPanelBottom.Size = new System.Drawing.Size(437, 45);
     this.kryptonPanelBottom.StateNormal.ColorStyle = ComponentFactory.Krypton.Toolkit.PaletteColorStyle.Solid;
     this.kryptonPanelBottom.StateNormal.ImageStyle = ComponentFactory.Krypton.Toolkit.PaletteImageStyle.Inherit;
     this.kryptonPanelBottom.TabIndex = 1;
     //
     // kryptonButtonHelp
     //
     this.kryptonButtonHelp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.kryptonButtonHelp.ButtonStyle = ComponentFactory.Krypton.Toolkit.ButtonStyle.Standalone;
     this.kryptonButtonHelp.Location = new System.Drawing.Point(10, 10);
     this.kryptonButtonHelp.Name = "kryptonButtonHelp";
     this.kryptonButtonHelp.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.ProfessionalSystem;
     this.kryptonButtonHelp.Size = new System.Drawing.Size(74, 25);
     this.kryptonButtonHelp.TabIndex = 0;
     this.kryptonButtonHelp.Values.Image = global::ComponentFactory.Krypton.Workspace.Properties.Resources.help2;
     this.kryptonButtonHelp.Values.Text = "Help";
     this.kryptonButtonHelp.Click += new System.EventHandler(this.OnHelpButtonClick);
     //
     // kryptonButtonOK
     //
     this.kryptonButtonOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.kryptonButtonOK.ButtonStyle = ComponentFactory.Krypton.Toolkit.ButtonStyle.Standalone;
     this.kryptonButtonOK.Enabled = false;
     this.kryptonButtonOK.Location = new System.Drawing.Point(273, 10);
     this.kryptonButtonOK.Name = "kryptonButtonOK";
     this.kryptonButtonOK.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.ProfessionalSystem;
     this.kryptonButtonOK.Size = new System.Drawing.Size(74, 25);
     this.kryptonButtonOK.TabIndex = 1;
     this.kryptonButtonOK.Values.Image = global::ComponentFactory.Krypton.Workspace.Properties.Resources.check2;
     this.kryptonButtonOK.Values.Text = "OK";
     this.kryptonButtonOK.Click += new System.EventHandler(this.OnOkButtonClick);
     //
     // kryptonButtonIgnore
     //
     this.kryptonButtonIgnore.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.kryptonButtonIgnore.ButtonStyle = ComponentFactory.Krypton.Toolkit.ButtonStyle.Standalone;
     this.kryptonButtonIgnore.Location = new System.Drawing.Point(353, 10);
     this.kryptonButtonIgnore.Name = "kryptonButtonIgnore";
     this.kryptonButtonIgnore.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.ProfessionalSystem;
     this.kryptonButtonIgnore.Size = new System.Drawing.Size(74, 25);
     this.kryptonButtonIgnore.TabIndex = 2;
     this.kryptonButtonIgnore.Values.Image = global::ComponentFactory.Krypton.Workspace.Properties.Resources.delete2;
     this.kryptonButtonIgnore.Values.Text = "Ignore";
     this.kryptonButtonIgnore.Click += new System.EventHandler(this.OnIgnoreButtonClick);
     //
     // kryptonPanelBottomBorder
     //
     this.kryptonPanelBottomBorder.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.kryptonPanelBottomBorder.Location = new System.Drawing.Point(0, 327);
     this.kryptonPanelBottomBorder.Name = "kryptonPanelBottomBorder";
     this.kryptonPanelBottomBorder.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.ProfessionalSystem;
     this.kryptonPanelBottomBorder.PanelBackStyle = ComponentFactory.Krypton.Toolkit.PaletteBackStyle.HeaderPrimary;
     this.kryptonPanelBottomBorder.Size = new System.Drawing.Size(437, 3);
     this.kryptonPanelBottomBorder.TabIndex = 13;
     //
     // kryptonPanelTopBorder
     //
     this.kryptonPanelTopBorder.Dock = System.Windows.Forms.DockStyle.Top;
     this.kryptonPanelTopBorder.Location = new System.Drawing.Point(0, 90);
     this.kryptonPanelTopBorder.Name = "kryptonPanelTopBorder";
     this.kryptonPanelTopBorder.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.ProfessionalSystem;
     this.kryptonPanelTopBorder.PanelBackStyle = ComponentFactory.Krypton.Toolkit.PaletteBackStyle.HeaderPrimary;
     this.kryptonPanelTopBorder.Size = new System.Drawing.Size(437, 3);
     this.kryptonPanelTopBorder.TabIndex = 14;
     //
     // kryptonPanel1
     //
     this.kryptonPanel1.Controls.Add(this.label1);
     this.kryptonPanel1.Controls.Add(this._msgError);
     this.kryptonPanel1.Controls.Add(this._msgLabel);
     this.kryptonPanel1.Controls.Add(this._keyText);
     this.kryptonPanel1.Controls.Add(this._keyLabel);
     this.kryptonPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.kryptonPanel1.Location = new System.Drawing.Point(0, 93);
     this.kryptonPanel1.Name = "kryptonPanel1";
     this.kryptonPanel1.PaletteMode = ComponentFactory.Krypton.Toolkit.PaletteMode.ProfessionalSystem;
     this.kryptonPanel1.PanelBackStyle = ComponentFactory.Krypton.Toolkit.PaletteBackStyle.PanelAlternate;
     this.kryptonPanel1.Size = new System.Drawing.Size(437, 234);
     this.kryptonPanel1.TabIndex = 0;
     //
     // _msgError
     //
     this._msgError.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this._msgError.BackColor = System.Drawing.Color.Transparent;
     this._msgError.ForeColor = System.Drawing.Color.Red;
     this._msgError.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this._msgError.Location = new System.Drawing.Point(88, 138);
     this._msgError.Name = "_msgError";
     this._msgError.Size = new System.Drawing.Size(333, 83);
     this._msgError.TabIndex = 5;
     //
     // _msgLabel
     //
     this._msgLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this._msgLabel.BackColor = System.Drawing.Color.Transparent;
     this._msgLabel.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this._msgLabel.Location = new System.Drawing.Point(10, 10);
     this._msgLabel.Name = "_msgLabel";
     this._msgLabel.Size = new System.Drawing.Size(417, 63);
     this._msgLabel.TabIndex = 4;
     this._msgLabel.Text = "Krypton Suite is not currently licenced. Install your licence by entering the" +
         " serial key and clicking OK.";
     //
     // label1
     //
     this.label1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                 | System.Windows.Forms.AnchorStyles.Right)));
     this.label1.BackColor = System.Drawing.Color.Transparent;
     this.label1.ImeMode = System.Windows.Forms.ImeMode.NoControl;
     this.label1.Location = new System.Drawing.Point(10, 44);
     this.label1.Name = "label1";
     this.label1.Size = new System.Drawing.Size(417, 51);
     this.label1.TabIndex = 6;
     this.label1.Text = "Click Ignore to start a 30 day evaluation period. Once your 30 day evaluation per" +
         "iod expires you will receive this message at design time and a warning message a" +
         "t runtime.";
     //
     // LicenseInstallForm
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 14);
     this.ClientSize = new System.Drawing.Size(437, 375);
     this.ControlBox = false;
     this.Controls.Add(this.kryptonPanel1);
     this.Controls.Add(this.kryptonPanelTopBorder);
     this.Controls.Add(this.kryptonPanelBottomBorder);
     this.Controls.Add(this.kryptonPanelBottom);
     this.Controls.Add(this.kryptonPanelTop);
     this.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "LicenseInstallForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Install Krypton Suite Licence";
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanelTop)).EndInit();
     this.kryptonPanelTop.ResumeLayout(false);
     this.kryptonPanelTop.PerformLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBoxRight)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanelBottom)).EndInit();
     this.kryptonPanelBottom.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanelBottomBorder)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanelTopBorder)).EndInit();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
     this.kryptonPanel1.ResumeLayout(false);
     this.kryptonPanel1.PerformLayout();
     this.ResumeLayout(false);
 }
Exemplo n.º 39
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);
 }
Exemplo n.º 40
0
        /// <summary>
        /// Initializes the designer with the specified component.
        /// </summary>
        /// <param name="component">The IComponent to associate the designer with.</param>
        public override void Initialize(IComponent component)
        {
            // Let base class do standard stuff
            base.Initialize(component);

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

            // Cast to correct type
            _textBox = component as KryptonTextBox;

            if (_textBox != null)
            {
                // Hook into textbox events
                _textBox.GetViewManager().MouseUpProcessed += new MouseEventHandler(OnTextBoxMouseUp);
                _textBox.GetViewManager().DoubleClickProcessed += new PointHandler(OnTextBoxDoubleClick);
            }

            // Get access to the design services
            _designerHost = (IDesignerHost)GetService(typeof(IDesignerHost));
            _changeService = (IComponentChangeService)GetService(typeof(IComponentChangeService));
            _selectionService = (ISelectionService)GetService(typeof(ISelectionService));

            // We need to know when we are being removed
            _changeService.ComponentRemoving += new ComponentEventHandler(OnComponentRemoving);
        }
 private void InitializeComponent()
 {
     this.kryptonPanel1             = new Krypton.Toolkit.KryptonPanel();
     this.kbtnOk                    = new Krypton.Toolkit.KryptonButton();
     this.kbtnCancel                = new Krypton.Toolkit.KryptonButton();
     this.panel1                    = new System.Windows.Forms.Panel();
     this.kryptonPanel2             = new Krypton.Toolkit.KryptonPanel();
     this.kbtnCustomColours         = new Krypton.Toolkit.KryptonButton();
     this.kbtnSaveColourPalette     = new Krypton.Toolkit.KryptonButton();
     this.kbtnLoadColourPalette     = new Krypton.Toolkit.KryptonButton();
     this.knumBlue                  = new Krypton.Toolkit.Suite.Extended.Drawing.Suite.KryptonBlueValueNumericBox();
     this.knumGreen                 = new Krypton.Toolkit.Suite.Extended.Drawing.Suite.KryptonGreenValueNumericBox();
     this.knumNormalGreen           = new Krypton.Toolkit.Suite.Extended.Drawing.Suite.KryptonAlphaValueNumericBox();
     this.knumNormalBlue            = new Krypton.Toolkit.Suite.Extended.Drawing.Suite.KryptonAlphaValueNumericBox();
     this.knumRed                   = new Krypton.Toolkit.Suite.Extended.Drawing.Suite.KryptonRedValueNumericBox();
     this.knumNormalRed             = new Krypton.Toolkit.Suite.Extended.Drawing.Suite.KryptonAlphaValueNumericBox();
     this.kryptonBlueValueLabel1    = new Krypton.Toolkit.Suite.Extended.Drawing.Suite.KryptonBlueValueLabel();
     this.kryptonRedValueLabel1     = new Krypton.Toolkit.Suite.Extended.Drawing.Suite.KryptonRedValueLabel();
     this.klblNormalBlue            = new Krypton.Toolkit.KryptonLabel();
     this.klblNormalRed             = new Krypton.Toolkit.KryptonLabel();
     this.kryptonLabel6             = new Krypton.Toolkit.KryptonLabel();
     this.kryptonLabel5             = new Krypton.Toolkit.KryptonLabel();
     this.kryptonLabel4             = new Krypton.Toolkit.KryptonLabel();
     this.kryptonLabel3             = new Krypton.Toolkit.KryptonLabel();
     this.knumBrightness            = new Krypton.Toolkit.Suite.Extended.Drawing.Suite.KryptonAlphaValueNumericBox();
     this.knumHue                   = new Krypton.Toolkit.Suite.Extended.Drawing.Suite.KryptonAlphaValueNumericBox();
     this.knumSaturation            = new Krypton.Toolkit.Suite.Extended.Drawing.Suite.KryptonAlphaValueNumericBox();
     this.knumAlpha                 = new Krypton.Toolkit.Suite.Extended.Drawing.Suite.KryptonAlphaValueNumericBox();
     this.kryptonLabel2             = new Krypton.Toolkit.KryptonLabel();
     this.ktbHexadecimalColourValue = new Krypton.Toolkit.KryptonTextBox();
     this.kryptonLabel1             = new Krypton.Toolkit.KryptonLabel();
     this.cwColours                 = new Krypton.Toolkit.Suite.Extended.Drawing.Suite.ColourWheelControl();
     this.cpbSelectedColour         = new Krypton.Toolkit.Suite.Extended.Base.CircularPictureBox();
     this.kryptonGreenValueLabel1   = new Krypton.Toolkit.Suite.Extended.Drawing.Suite.KryptonGreenValueLabel();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
     this.kryptonPanel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel2)).BeginInit();
     this.kryptonPanel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.cpbSelectedColour)).BeginInit();
     this.SuspendLayout();
     //
     // kryptonPanel1
     //
     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, 452);
     this.kryptonPanel1.Name     = "kryptonPanel1";
     this.kryptonPanel1.Size     = new System.Drawing.Size(611, 48);
     this.kryptonPanel1.TabIndex = 1;
     //
     // kbtnOk
     //
     this.kbtnOk.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.kbtnOk.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.kbtnOk.Location     = new System.Drawing.Point(405, 8);
     this.kbtnOk.Name         = "kbtnOk";
     this.kbtnOk.Size         = new System.Drawing.Size(94, 28);
     this.kbtnOk.StateCommon.Content.LongText.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     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    = 1;
     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.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.kbtnCancel.Location     = new System.Drawing.Point(505, 8);
     this.kbtnCancel.Name         = "kbtnCancel";
     this.kbtnCancel.Size         = new System.Drawing.Size(94, 28);
     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    = 0;
     this.kbtnCancel.Values.Text = "C&ancel";
     this.kbtnCancel.Click      += new System.EventHandler(this.KbtnCancel_Click);
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.SystemColors.ControlDarkDark;
     this.panel1.Dock      = System.Windows.Forms.DockStyle.Bottom;
     this.panel1.Location  = new System.Drawing.Point(0, 449);
     this.panel1.Name      = "panel1";
     this.panel1.Size      = new System.Drawing.Size(611, 3);
     this.panel1.TabIndex  = 3;
     //
     // kryptonPanel2
     //
     this.kryptonPanel2.Controls.Add(this.kryptonGreenValueLabel1);
     this.kryptonPanel2.Controls.Add(this.kbtnCustomColours);
     this.kryptonPanel2.Controls.Add(this.kbtnSaveColourPalette);
     this.kryptonPanel2.Controls.Add(this.kbtnLoadColourPalette);
     this.kryptonPanel2.Controls.Add(this.knumBlue);
     this.kryptonPanel2.Controls.Add(this.knumGreen);
     this.kryptonPanel2.Controls.Add(this.knumNormalGreen);
     this.kryptonPanel2.Controls.Add(this.knumNormalBlue);
     this.kryptonPanel2.Controls.Add(this.knumRed);
     this.kryptonPanel2.Controls.Add(this.knumNormalRed);
     this.kryptonPanel2.Controls.Add(this.kryptonBlueValueLabel1);
     this.kryptonPanel2.Controls.Add(this.kryptonRedValueLabel1);
     this.kryptonPanel2.Controls.Add(this.klblNormalBlue);
     this.kryptonPanel2.Controls.Add(this.klblNormalRed);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel6);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel5);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel4);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel3);
     this.kryptonPanel2.Controls.Add(this.knumBrightness);
     this.kryptonPanel2.Controls.Add(this.knumHue);
     this.kryptonPanel2.Controls.Add(this.knumSaturation);
     this.kryptonPanel2.Controls.Add(this.knumAlpha);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel2);
     this.kryptonPanel2.Controls.Add(this.ktbHexadecimalColourValue);
     this.kryptonPanel2.Controls.Add(this.kryptonLabel1);
     this.kryptonPanel2.Controls.Add(this.cpbSelectedColour);
     this.kryptonPanel2.Controls.Add(this.cwColours);
     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(611, 449);
     this.kryptonPanel2.TabIndex = 4;
     //
     // kbtnCustomColours
     //
     this.kbtnCustomColours.Location = new System.Drawing.Point(12, 272);
     this.kbtnCustomColours.Name     = "kbtnCustomColours";
     this.kbtnCustomColours.Size     = new System.Drawing.Size(190, 28);
     this.kbtnCustomColours.StateCommon.Content.LongText.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnCustomColours.StateCommon.Content.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kbtnCustomColours.TabIndex    = 106;
     this.kbtnCustomColours.Values.Text = "C&stom Colours...";
     this.kbtnCustomColours.Click      += new System.EventHandler(this.KbtnCustomColours_Click);
     //
     // kbtnSaveColourPalette
     //
     this.kbtnSaveColourPalette.Location     = new System.Drawing.Point(41, 231);
     this.kbtnSaveColourPalette.Name         = "kbtnSaveColourPalette";
     this.kbtnSaveColourPalette.Size         = new System.Drawing.Size(23, 23);
     this.kbtnSaveColourPalette.TabIndex     = 105;
     this.kbtnSaveColourPalette.Values.Image = LibraryResources.palette_save;
     this.kbtnSaveColourPalette.Values.Text  = "";
     this.kbtnSaveColourPalette.Click       += new System.EventHandler(this.KbtnSaveColourPalette_Click);
     //
     // kbtnLoadColourPalette
     //
     this.kbtnLoadColourPalette.Location     = new System.Drawing.Point(12, 231);
     this.kbtnLoadColourPalette.Name         = "kbtnLoadColourPalette";
     this.kbtnLoadColourPalette.Size         = new System.Drawing.Size(23, 23);
     this.kbtnLoadColourPalette.TabIndex     = 104;
     this.kbtnLoadColourPalette.Values.Image = LibraryResources.palette_load;
     this.kbtnLoadColourPalette.Values.Text  = "";
     this.kbtnLoadColourPalette.Click       += new System.EventHandler(this.KbtnLoadColourPalette_Click);
     //
     // knumBlue
     //
     this.knumBlue.Location = new System.Drawing.Point(505, 399);
     this.knumBlue.Maximum  = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.knumBlue.Name = "knumBlue";
     this.knumBlue.Size = new System.Drawing.Size(94, 22);
     this.knumBlue.StateCommon.Back.Color1    = System.Drawing.Color.Blue;
     this.knumBlue.StateCommon.Content.Color1 = System.Drawing.Color.White;
     this.knumBlue.StateCommon.Content.TextH  = Krypton.Toolkit.PaletteRelativeAlign.Inherit;
     this.knumBlue.TabIndex        = 5;
     this.knumBlue.Typeface        = null;
     this.knumBlue.UseAccessibleUI = false;
     this.knumBlue.ValueChanged   += new System.EventHandler(this.KnumBlue_ValueChanged);
     //
     // knumGreen
     //
     this.knumGreen.Location = new System.Drawing.Point(505, 336);
     this.knumGreen.Maximum  = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.knumGreen.Name = "knumGreen";
     this.knumGreen.Size = new System.Drawing.Size(94, 22);
     this.knumGreen.StateCommon.Back.Color1    = System.Drawing.Color.Green;
     this.knumGreen.StateCommon.Content.Color1 = System.Drawing.Color.White;
     this.knumGreen.StateCommon.Content.TextH  = Krypton.Toolkit.PaletteRelativeAlign.Inherit;
     this.knumGreen.TabIndex        = 90;
     this.knumGreen.Typeface        = null;
     this.knumGreen.UseAccessibleUI = false;
     this.knumGreen.ValueChanged   += new System.EventHandler(this.KnumGreen_ValueChanged);
     //
     // knumNormalGreen
     //
     this.knumNormalGreen.Location = new System.Drawing.Point(505, 336);
     this.knumNormalGreen.Maximum  = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.knumNormalGreen.Name = "knumNormalGreen";
     this.knumNormalGreen.Size = new System.Drawing.Size(94, 22);
     this.knumNormalGreen.StateCommon.Back.Color1    = System.Drawing.Color.White;
     this.knumNormalGreen.StateCommon.Content.Color1 = System.Drawing.Color.Black;
     this.knumNormalGreen.StateCommon.Content.TextH  = Krypton.Toolkit.PaletteRelativeAlign.Inherit;
     this.knumNormalGreen.TabIndex      = 103;
     this.knumNormalGreen.Typeface      = null;
     this.knumNormalGreen.ValueChanged += new System.EventHandler(this.KnumNormalGreen_ValueChanged);
     //
     // knumNormalBlue
     //
     this.knumNormalBlue.Location = new System.Drawing.Point(505, 399);
     this.knumNormalBlue.Maximum  = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.knumNormalBlue.Name = "knumNormalBlue";
     this.knumNormalBlue.Size = new System.Drawing.Size(94, 22);
     this.knumNormalBlue.StateCommon.Back.Color1    = System.Drawing.Color.White;
     this.knumNormalBlue.StateCommon.Content.Color1 = System.Drawing.Color.Black;
     this.knumNormalBlue.StateCommon.Content.TextH  = Krypton.Toolkit.PaletteRelativeAlign.Inherit;
     this.knumNormalBlue.TabIndex      = 102;
     this.knumNormalBlue.Typeface      = null;
     this.knumNormalBlue.ValueChanged += new System.EventHandler(this.KnumNormalBlue_ValueChanged);
     //
     // knumRed
     //
     this.knumRed.Location = new System.Drawing.Point(505, 283);
     this.knumRed.Maximum  = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.knumRed.Name = "knumRed";
     this.knumRed.Size = new System.Drawing.Size(94, 22);
     this.knumRed.StateCommon.Back.Color1    = System.Drawing.Color.Red;
     this.knumRed.StateCommon.Content.Color1 = System.Drawing.Color.White;
     this.knumRed.StateCommon.Content.TextH  = Krypton.Toolkit.PaletteRelativeAlign.Inherit;
     this.knumRed.TabIndex        = 89;
     this.knumRed.Typeface        = null;
     this.knumRed.UseAccessibleUI = false;
     this.knumRed.ValueChanged   += new System.EventHandler(this.KnumRed_ValueChanged);
     //
     // knumNormalRed
     //
     this.knumNormalRed.Location = new System.Drawing.Point(505, 283);
     this.knumNormalRed.Maximum  = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.knumNormalRed.Name = "knumNormalRed";
     this.knumNormalRed.Size = new System.Drawing.Size(94, 22);
     this.knumNormalRed.StateCommon.Back.Color1    = System.Drawing.Color.White;
     this.knumNormalRed.StateCommon.Content.Color1 = System.Drawing.Color.Black;
     this.knumNormalRed.StateCommon.Content.TextH  = Krypton.Toolkit.PaletteRelativeAlign.Inherit;
     this.knumNormalRed.TabIndex      = 101;
     this.knumNormalRed.Typeface      = null;
     this.knumNormalRed.ValueChanged += new System.EventHandler(this.KnumNormalRed_ValueChanged);
     //
     // kryptonBlueValueLabel1
     //
     this.kryptonBlueValueLabel1.BlueValue = 255;
     this.kryptonBlueValueLabel1.ExtraText = "Blue";
     this.kryptonBlueValueLabel1.Location  = new System.Drawing.Point(449, 399);
     this.kryptonBlueValueLabel1.Name      = "kryptonBlueValueLabel1";
     this.kryptonBlueValueLabel1.ShowColon = false;
     this.kryptonBlueValueLabel1.ShowCurrentColourValue = false;
     this.kryptonBlueValueLabel1.Size = new System.Drawing.Size(50, 26);
     this.kryptonBlueValueLabel1.StateCommon.LongText.Color1  = System.Drawing.Color.Blue;
     this.kryptonBlueValueLabel1.StateCommon.LongText.Color2  = System.Drawing.Color.Blue;
     this.kryptonBlueValueLabel1.StateCommon.LongText.Font    = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.kryptonBlueValueLabel1.StateCommon.ShortText.Color1 = System.Drawing.Color.Blue;
     this.kryptonBlueValueLabel1.StateCommon.ShortText.Color2 = System.Drawing.Color.Blue;
     this.kryptonBlueValueLabel1.StateCommon.ShortText.Font   = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.kryptonBlueValueLabel1.TabIndex        = 5;
     this.kryptonBlueValueLabel1.Typeface        = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.kryptonBlueValueLabel1.UseAccessibleUI = false;
     this.kryptonBlueValueLabel1.Values.Text     = "Blue:";
     //
     // kryptonRedValueLabel1
     //
     this.kryptonRedValueLabel1.ExtraText = "Red";
     this.kryptonRedValueLabel1.Location  = new System.Drawing.Point(453, 283);
     this.kryptonRedValueLabel1.Name      = "kryptonRedValueLabel1";
     this.kryptonRedValueLabel1.RedValue  = 255;
     this.kryptonRedValueLabel1.ShowColon = false;
     this.kryptonRedValueLabel1.ShowCurrentColourValue = false;
     this.kryptonRedValueLabel1.Size = new System.Drawing.Size(46, 26);
     this.kryptonRedValueLabel1.StateCommon.LongText.Color1  = System.Drawing.Color.Red;
     this.kryptonRedValueLabel1.StateCommon.LongText.Color2  = System.Drawing.Color.Red;
     this.kryptonRedValueLabel1.StateCommon.LongText.Font    = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.kryptonRedValueLabel1.StateCommon.ShortText.Color1 = System.Drawing.Color.Red;
     this.kryptonRedValueLabel1.StateCommon.ShortText.Color2 = System.Drawing.Color.Red;
     this.kryptonRedValueLabel1.StateCommon.ShortText.Font   = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.kryptonRedValueLabel1.TabIndex        = 5;
     this.kryptonRedValueLabel1.Typeface        = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.kryptonRedValueLabel1.UseAccessibleUI = false;
     this.kryptonRedValueLabel1.Values.Text     = "Red:";
     //
     // klblNormalBlue
     //
     this.klblNormalBlue.Location = new System.Drawing.Point(449, 399);
     this.klblNormalBlue.Name     = "klblNormalBlue";
     this.klblNormalBlue.Size     = new System.Drawing.Size(50, 26);
     this.klblNormalBlue.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.klblNormalBlue.TabIndex    = 100;
     this.klblNormalBlue.Values.Text = "Blue:";
     //
     // klblNormalRed
     //
     this.klblNormalRed.Location = new System.Drawing.Point(449, 283);
     this.klblNormalRed.Name     = "klblNormalRed";
     this.klblNormalRed.Size     = new System.Drawing.Size(46, 26);
     this.klblNormalRed.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.klblNormalRed.TabIndex    = 98;
     this.klblNormalRed.Values.Text = "Red:";
     //
     // kryptonLabel6
     //
     this.kryptonLabel6.Location = new System.Drawing.Point(437, 231);
     this.kryptonLabel6.Name     = "kryptonLabel6";
     this.kryptonLabel6.Size     = new System.Drawing.Size(62, 26);
     this.kryptonLabel6.StateCommon.ShortText.Font = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.kryptonLabel6.TabIndex    = 97;
     this.kryptonLabel6.Values.Text = "Alpha:";
     //
     // kryptonLabel5
     //
     this.kryptonLabel5.Location = new System.Drawing.Point(306, 399);
     this.kryptonLabel5.Name     = "kryptonLabel5";
     this.kryptonLabel5.Size     = new System.Drawing.Size(27, 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    = 96;
     this.kryptonLabel5.Values.Text = "B:";
     //
     // kryptonLabel4
     //
     this.kryptonLabel4.Location = new System.Drawing.Point(306, 336);
     this.kryptonLabel4.Name     = "kryptonLabel4";
     this.kryptonLabel4.Size     = new System.Drawing.Size(26, 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    = 95;
     this.kryptonLabel4.Values.Text = "S:";
     //
     // kryptonLabel3
     //
     this.kryptonLabel3.Location = new System.Drawing.Point(306, 283);
     this.kryptonLabel3.Name     = "kryptonLabel3";
     this.kryptonLabel3.Size     = new System.Drawing.Size(29, 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    = 94;
     this.kryptonLabel3.Values.Text = "H:";
     //
     // knumBrightness
     //
     this.knumBrightness.Location = new System.Drawing.Point(341, 399);
     this.knumBrightness.Maximum  = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.knumBrightness.Name = "knumBrightness";
     this.knumBrightness.Size = new System.Drawing.Size(91, 22);
     this.knumBrightness.StateCommon.Back.Color1    = System.Drawing.Color.White;
     this.knumBrightness.StateCommon.Content.Color1 = System.Drawing.Color.Black;
     this.knumBrightness.StateCommon.Content.TextH  = Krypton.Toolkit.PaletteRelativeAlign.Inherit;
     this.knumBrightness.TabIndex      = 93;
     this.knumBrightness.Typeface      = null;
     this.knumBrightness.ValueChanged += new System.EventHandler(this.KnumBrightness_ValueChanged);
     //
     // knumHue
     //
     this.knumHue.Location = new System.Drawing.Point(341, 283);
     this.knumHue.Maximum  = new decimal(new int[] {
         360,
         0,
         0,
         0
     });
     this.knumHue.Name = "knumHue";
     this.knumHue.Size = new System.Drawing.Size(91, 22);
     this.knumHue.StateCommon.Back.Color1    = System.Drawing.Color.White;
     this.knumHue.StateCommon.Content.Color1 = System.Drawing.Color.Black;
     this.knumHue.StateCommon.Content.TextH  = Krypton.Toolkit.PaletteRelativeAlign.Inherit;
     this.knumHue.TabIndex      = 91;
     this.knumHue.Typeface      = null;
     this.knumHue.ValueChanged += new System.EventHandler(this.KnumHue_ValueChanged);
     //
     // knumSaturation
     //
     this.knumSaturation.Location = new System.Drawing.Point(341, 336);
     this.knumSaturation.Maximum  = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.knumSaturation.Name = "knumSaturation";
     this.knumSaturation.Size = new System.Drawing.Size(91, 22);
     this.knumSaturation.StateCommon.Back.Color1    = System.Drawing.Color.White;
     this.knumSaturation.StateCommon.Content.Color1 = System.Drawing.Color.Black;
     this.knumSaturation.StateCommon.Content.TextH  = Krypton.Toolkit.PaletteRelativeAlign.Inherit;
     this.knumSaturation.TabIndex      = 92;
     this.knumSaturation.Typeface      = null;
     this.knumSaturation.ValueChanged += new System.EventHandler(this.KnumSaturation_ValueChanged);
     //
     // knumAlpha
     //
     this.knumAlpha.Location = new System.Drawing.Point(505, 231);
     this.knumAlpha.Maximum  = new decimal(new int[] {
         255,
         0,
         0,
         0
     });
     this.knumAlpha.Name = "knumAlpha";
     this.knumAlpha.Size = new System.Drawing.Size(94, 22);
     this.knumAlpha.StateCommon.Back.Color1    = System.Drawing.Color.White;
     this.knumAlpha.StateCommon.Content.Color1 = System.Drawing.Color.Black;
     this.knumAlpha.StateCommon.Content.TextH  = Krypton.Toolkit.PaletteRelativeAlign.Inherit;
     this.knumAlpha.TabIndex      = 5;
     this.knumAlpha.Typeface      = null;
     this.knumAlpha.ValueChanged += new System.EventHandler(this.KnumAlpha_ValueChanged);
     //
     // kryptonLabel2
     //
     this.kryptonLabel2.Location = new System.Drawing.Point(341, 56);
     this.kryptonLabel2.Name     = "kryptonLabel2";
     this.kryptonLabel2.Size     = new System.Drawing.Size(138, 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    = 88;
     this.kryptonLabel2.Values.Text = "Selected Colour:";
     //
     // ktbHexadecimalColourValue
     //
     this.ktbHexadecimalColourValue.Hint      = "#000000";
     this.ktbHexadecimalColourValue.Location  = new System.Drawing.Point(423, 152);
     this.ktbHexadecimalColourValue.MaxLength = 7;
     this.ktbHexadecimalColourValue.Name      = "ktbHexadecimalColourValue";
     this.ktbHexadecimalColourValue.Size      = new System.Drawing.Size(176, 29);
     this.ktbHexadecimalColourValue.StateCommon.Content.Font  = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.ktbHexadecimalColourValue.StateCommon.Content.TextH = Krypton.Toolkit.PaletteRelativeAlign.Inherit;
     this.ktbHexadecimalColourValue.TabIndex     = 87;
     this.ktbHexadecimalColourValue.TextAlign    = System.Windows.Forms.HorizontalAlignment.Center;
     this.ktbHexadecimalColourValue.TextChanged += new System.EventHandler(this.KtbHexadecimalColourValue_TextChanged);
     //
     // kryptonLabel1
     //
     this.kryptonLabel1.Location = new System.Drawing.Point(245, 154);
     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    = 86;
     this.kryptonLabel1.Values.Text = "Hexadecimal Colour:";
     //
     // cwColours
     //
     this.cwColours.BackColor      = System.Drawing.Color.Transparent;
     this.cwColours.Location       = new System.Drawing.Point(12, 12);
     this.cwColours.Name           = "cwColours";
     this.cwColours.Size           = new System.Drawing.Size(247, 190);
     this.cwColours.TabIndex       = 5;
     this.cwColours.ColourChanged += new System.EventHandler(this.CwColours_ColourChanged);
     //
     // cpbSelectedColour
     //
     this.cpbSelectedColour.BackColor         = System.Drawing.Color.Transparent;
     this.cpbSelectedColour.Location          = new System.Drawing.Point(485, 12);
     this.cpbSelectedColour.Name              = "cpbSelectedColour";
     this.cpbSelectedColour.Size              = new System.Drawing.Size(114, 114);
     this.cpbSelectedColour.TabIndex          = 5;
     this.cpbSelectedColour.TabStop           = false;
     this.cpbSelectedColour.ToolTipValues     = null;
     this.cpbSelectedColour.BackColorChanged += new System.EventHandler(this.CpbSelectedColour_BackColorChanged);
     //
     // kryptonGreenValueLabel1
     //
     this.kryptonGreenValueLabel1.ExtraText                    = "Green";
     this.kryptonGreenValueLabel1.GreenValue                   = 0;
     this.kryptonGreenValueLabel1.Location                     = new System.Drawing.Point(437, 336);
     this.kryptonGreenValueLabel1.Name                         = "kryptonGreenValueLabel1";
     this.kryptonGreenValueLabel1.ShowColon                    = false;
     this.kryptonGreenValueLabel1.ShowCurrentColourValue       = false;
     this.kryptonGreenValueLabel1.Size                         = new System.Drawing.Size(62, 26);
     this.kryptonGreenValueLabel1.StateCommon.LongText.Color1  = System.Drawing.Color.Green;
     this.kryptonGreenValueLabel1.StateCommon.LongText.Color2  = System.Drawing.Color.Green;
     this.kryptonGreenValueLabel1.StateCommon.LongText.Font    = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.kryptonGreenValueLabel1.StateCommon.ShortText.Color1 = System.Drawing.Color.Green;
     this.kryptonGreenValueLabel1.StateCommon.ShortText.Color2 = System.Drawing.Color.Green;
     this.kryptonGreenValueLabel1.StateCommon.ShortText.Font   = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.kryptonGreenValueLabel1.TabIndex                     = 107;
     this.kryptonGreenValueLabel1.Typeface                     = new System.Drawing.Font("Segoe UI", 12F, System.Drawing.FontStyle.Bold);
     this.kryptonGreenValueLabel1.UseAccessibleUI              = false;
     this.kryptonGreenValueLabel1.Values.Text                  = "Green:";
     //
     // KryptonColourButtonCustomColourDialog
     //
     this.ClientSize = new System.Drawing.Size(611, 500);
     this.Controls.Add(this.kryptonPanel2);
     this.Controls.Add(this.panel1);
     this.Controls.Add(this.kryptonPanel1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Fixed3D;
     this.MaximizeBox     = false;
     this.MinimizeBox     = false;
     this.Name            = "KryptonColourButtonCustomColourDialog";
     this.ShowIcon        = false;
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Load           += new System.EventHandler(this.KryptonColourButtonCustomColourDialog_Load);
     ((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.cpbSelectedColour)).EndInit();
     this.ResumeLayout(false);
 }