diff --git a/Documents/Help/Changelog.md b/Documents/Help/Changelog.md
index 074157e8f..b6ab28453 100644
--- a/Documents/Help/Changelog.md
+++ b/Documents/Help/Changelog.md
@@ -3,6 +3,7 @@
=======
## 2024-11-xx - Build 2411 - November 2024
+* Resolved [#1207](https://github.com/Krypton-Suite/Standard-Toolkit/issues/1207), Microsoft 365 - Black (Dark Mode) Drop button is not visible
* Resolved [#1206](https://github.com/Krypton-Suite/Standard-Toolkit/issues/1206), Remove the Font Size (as it is already covered by the actual font !)
* Resolved [#1197](https://github.com/Krypton-Suite/Standard-Toolkit/issues/1197), `KryptonTaskDialog` Footer Images
* Resolved [#1189](https://github.com/Krypton-Suite/Standard-Toolkit/issues/1189), The Context and Next/Pervious buttons of the `KryptonDockableNavigator` cannot be used
diff --git a/Source/Krypton Components/Krypton.Toolkit/Controls Toolkit/KryptonButton.cs b/Source/Krypton Components/Krypton.Toolkit/Controls Toolkit/KryptonButton.cs
index 48c9d9a48..526fbcd97 100644
--- a/Source/Krypton Components/Krypton.Toolkit/Controls Toolkit/KryptonButton.cs
+++ b/Source/Krypton Components/Krypton.Toolkit/Controls Toolkit/KryptonButton.cs
@@ -108,7 +108,7 @@ public KryptonButton()
_overrideNormal,
_overrideTracking,
_overridePressed,
- new PaletteMetricRedirect(Redirector),
+ new PaletteMetricRedirect(Redirector!),
this,
Orientation,
UseMnemonic)
@@ -810,7 +810,7 @@ protected override void OnPaint(PaintEventArgs? e)
}
// Draw an arrow in the correct location
- PaintArrow(g, _dropDownRectangle);
+ PaintArrow(Values.DropDownArrowColor, g, _dropDownRectangle);
#endregion
}
@@ -920,7 +920,7 @@ protected virtual void OnCommandPropertyChanged(object sender, PropertyChangedEv
switch (e.PropertyName)
{
case nameof(Enabled):
- Enabled = KryptonCommand.Enabled;
+ Enabled = KryptonCommand!.Enabled;
break;
case nameof(Text):
case @"ExtraText":
@@ -968,13 +968,20 @@ private void SetCornerRoundingRadius(float? radius)
#region Splitter Stuff
- private static void PaintArrow(Graphics graphics, Rectangle rectangle)
+ /// Paints the drop-down arrow.
+ /// The drop-down arrow graphics.
+ /// The drop-down rectangle area.
+ private static void PaintArrow(Color? dropDownArrowColor, Graphics graphics, Rectangle rectangle)
{
var midPoint = new Point(Convert.ToInt32(rectangle.Left + rectangle.Width / 2),
Convert.ToInt32(rectangle.Top + rectangle.Height / 2));
midPoint.X += (rectangle.Width % 2);
+ Color color = dropDownArrowColor ?? Color.Black;
+
+ SolidBrush dropDownBrush = new SolidBrush(color);
+
var arrow = new Point[]
{
new Point(midPoint.X - 2, midPoint.Y - 1),
@@ -982,7 +989,7 @@ private static void PaintArrow(Graphics graphics, Rectangle rectangle)
midPoint with { Y = midPoint.Y + 2 }
};
- graphics.FillPolygon(SystemBrushes.ControlText, arrow);
+ graphics.FillPolygon(dropDownBrush, arrow);
}
private void ShowContextMenuStrip()
diff --git a/Source/Krypton Components/Krypton.Toolkit/Controls Toolkit/KryptonColorButton.cs b/Source/Krypton Components/Krypton.Toolkit/Controls Toolkit/KryptonColorButton.cs
index e5bcf00b9..d77e60a37 100644
--- a/Source/Krypton Components/Krypton.Toolkit/Controls Toolkit/KryptonColorButton.cs
+++ b/Source/Krypton Components/Krypton.Toolkit/Controls Toolkit/KryptonColorButton.cs
@@ -47,7 +47,7 @@ public class KryptonColorButton : VisualSimpleBase, IButtonControl, IContentValu
private KryptonColorButtonCustomColorPreviewShape _customColorPreviewShape;
// Context menu items
- private readonly KryptonContextMenu _kryptonContextMenu;
+ private readonly KryptonContextMenu? _kryptonContextMenu;
private readonly KryptonContextMenuSeparator _separatorTheme;
private readonly KryptonContextMenuSeparator _separatorStandard;
private readonly KryptonContextMenuSeparator _separatorRecent;
@@ -186,7 +186,7 @@ public KryptonColorButton()
_overrideNormal,
_overrideTracking,
_overridePressed,
- new PaletteMetricRedirect(Redirector),
+ new PaletteMetricRedirect(Redirector!),
this,
VisualOrientation.Top,
UseMnemonic)
@@ -705,7 +705,7 @@ public virtual KryptonCommand? KryptonCommand
else
{
_wasEnabled = Enabled;
- _wasImage = Values.Image;
+ _wasImage = Values.Image!;
}
_command = value;
diff --git a/Source/Krypton Components/Krypton.Toolkit/Values/ButtonValues.cs b/Source/Krypton Components/Krypton.Toolkit/Values/ButtonValues.cs
index fb2fceaf4..78a2ce286 100644
--- a/Source/Krypton Components/Krypton.Toolkit/Values/ButtonValues.cs
+++ b/Source/Krypton Components/Krypton.Toolkit/Values/ButtonValues.cs
@@ -31,6 +31,7 @@ public class ButtonValues : Storage,
private UACShieldIconSize _uacShieldIconSize;
private Image? _image;
private Color _transparent;
+ private Color? _dropDownArrowColor;
private string? _text;
private string _extraText;
@@ -56,6 +57,7 @@ public ButtonValues(NeedPaintHandler needPaint)
// Set initial values
_image = null;
_transparent = Color.Empty;
+ _dropDownArrowColor = Color.Empty;
_text = _defaultText;
_extraText = _defaultExtraText;
_useAsDialogButton = false;
@@ -77,6 +79,7 @@ public ButtonValues(NeedPaintHandler needPaint)
(UseAsADialogButton == false) &&
(UseAsUACElevationButton == false) &&
(ShowSplitOption == false) &&
+ (DropDownArrowColor == Color.Empty) &&
//(UACShieldIconSize == UACShieldIconSize.ExtraSmall)
(ImageTransparentColor == Color.Empty) &&
(Text == _defaultText) &&
@@ -368,6 +371,30 @@ public bool ShowSplitOption
#endregion
+ #region DropDownArrowColor
+
+ /// Gets or sets the color of the drop down arrow.
+ /// The color of the drop down arrow.
+ [Category(@"Visuals")]
+ [Description(@"Sets the drop down arrow color.")]
+ [DefaultValue(typeof(Color), @"Empty")]
+ public Color? DropDownArrowColor
+ {
+ get => _dropDownArrowColor;
+
+ set
+ {
+ if (_dropDownArrowColor != null)
+ {
+ _dropDownArrowColor = value;
+
+ PerformNeedPaint(true);
+ }
+ }
+ }
+
+ #endregion
+
#region CreateImageStates
///
/// Create the storage for the image states.
diff --git a/Source/Krypton Components/TestForm/Form1.Designer.cs b/Source/Krypton Components/TestForm/Form1.Designer.cs
index 12e324907..2dacd8355 100644
--- a/Source/Krypton Components/TestForm/Form1.Designer.cs
+++ b/Source/Krypton Components/TestForm/Form1.Designer.cs
@@ -28,517 +28,526 @@ protected override void Dispose(bool disposing)
///
private void InitializeComponent()
{
- components = new System.ComponentModel.Container();
+ this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
- kryptonPanel1 = new Krypton.Toolkit.KryptonPanel();
- kryptonButton9 = new Krypton.Toolkit.KryptonButton();
- kryptonButton5 = new Krypton.Toolkit.KryptonButton();
- kryptonButton8 = new Krypton.Toolkit.KryptonButton();
- kcbtnSizableToolWindow = new Krypton.Toolkit.KryptonCheckButton();
- kcbtnFixedToolWindow = new Krypton.Toolkit.KryptonCheckButton();
- kcbtnSizable = new Krypton.Toolkit.KryptonCheckButton();
- kcbtnFixedDialog = new Krypton.Toolkit.KryptonCheckButton();
- kcbtnFixed3D = new Krypton.Toolkit.KryptonCheckButton();
- kcbtnFixedSingle = new Krypton.Toolkit.KryptonCheckButton();
- kcbtnNone = new Krypton.Toolkit.KryptonCheckButton();
- kryptonButton7 = new Krypton.Toolkit.KryptonButton();
- kryptonButton6 = new Krypton.Toolkit.KryptonButton();
- kbtnExit = new Krypton.Toolkit.KryptonButton();
- kryptonButton4 = new Krypton.Toolkit.KryptonButton();
- kbtnVisualStudio2010Theme = new Krypton.Toolkit.KryptonButton();
- kchkUseProgressValueAsText = new Krypton.Toolkit.KryptonCheckBox();
- kryptonProgressBar1 = new Krypton.Toolkit.KryptonProgressBar();
- ktrkProgressValues = new Krypton.Toolkit.KryptonTrackBar();
- kryptonButton3 = new Krypton.Toolkit.KryptonButton();
- kbtnIntegratedToolbar = new Krypton.Toolkit.KryptonButton();
- kbtnTestMessagebox = new Krypton.Toolkit.KryptonButton();
- kryptonButton2 = new Krypton.Toolkit.KryptonButton();
- kryptonThemeComboBox1 = new Krypton.Toolkit.KryptonThemeComboBox();
- kryptonButton1 = new Krypton.Toolkit.KryptonButton();
- kryptonContextMenu1 = new Krypton.Toolkit.KryptonContextMenu();
- kryptonContextMenuItems1 = new Krypton.Toolkit.KryptonContextMenuItems();
- kryptonContextMenuItem1 = new Krypton.Toolkit.KryptonContextMenuItem();
- kryptonContextMenuItem2 = new Krypton.Toolkit.KryptonContextMenuItem();
- kryptonContextMenuItem3 = new Krypton.Toolkit.KryptonContextMenuItem();
- kryptonListBox1 = new Krypton.Toolkit.KryptonListBox();
- kryptonTextBox1 = new Krypton.Toolkit.KryptonTextBox();
- textBox1 = new System.Windows.Forms.TextBox();
- kryptonCustomPaletteBase1 = new Krypton.Toolkit.KryptonCustomPaletteBase(components);
- kcmdMessageboxTest = new Krypton.Toolkit.KryptonCommand();
- buttonSpecAny1 = new Krypton.Toolkit.ButtonSpecAny();
- buttonSpecAny2 = new Krypton.Toolkit.ButtonSpecAny();
- buttonSpecAny3 = new Krypton.Toolkit.ButtonSpecAny();
- buttonSpecAny4 = new Krypton.Toolkit.ButtonSpecAny();
- buttonSpecAny5 = new Krypton.Toolkit.ButtonSpecAny();
- buttonSpecAny6 = new Krypton.Toolkit.ButtonSpecAny();
- buttonSpecAny7 = new Krypton.Toolkit.ButtonSpecAny();
- buttonSpecAny8 = new Krypton.Toolkit.ButtonSpecAny();
- buttonSpecAny9 = new Krypton.Toolkit.ButtonSpecAny();
- buttonSpecAny10 = new Krypton.Toolkit.ButtonSpecAny();
- kryptonIntegratedToolbarPrintCommand1 = new Krypton.Toolkit.KryptonIntegratedToolbarPrintCommand();
- kryptonManager1 = new Krypton.Toolkit.KryptonManager(components);
- kryptonCheckSet1 = new Krypton.Toolkit.KryptonCheckSet(components);
- kryptonTaskDialog1 = new Krypton.Toolkit.KryptonTaskDialog();
- ((System.ComponentModel.ISupportInitialize)kryptonPanel1).BeginInit();
- kryptonPanel1.SuspendLayout();
- ((System.ComponentModel.ISupportInitialize)kryptonThemeComboBox1).BeginInit();
- ((System.ComponentModel.ISupportInitialize)kryptonCheckSet1).BeginInit();
- SuspendLayout();
+ this.kryptonPanel1 = new Krypton.Toolkit.KryptonPanel();
+ this.kryptonColorButton1 = new Krypton.Toolkit.KryptonColorButton();
+ this.kryptonButton9 = new Krypton.Toolkit.KryptonButton();
+ this.kryptonButton5 = new Krypton.Toolkit.KryptonButton();
+ this.kryptonButton8 = new Krypton.Toolkit.KryptonButton();
+ this.kcbtnSizableToolWindow = new Krypton.Toolkit.KryptonCheckButton();
+ this.kcbtnFixedToolWindow = new Krypton.Toolkit.KryptonCheckButton();
+ this.kcbtnSizable = new Krypton.Toolkit.KryptonCheckButton();
+ this.kcbtnFixedDialog = new Krypton.Toolkit.KryptonCheckButton();
+ this.kcbtnFixed3D = new Krypton.Toolkit.KryptonCheckButton();
+ this.kcbtnFixedSingle = new Krypton.Toolkit.KryptonCheckButton();
+ this.kcbtnNone = new Krypton.Toolkit.KryptonCheckButton();
+ this.kryptonButton7 = new Krypton.Toolkit.KryptonButton();
+ this.kryptonButton6 = new Krypton.Toolkit.KryptonButton();
+ this.kbtnExit = new Krypton.Toolkit.KryptonButton();
+ this.kryptonButton4 = new Krypton.Toolkit.KryptonButton();
+ this.kbtnVisualStudio2010Theme = new Krypton.Toolkit.KryptonButton();
+ this.kchkUseProgressValueAsText = new Krypton.Toolkit.KryptonCheckBox();
+ this.kryptonProgressBar1 = new Krypton.Toolkit.KryptonProgressBar();
+ this.ktrkProgressValues = new Krypton.Toolkit.KryptonTrackBar();
+ this.kryptonButton3 = new Krypton.Toolkit.KryptonButton();
+ this.kbtnIntegratedToolbar = new Krypton.Toolkit.KryptonButton();
+ this.kbtnTestMessagebox = new Krypton.Toolkit.KryptonButton();
+ this.kryptonButton2 = new Krypton.Toolkit.KryptonButton();
+ this.kryptonThemeComboBox1 = new Krypton.Toolkit.KryptonThemeComboBox();
+ this.kryptonButton1 = new Krypton.Toolkit.KryptonButton();
+ this.kryptonContextMenu1 = new Krypton.Toolkit.KryptonContextMenu();
+ this.kryptonContextMenuItems1 = new Krypton.Toolkit.KryptonContextMenuItems();
+ this.kryptonContextMenuItem1 = new Krypton.Toolkit.KryptonContextMenuItem();
+ this.kryptonContextMenuItem2 = new Krypton.Toolkit.KryptonContextMenuItem();
+ this.kryptonContextMenuItem3 = new Krypton.Toolkit.KryptonContextMenuItem();
+ this.kryptonListBox1 = new Krypton.Toolkit.KryptonListBox();
+ this.kryptonTextBox1 = new Krypton.Toolkit.KryptonTextBox();
+ this.textBox1 = new System.Windows.Forms.TextBox();
+ this.kryptonCustomPaletteBase1 = new Krypton.Toolkit.KryptonCustomPaletteBase(this.components);
+ this.kcmdMessageboxTest = new Krypton.Toolkit.KryptonCommand();
+ this.buttonSpecAny1 = new Krypton.Toolkit.ButtonSpecAny();
+ this.buttonSpecAny2 = new Krypton.Toolkit.ButtonSpecAny();
+ this.buttonSpecAny3 = new Krypton.Toolkit.ButtonSpecAny();
+ this.buttonSpecAny4 = new Krypton.Toolkit.ButtonSpecAny();
+ this.buttonSpecAny5 = new Krypton.Toolkit.ButtonSpecAny();
+ this.buttonSpecAny6 = new Krypton.Toolkit.ButtonSpecAny();
+ this.buttonSpecAny7 = new Krypton.Toolkit.ButtonSpecAny();
+ this.buttonSpecAny8 = new Krypton.Toolkit.ButtonSpecAny();
+ this.buttonSpecAny9 = new Krypton.Toolkit.ButtonSpecAny();
+ this.buttonSpecAny10 = new Krypton.Toolkit.ButtonSpecAny();
+ this.kryptonIntegratedToolbarPrintCommand1 = new Krypton.Toolkit.KryptonIntegratedToolbarPrintCommand();
+ this.kryptonManager1 = new Krypton.Toolkit.KryptonManager(this.components);
+ this.kryptonCheckSet1 = new Krypton.Toolkit.KryptonCheckSet(this.components);
+ this.kryptonTaskDialog1 = new Krypton.Toolkit.KryptonTaskDialog();
+ ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).BeginInit();
+ this.kryptonPanel1.SuspendLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.kryptonThemeComboBox1)).BeginInit();
+ ((System.ComponentModel.ISupportInitialize)(this.kryptonCheckSet1)).BeginInit();
+ this.SuspendLayout();
//
// kryptonPanel1
//
- kryptonPanel1.Controls.Add(kryptonButton9);
- kryptonPanel1.Controls.Add(kryptonButton5);
- kryptonPanel1.Controls.Add(kryptonButton8);
- kryptonPanel1.Controls.Add(kcbtnSizableToolWindow);
- kryptonPanel1.Controls.Add(kcbtnFixedToolWindow);
- kryptonPanel1.Controls.Add(kcbtnSizable);
- kryptonPanel1.Controls.Add(kcbtnFixedDialog);
- kryptonPanel1.Controls.Add(kcbtnFixed3D);
- kryptonPanel1.Controls.Add(kcbtnFixedSingle);
- kryptonPanel1.Controls.Add(kcbtnNone);
- kryptonPanel1.Controls.Add(kryptonButton7);
- kryptonPanel1.Controls.Add(kryptonButton6);
- kryptonPanel1.Controls.Add(kbtnExit);
- kryptonPanel1.Controls.Add(kryptonButton4);
- kryptonPanel1.Controls.Add(kbtnVisualStudio2010Theme);
- kryptonPanel1.Controls.Add(kchkUseProgressValueAsText);
- kryptonPanel1.Controls.Add(kryptonProgressBar1);
- kryptonPanel1.Controls.Add(ktrkProgressValues);
- kryptonPanel1.Controls.Add(kryptonButton3);
- kryptonPanel1.Controls.Add(kbtnIntegratedToolbar);
- kryptonPanel1.Controls.Add(kbtnTestMessagebox);
- kryptonPanel1.Controls.Add(kryptonButton2);
- kryptonPanel1.Controls.Add(kryptonThemeComboBox1);
- kryptonPanel1.Controls.Add(kryptonButton1);
- kryptonPanel1.Controls.Add(kryptonListBox1);
- kryptonPanel1.Controls.Add(kryptonTextBox1);
- kryptonPanel1.Controls.Add(textBox1);
- kryptonPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
- kryptonPanel1.Location = new System.Drawing.Point(0, 0);
- kryptonPanel1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- kryptonPanel1.Name = "kryptonPanel1";
- kryptonPanel1.Size = new System.Drawing.Size(1483, 926);
- kryptonPanel1.TabIndex = 0;
+ this.kryptonPanel1.Controls.Add(this.kryptonColorButton1);
+ this.kryptonPanel1.Controls.Add(this.kryptonButton9);
+ this.kryptonPanel1.Controls.Add(this.kryptonButton5);
+ this.kryptonPanel1.Controls.Add(this.kryptonButton8);
+ this.kryptonPanel1.Controls.Add(this.kcbtnSizableToolWindow);
+ this.kryptonPanel1.Controls.Add(this.kcbtnFixedToolWindow);
+ this.kryptonPanel1.Controls.Add(this.kcbtnSizable);
+ this.kryptonPanel1.Controls.Add(this.kcbtnFixedDialog);
+ this.kryptonPanel1.Controls.Add(this.kcbtnFixed3D);
+ this.kryptonPanel1.Controls.Add(this.kcbtnFixedSingle);
+ this.kryptonPanel1.Controls.Add(this.kcbtnNone);
+ this.kryptonPanel1.Controls.Add(this.kryptonButton7);
+ this.kryptonPanel1.Controls.Add(this.kryptonButton6);
+ this.kryptonPanel1.Controls.Add(this.kbtnExit);
+ this.kryptonPanel1.Controls.Add(this.kryptonButton4);
+ this.kryptonPanel1.Controls.Add(this.kbtnVisualStudio2010Theme);
+ this.kryptonPanel1.Controls.Add(this.kchkUseProgressValueAsText);
+ this.kryptonPanel1.Controls.Add(this.kryptonProgressBar1);
+ this.kryptonPanel1.Controls.Add(this.ktrkProgressValues);
+ this.kryptonPanel1.Controls.Add(this.kryptonButton3);
+ this.kryptonPanel1.Controls.Add(this.kbtnIntegratedToolbar);
+ this.kryptonPanel1.Controls.Add(this.kbtnTestMessagebox);
+ this.kryptonPanel1.Controls.Add(this.kryptonButton2);
+ this.kryptonPanel1.Controls.Add(this.kryptonThemeComboBox1);
+ this.kryptonPanel1.Controls.Add(this.kryptonButton1);
+ this.kryptonPanel1.Controls.Add(this.kryptonListBox1);
+ this.kryptonPanel1.Controls.Add(this.kryptonTextBox1);
+ this.kryptonPanel1.Controls.Add(this.textBox1);
+ this.kryptonPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.kryptonPanel1.Location = new System.Drawing.Point(0, 0);
+ this.kryptonPanel1.Margin = new System.Windows.Forms.Padding(2);
+ this.kryptonPanel1.Name = "kryptonPanel1";
+ this.kryptonPanel1.Size = new System.Drawing.Size(1112, 752);
+ this.kryptonPanel1.TabIndex = 0;
+ //
+ // kryptonColorButton1
+ //
+ this.kryptonColorButton1.Location = new System.Drawing.Point(204, 132);
+ this.kryptonColorButton1.Name = "kryptonColorButton1";
+ this.kryptonColorButton1.Size = new System.Drawing.Size(188, 25);
+ this.kryptonColorButton1.TabIndex = 35;
+ this.kryptonColorButton1.Values.Image = ((System.Drawing.Image)(resources.GetObject("kryptonColorButton1.Values.Image")));
+ this.kryptonColorButton1.Values.Text = "Drop Down Arrow Color";
+ this.kryptonColorButton1.SelectedColorChanged += new System.EventHandler(this.kryptonColorButton1_SelectedColorChanged);
//
// kryptonButton9
//
- kryptonButton9.Location = new System.Drawing.Point(20, 511);
- kryptonButton9.Margin = new System.Windows.Forms.Padding(4);
- kryptonButton9.Name = "kryptonButton9";
- kryptonButton9.Size = new System.Drawing.Size(244, 31);
- kryptonButton9.TabIndex = 34;
- kryptonButton9.Values.Text = "Command Links";
- kryptonButton9.Click += kryptonButton9_Click;
+ this.kryptonButton9.Location = new System.Drawing.Point(15, 415);
+ this.kryptonButton9.Name = "kryptonButton9";
+ this.kryptonButton9.Size = new System.Drawing.Size(183, 25);
+ this.kryptonButton9.TabIndex = 34;
+ this.kryptonButton9.Values.DropDownArrowColor = System.Drawing.Color.Empty;
+ this.kryptonButton9.Values.Text = "Command Links";
+ this.kryptonButton9.Click += new System.EventHandler(this.kryptonButton9_Click);
//
// kryptonButton5
//
- kryptonButton5.Location = new System.Drawing.Point(20, 473);
- kryptonButton5.Margin = new System.Windows.Forms.Padding(4);
- kryptonButton5.Name = "kryptonButton5";
- kryptonButton5.Size = new System.Drawing.Size(244, 31);
- kryptonButton5.TabIndex = 33;
- kryptonButton5.Values.Text = "Task Dialog";
- kryptonButton5.Click += kryptonButton5_Click;
+ this.kryptonButton5.Location = new System.Drawing.Point(15, 384);
+ this.kryptonButton5.Name = "kryptonButton5";
+ this.kryptonButton5.Size = new System.Drawing.Size(183, 25);
+ this.kryptonButton5.TabIndex = 33;
+ this.kryptonButton5.Values.DropDownArrowColor = System.Drawing.Color.Empty;
+ this.kryptonButton5.Values.Text = "Task Dialog";
+ this.kryptonButton5.Click += new System.EventHandler(this.kryptonButton5_Click);
//
// kryptonButton8
//
- kryptonButton8.Location = new System.Drawing.Point(20, 434);
- kryptonButton8.Margin = new System.Windows.Forms.Padding(4);
- kryptonButton8.Name = "kryptonButton8";
- kryptonButton8.Size = new System.Drawing.Size(244, 31);
- kryptonButton8.TabIndex = 32;
- kryptonButton8.Values.Text = "About Box";
- kryptonButton8.Click += kryptonButton8_Click;
+ this.kryptonButton8.Location = new System.Drawing.Point(15, 353);
+ this.kryptonButton8.Name = "kryptonButton8";
+ this.kryptonButton8.Size = new System.Drawing.Size(183, 25);
+ this.kryptonButton8.TabIndex = 32;
+ this.kryptonButton8.Values.DropDownArrowColor = System.Drawing.Color.Empty;
+ this.kryptonButton8.Values.Text = "About Box";
+ this.kryptonButton8.Click += new System.EventHandler(this.kryptonButton8_Click);
//
// kcbtnSizableToolWindow
//
- kcbtnSizableToolWindow.Anchor = System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left;
- kcbtnSizableToolWindow.Location = new System.Drawing.Point(19, 880);
- kcbtnSizableToolWindow.Margin = new System.Windows.Forms.Padding(4);
- kcbtnSizableToolWindow.Name = "kcbtnSizableToolWindow";
- kcbtnSizableToolWindow.Size = new System.Drawing.Size(188, 31);
- kcbtnSizableToolWindow.TabIndex = 31;
- kcbtnSizableToolWindow.Values.Text = "SizableToolWindow";
- kcbtnSizableToolWindow.Click += kcbtnSizableToolWindow_Click;
+ this.kcbtnSizableToolWindow.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
+ this.kcbtnSizableToolWindow.Location = new System.Drawing.Point(14, 715);
+ this.kcbtnSizableToolWindow.Name = "kcbtnSizableToolWindow";
+ this.kcbtnSizableToolWindow.Size = new System.Drawing.Size(141, 25);
+ this.kcbtnSizableToolWindow.TabIndex = 31;
+ this.kcbtnSizableToolWindow.Values.DropDownArrowColor = System.Drawing.Color.Empty;
+ this.kcbtnSizableToolWindow.Values.Text = "SizableToolWindow";
+ this.kcbtnSizableToolWindow.Click += new System.EventHandler(this.kcbtnSizableToolWindow_Click);
//
// kcbtnFixedToolWindow
//
- kcbtnFixedToolWindow.Anchor = System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left;
- kcbtnFixedToolWindow.Location = new System.Drawing.Point(411, 841);
- kcbtnFixedToolWindow.Margin = new System.Windows.Forms.Padding(4);
- kcbtnFixedToolWindow.Name = "kcbtnFixedToolWindow";
- kcbtnFixedToolWindow.Size = new System.Drawing.Size(188, 31);
- kcbtnFixedToolWindow.TabIndex = 30;
- kcbtnFixedToolWindow.Values.Text = "FixedToolWindow";
- kcbtnFixedToolWindow.Click += kcbtnFixedToolWindow_Click;
+ this.kcbtnFixedToolWindow.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
+ this.kcbtnFixedToolWindow.Location = new System.Drawing.Point(308, 683);
+ this.kcbtnFixedToolWindow.Name = "kcbtnFixedToolWindow";
+ this.kcbtnFixedToolWindow.Size = new System.Drawing.Size(141, 25);
+ this.kcbtnFixedToolWindow.TabIndex = 30;
+ this.kcbtnFixedToolWindow.Values.DropDownArrowColor = System.Drawing.Color.Empty;
+ this.kcbtnFixedToolWindow.Values.Text = "FixedToolWindow";
+ this.kcbtnFixedToolWindow.Click += new System.EventHandler(this.kcbtnFixedToolWindow_Click);
//
// kcbtnSizable
//
- kcbtnSizable.Anchor = System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left;
- kcbtnSizable.Location = new System.Drawing.Point(215, 841);
- kcbtnSizable.Margin = new System.Windows.Forms.Padding(4);
- kcbtnSizable.Name = "kcbtnSizable";
- kcbtnSizable.Size = new System.Drawing.Size(188, 31);
- kcbtnSizable.TabIndex = 29;
- kcbtnSizable.Values.Text = "Sizable";
- kcbtnSizable.Click += kcbtnSizable_Click;
+ this.kcbtnSizable.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
+ this.kcbtnSizable.Location = new System.Drawing.Point(161, 683);
+ this.kcbtnSizable.Name = "kcbtnSizable";
+ this.kcbtnSizable.Size = new System.Drawing.Size(141, 25);
+ this.kcbtnSizable.TabIndex = 29;
+ this.kcbtnSizable.Values.DropDownArrowColor = System.Drawing.Color.Empty;
+ this.kcbtnSizable.Values.Text = "Sizable";
+ this.kcbtnSizable.Click += new System.EventHandler(this.kcbtnSizable_Click);
//
// kcbtnFixedDialog
//
- kcbtnFixedDialog.Anchor = System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left;
- kcbtnFixedDialog.Location = new System.Drawing.Point(19, 841);
- kcbtnFixedDialog.Margin = new System.Windows.Forms.Padding(4);
- kcbtnFixedDialog.Name = "kcbtnFixedDialog";
- kcbtnFixedDialog.Size = new System.Drawing.Size(188, 31);
- kcbtnFixedDialog.TabIndex = 28;
- kcbtnFixedDialog.Values.Text = "FixedDialog";
- kcbtnFixedDialog.Click += kcbtnFixedDialog_Click;
+ this.kcbtnFixedDialog.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
+ this.kcbtnFixedDialog.Location = new System.Drawing.Point(14, 683);
+ this.kcbtnFixedDialog.Name = "kcbtnFixedDialog";
+ this.kcbtnFixedDialog.Size = new System.Drawing.Size(141, 25);
+ this.kcbtnFixedDialog.TabIndex = 28;
+ this.kcbtnFixedDialog.Values.DropDownArrowColor = System.Drawing.Color.Empty;
+ this.kcbtnFixedDialog.Values.Text = "FixedDialog";
+ this.kcbtnFixedDialog.Click += new System.EventHandler(this.kcbtnFixedDialog_Click);
//
// kcbtnFixed3D
//
- kcbtnFixed3D.Anchor = System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left;
- kcbtnFixed3D.Location = new System.Drawing.Point(411, 801);
- kcbtnFixed3D.Margin = new System.Windows.Forms.Padding(4);
- kcbtnFixed3D.Name = "kcbtnFixed3D";
- kcbtnFixed3D.Size = new System.Drawing.Size(188, 31);
- kcbtnFixed3D.TabIndex = 27;
- kcbtnFixed3D.Values.Text = "Fixed3D";
- kcbtnFixed3D.Click += kcbtnFixed3D_Click;
+ this.kcbtnFixed3D.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
+ this.kcbtnFixed3D.Location = new System.Drawing.Point(308, 651);
+ this.kcbtnFixed3D.Name = "kcbtnFixed3D";
+ this.kcbtnFixed3D.Size = new System.Drawing.Size(141, 25);
+ this.kcbtnFixed3D.TabIndex = 27;
+ this.kcbtnFixed3D.Values.DropDownArrowColor = System.Drawing.Color.Empty;
+ this.kcbtnFixed3D.Values.Text = "Fixed3D";
+ this.kcbtnFixed3D.Click += new System.EventHandler(this.kcbtnFixed3D_Click);
//
// kcbtnFixedSingle
//
- kcbtnFixedSingle.Anchor = System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left;
- kcbtnFixedSingle.Location = new System.Drawing.Point(215, 801);
- kcbtnFixedSingle.Margin = new System.Windows.Forms.Padding(4);
- kcbtnFixedSingle.Name = "kcbtnFixedSingle";
- kcbtnFixedSingle.Size = new System.Drawing.Size(188, 31);
- kcbtnFixedSingle.TabIndex = 26;
- kcbtnFixedSingle.Values.Text = "FixedSingle";
- kcbtnFixedSingle.Click += kcbtnFixedSingle_Click;
+ this.kcbtnFixedSingle.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
+ this.kcbtnFixedSingle.Location = new System.Drawing.Point(161, 651);
+ this.kcbtnFixedSingle.Name = "kcbtnFixedSingle";
+ this.kcbtnFixedSingle.Size = new System.Drawing.Size(141, 25);
+ this.kcbtnFixedSingle.TabIndex = 26;
+ this.kcbtnFixedSingle.Values.DropDownArrowColor = System.Drawing.Color.Empty;
+ this.kcbtnFixedSingle.Values.Text = "FixedSingle";
+ this.kcbtnFixedSingle.Click += new System.EventHandler(this.kcbtnFixedSingle_Click);
//
// kcbtnNone
//
- kcbtnNone.Anchor = System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left;
- kcbtnNone.Location = new System.Drawing.Point(19, 801);
- kcbtnNone.Margin = new System.Windows.Forms.Padding(4);
- kcbtnNone.Name = "kcbtnNone";
- kcbtnNone.Size = new System.Drawing.Size(188, 31);
- kcbtnNone.TabIndex = 25;
- kcbtnNone.Values.Text = "None";
- kcbtnNone.Click += kcbtnNone_Click;
+ this.kcbtnNone.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
+ this.kcbtnNone.Location = new System.Drawing.Point(14, 651);
+ this.kcbtnNone.Name = "kcbtnNone";
+ this.kcbtnNone.Size = new System.Drawing.Size(141, 25);
+ this.kcbtnNone.TabIndex = 25;
+ this.kcbtnNone.Values.DropDownArrowColor = System.Drawing.Color.Empty;
+ this.kcbtnNone.Values.Text = "None";
+ this.kcbtnNone.Click += new System.EventHandler(this.kcbtnNone_Click);
//
// kryptonButton7
//
- kryptonButton7.Anchor = System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right;
- kryptonButton7.Location = new System.Drawing.Point(1083, 561);
- kryptonButton7.Margin = new System.Windows.Forms.Padding(4);
- kryptonButton7.Name = "kryptonButton7";
- kryptonButton7.Size = new System.Drawing.Size(120, 31);
- kryptonButton7.TabIndex = 17;
- kryptonButton7.Values.Text = "Export";
- kryptonButton7.Click += kryptonButton7_Click;
+ this.kryptonButton7.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
+ this.kryptonButton7.Location = new System.Drawing.Point(812, 456);
+ this.kryptonButton7.Name = "kryptonButton7";
+ this.kryptonButton7.Size = new System.Drawing.Size(90, 25);
+ this.kryptonButton7.TabIndex = 17;
+ this.kryptonButton7.Values.DropDownArrowColor = System.Drawing.Color.Empty;
+ this.kryptonButton7.Values.Text = "Export";
//
// kryptonButton6
//
- kryptonButton6.Anchor = System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right;
- kryptonButton6.Location = new System.Drawing.Point(953, 561);
- kryptonButton6.Margin = new System.Windows.Forms.Padding(4);
- kryptonButton6.Name = "kryptonButton6";
- kryptonButton6.Size = new System.Drawing.Size(120, 31);
- kryptonButton6.TabIndex = 16;
- kryptonButton6.Values.Text = "Import";
- kryptonButton6.Click += kryptonButton6_Click;
+ this.kryptonButton6.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
+ this.kryptonButton6.Location = new System.Drawing.Point(715, 456);
+ this.kryptonButton6.Name = "kryptonButton6";
+ this.kryptonButton6.Size = new System.Drawing.Size(90, 25);
+ this.kryptonButton6.TabIndex = 16;
+ this.kryptonButton6.Values.DropDownArrowColor = System.Drawing.Color.Empty;
+ this.kryptonButton6.Values.Text = "Import";
//
// kbtnExit
//
- kbtnExit.Anchor = System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right;
- kbtnExit.Location = new System.Drawing.Point(1347, 880);
- kbtnExit.Margin = new System.Windows.Forms.Padding(4);
- kbtnExit.Name = "kbtnExit";
- kbtnExit.Size = new System.Drawing.Size(120, 31);
- kbtnExit.TabIndex = 15;
- kbtnExit.Values.Text = "Exit";
- kbtnExit.Click += kbtnExit_Click;
+ this.kbtnExit.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
+ this.kbtnExit.Location = new System.Drawing.Point(1010, 715);
+ this.kbtnExit.Name = "kbtnExit";
+ this.kbtnExit.Size = new System.Drawing.Size(90, 25);
+ this.kbtnExit.TabIndex = 15;
+ this.kbtnExit.Values.DropDownArrowColor = System.Drawing.Color.Empty;
+ this.kbtnExit.Values.Text = "Exit";
+ this.kbtnExit.Click += new System.EventHandler(this.kbtnExit_Click);
//
// kryptonButton4
//
- kryptonButton4.Location = new System.Drawing.Point(17, 240);
- kryptonButton4.Margin = new System.Windows.Forms.Padding(4);
- kryptonButton4.Name = "kryptonButton4";
- kryptonButton4.Size = new System.Drawing.Size(247, 31);
- kryptonButton4.TabIndex = 14;
- kryptonButton4.Values.Text = "Form 4";
- kryptonButton4.Click += kryptonButton4_Click;
+ this.kryptonButton4.Location = new System.Drawing.Point(13, 195);
+ this.kryptonButton4.Name = "kryptonButton4";
+ this.kryptonButton4.Size = new System.Drawing.Size(185, 25);
+ this.kryptonButton4.TabIndex = 14;
+ this.kryptonButton4.Values.DropDownArrowColor = System.Drawing.Color.Empty;
+ this.kryptonButton4.Values.Text = "Form 4";
+ this.kryptonButton4.Click += new System.EventHandler(this.kryptonButton4_Click);
//
// kbtnVisualStudio2010Theme
//
- kbtnVisualStudio2010Theme.Location = new System.Drawing.Point(19, 396);
- kbtnVisualStudio2010Theme.Margin = new System.Windows.Forms.Padding(4);
- kbtnVisualStudio2010Theme.Name = "kbtnVisualStudio2010Theme";
- kbtnVisualStudio2010Theme.Size = new System.Drawing.Size(245, 31);
- kbtnVisualStudio2010Theme.TabIndex = 13;
- kbtnVisualStudio2010Theme.Values.Text = "Visual Studio 2010 Theme (Form5)";
- kbtnVisualStudio2010Theme.Click += kbtnVisualStudio2010Theme_Click;
+ this.kbtnVisualStudio2010Theme.Location = new System.Drawing.Point(14, 322);
+ this.kbtnVisualStudio2010Theme.Name = "kbtnVisualStudio2010Theme";
+ this.kbtnVisualStudio2010Theme.Size = new System.Drawing.Size(184, 25);
+ this.kbtnVisualStudio2010Theme.TabIndex = 13;
+ this.kbtnVisualStudio2010Theme.Values.DropDownArrowColor = System.Drawing.Color.Empty;
+ this.kbtnVisualStudio2010Theme.Values.Text = "Visual Studio 2010 Theme (Form5)";
+ this.kbtnVisualStudio2010Theme.Click += new System.EventHandler(this.kbtnVisualStudio2010Theme_Click);
//
// kchkUseProgressValueAsText
//
- kchkUseProgressValueAsText.Anchor = System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right;
- kchkUseProgressValueAsText.Location = new System.Drawing.Point(970, 528);
- kchkUseProgressValueAsText.Margin = new System.Windows.Forms.Padding(4);
- kchkUseProgressValueAsText.Name = "kchkUseProgressValueAsText";
- kchkUseProgressValueAsText.Size = new System.Drawing.Size(202, 24);
- kchkUseProgressValueAsText.TabIndex = 12;
- kchkUseProgressValueAsText.Values.Text = "Use progress value as text";
- kchkUseProgressValueAsText.CheckedChanged += kchkUseProgressValueAsText_CheckedChanged;
+ this.kchkUseProgressValueAsText.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
+ this.kchkUseProgressValueAsText.Location = new System.Drawing.Point(714, 429);
+ this.kchkUseProgressValueAsText.Name = "kchkUseProgressValueAsText";
+ this.kchkUseProgressValueAsText.Size = new System.Drawing.Size(165, 20);
+ this.kchkUseProgressValueAsText.TabIndex = 12;
+ this.kchkUseProgressValueAsText.Values.Text = "Use progress value as text";
//
// kryptonProgressBar1
//
- kryptonProgressBar1.Anchor = System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right;
- kryptonProgressBar1.Location = new System.Drawing.Point(952, 487);
- kryptonProgressBar1.Margin = new System.Windows.Forms.Padding(4);
- kryptonProgressBar1.Name = "kryptonProgressBar1";
- kryptonProgressBar1.Size = new System.Drawing.Size(517, 32);
- kryptonProgressBar1.StateCommon.Back.Color1 = System.Drawing.Color.Green;
- kryptonProgressBar1.StateDisabled.Back.ColorStyle = Krypton.Toolkit.PaletteColorStyle.OneNote;
- kryptonProgressBar1.StateNormal.Back.ColorStyle = Krypton.Toolkit.PaletteColorStyle.OneNote;
- kryptonProgressBar1.TabIndex = 11;
- kryptonProgressBar1.Text = "kryptonProgressBar1";
- kryptonProgressBar1.Values.Text = "kryptonProgressBar1";
+ this.kryptonProgressBar1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
+ this.kryptonProgressBar1.Location = new System.Drawing.Point(714, 396);
+ this.kryptonProgressBar1.Name = "kryptonProgressBar1";
+ this.kryptonProgressBar1.Size = new System.Drawing.Size(388, 26);
+ this.kryptonProgressBar1.StateCommon.Back.Color1 = System.Drawing.Color.Green;
+ this.kryptonProgressBar1.StateDisabled.Back.ColorStyle = Krypton.Toolkit.PaletteColorStyle.OneNote;
+ this.kryptonProgressBar1.StateNormal.Back.ColorStyle = Krypton.Toolkit.PaletteColorStyle.OneNote;
+ this.kryptonProgressBar1.TabIndex = 11;
+ this.kryptonProgressBar1.Text = "kryptonProgressBar1";
+ this.kryptonProgressBar1.Values.Text = "kryptonProgressBar1";
//
// ktrkProgressValues
//
- ktrkProgressValues.Anchor = System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right;
- ktrkProgressValues.Location = new System.Drawing.Point(952, 446);
- ktrkProgressValues.Margin = new System.Windows.Forms.Padding(4);
- ktrkProgressValues.Maximum = 100;
- ktrkProgressValues.Name = "ktrkProgressValues";
- ktrkProgressValues.Size = new System.Drawing.Size(517, 33);
- ktrkProgressValues.TabIndex = 10;
- ktrkProgressValues.TickStyle = System.Windows.Forms.TickStyle.Both;
- ktrkProgressValues.ValueChanged += ktrkProgressValues_ValueChanged;
+ this.ktrkProgressValues.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
+ this.ktrkProgressValues.Location = new System.Drawing.Point(714, 362);
+ this.ktrkProgressValues.Maximum = 100;
+ this.ktrkProgressValues.Name = "ktrkProgressValues";
+ this.ktrkProgressValues.Size = new System.Drawing.Size(388, 33);
+ this.ktrkProgressValues.TabIndex = 10;
+ this.ktrkProgressValues.TickStyle = System.Windows.Forms.TickStyle.Both;
//
// kryptonButton3
//
- kryptonButton3.Location = new System.Drawing.Point(19, 357);
- kryptonButton3.Margin = new System.Windows.Forms.Padding(4);
- kryptonButton3.Name = "kryptonButton3";
- kryptonButton3.Size = new System.Drawing.Size(245, 31);
- kryptonButton3.TabIndex = 9;
- kryptonButton3.Values.Text = "ThemeBrowser Form";
- kryptonButton3.Click += kryptonButton3_Click;
+ this.kryptonButton3.Location = new System.Drawing.Point(14, 290);
+ this.kryptonButton3.Name = "kryptonButton3";
+ this.kryptonButton3.Size = new System.Drawing.Size(184, 25);
+ this.kryptonButton3.TabIndex = 9;
+ this.kryptonButton3.Values.DropDownArrowColor = System.Drawing.Color.Empty;
+ this.kryptonButton3.Values.Text = "ThemeBrowser Form";
+ this.kryptonButton3.Click += new System.EventHandler(this.kryptonButton3_Click);
//
// kbtnIntegratedToolbar
//
- kbtnIntegratedToolbar.Location = new System.Drawing.Point(19, 318);
- kbtnIntegratedToolbar.Margin = new System.Windows.Forms.Padding(4);
- kbtnIntegratedToolbar.Name = "kbtnIntegratedToolbar";
- kbtnIntegratedToolbar.Size = new System.Drawing.Size(245, 31);
- kbtnIntegratedToolbar.TabIndex = 8;
- kbtnIntegratedToolbar.Values.Text = "Integrated Toolbar (Form5)";
- kbtnIntegratedToolbar.Click += kbtnIntegratedToolbar_Click;
+ this.kbtnIntegratedToolbar.Location = new System.Drawing.Point(14, 258);
+ this.kbtnIntegratedToolbar.Name = "kbtnIntegratedToolbar";
+ this.kbtnIntegratedToolbar.Size = new System.Drawing.Size(184, 25);
+ this.kbtnIntegratedToolbar.TabIndex = 8;
+ this.kbtnIntegratedToolbar.Values.DropDownArrowColor = System.Drawing.Color.Empty;
+ this.kbtnIntegratedToolbar.Values.Text = "Integrated Toolbar (Form5)";
+ this.kbtnIntegratedToolbar.Click += new System.EventHandler(this.kbtnIntegratedToolbar_Click);
//
// kbtnTestMessagebox
//
- kbtnTestMessagebox.Location = new System.Drawing.Point(17, 279);
- kbtnTestMessagebox.Margin = new System.Windows.Forms.Padding(4);
- kbtnTestMessagebox.Name = "kbtnTestMessagebox";
- kbtnTestMessagebox.Size = new System.Drawing.Size(247, 31);
- kbtnTestMessagebox.TabIndex = 7;
- kbtnTestMessagebox.Values.Text = "Test Messagebox";
- kbtnTestMessagebox.Click += kbtnTestMessagebox_Click;
+ this.kbtnTestMessagebox.Location = new System.Drawing.Point(13, 227);
+ this.kbtnTestMessagebox.Name = "kbtnTestMessagebox";
+ this.kbtnTestMessagebox.Size = new System.Drawing.Size(185, 25);
+ this.kbtnTestMessagebox.TabIndex = 7;
+ this.kbtnTestMessagebox.Values.DropDownArrowColor = System.Drawing.Color.Empty;
+ this.kbtnTestMessagebox.Values.Text = "Test Messagebox";
+ this.kbtnTestMessagebox.Click += new System.EventHandler(this.kbtnTestMessagebox_Click);
//
// kryptonButton2
//
- kryptonButton2.Location = new System.Drawing.Point(17, 201);
- kryptonButton2.Margin = new System.Windows.Forms.Padding(4);
- kryptonButton2.Name = "kryptonButton2";
- kryptonButton2.Size = new System.Drawing.Size(247, 31);
- kryptonButton2.TabIndex = 6;
- kryptonButton2.Values.Image = (System.Drawing.Image)resources.GetObject("kryptonButton2.Values.Image");
- kryptonButton2.Values.Text = "Ribbon (Form3)";
- kryptonButton2.Values.UseAsUACElevationButton = true;
- kryptonButton2.Click += kryptonButton2_Click;
+ this.kryptonButton2.Location = new System.Drawing.Point(13, 163);
+ this.kryptonButton2.Name = "kryptonButton2";
+ this.kryptonButton2.Size = new System.Drawing.Size(185, 25);
+ this.kryptonButton2.TabIndex = 6;
+ this.kryptonButton2.Values.DropDownArrowColor = System.Drawing.Color.Empty;
+ this.kryptonButton2.Values.Image = ((System.Drawing.Image)(resources.GetObject("kryptonButton2.Values.Image")));
+ this.kryptonButton2.Values.Text = "Ribbon (Form3)";
+ this.kryptonButton2.Values.UseAsUACElevationButton = true;
+ this.kryptonButton2.Click += new System.EventHandler(this.kryptonButton2_Click);
//
// kryptonThemeComboBox1
//
- kryptonThemeComboBox1.DisplayMember = "Key";
- kryptonThemeComboBox1.DropDownWidth = 247;
- kryptonThemeComboBox1.IntegralHeight = false;
- kryptonThemeComboBox1.Location = new System.Drawing.Point(16, 15);
- kryptonThemeComboBox1.Margin = new System.Windows.Forms.Padding(4);
- kryptonThemeComboBox1.Name = "kryptonThemeComboBox1";
- kryptonThemeComboBox1.Size = new System.Drawing.Size(247, 25);
- kryptonThemeComboBox1.StateCommon.ComboBox.Border.DrawBorders = Krypton.Toolkit.PaletteDrawBorders.Top | Krypton.Toolkit.PaletteDrawBorders.Bottom | Krypton.Toolkit.PaletteDrawBorders.Left | Krypton.Toolkit.PaletteDrawBorders.Right;
- kryptonThemeComboBox1.StateCommon.ComboBox.Content.TextH = Krypton.Toolkit.PaletteRelativeAlign.Near;
- kryptonThemeComboBox1.TabIndex = 4;
- kryptonThemeComboBox1.ValueMember = "Value";
- kryptonThemeComboBox1.SelectedIndexChanged += kryptonThemeComboBox1_SelectedIndexChanged;
+ this.kryptonThemeComboBox1.DisplayMember = "Key";
+ this.kryptonThemeComboBox1.DropDownWidth = 185;
+ this.kryptonThemeComboBox1.IntegralHeight = false;
+ this.kryptonThemeComboBox1.Location = new System.Drawing.Point(12, 12);
+ this.kryptonThemeComboBox1.Name = "kryptonThemeComboBox1";
+ this.kryptonThemeComboBox1.Size = new System.Drawing.Size(185, 21);
+ this.kryptonThemeComboBox1.StateCommon.ComboBox.Border.DrawBorders = ((Krypton.Toolkit.PaletteDrawBorders)((((Krypton.Toolkit.PaletteDrawBorders.Top | Krypton.Toolkit.PaletteDrawBorders.Bottom)
+ | Krypton.Toolkit.PaletteDrawBorders.Left)
+ | Krypton.Toolkit.PaletteDrawBorders.Right)));
+ this.kryptonThemeComboBox1.StateCommon.ComboBox.Content.TextH = Krypton.Toolkit.PaletteRelativeAlign.Near;
+ this.kryptonThemeComboBox1.TabIndex = 4;
+ this.kryptonThemeComboBox1.ValueMember = "Value";
//
// kryptonButton1
//
- kryptonButton1.KryptonContextMenu = kryptonContextMenu1;
- kryptonButton1.Location = new System.Drawing.Point(16, 162);
- kryptonButton1.Margin = new System.Windows.Forms.Padding(4);
- kryptonButton1.Name = "kryptonButton1";
- kryptonButton1.Size = new System.Drawing.Size(247, 31);
- kryptonButton1.TabIndex = 5;
- kryptonButton1.Values.ShowSplitOption = true;
- kryptonButton1.Values.Text = "Button (form2)";
- kryptonButton1.Click += kryptonButton1_Click;
+ this.kryptonButton1.KryptonContextMenu = this.kryptonContextMenu1;
+ this.kryptonButton1.Location = new System.Drawing.Point(12, 132);
+ this.kryptonButton1.Name = "kryptonButton1";
+ this.kryptonButton1.Size = new System.Drawing.Size(185, 25);
+ this.kryptonButton1.TabIndex = 5;
+ this.kryptonButton1.Values.DropDownArrowColor = System.Drawing.Color.Empty;
+ this.kryptonButton1.Values.ShowSplitOption = true;
+ this.kryptonButton1.Values.Text = "Button (form2)";
+ this.kryptonButton1.Click += new System.EventHandler(this.kryptonButton1_Click);
//
// kryptonContextMenu1
//
- kryptonContextMenu1.Items.AddRange(new Krypton.Toolkit.KryptonContextMenuItemBase[] { kryptonContextMenuItems1 });
+ this.kryptonContextMenu1.Items.AddRange(new Krypton.Toolkit.KryptonContextMenuItemBase[] {
+ this.kryptonContextMenuItems1});
//
// kryptonContextMenuItems1
//
- kryptonContextMenuItems1.Items.AddRange(new Krypton.Toolkit.KryptonContextMenuItemBase[] { kryptonContextMenuItem1, kryptonContextMenuItem2, kryptonContextMenuItem3 });
+ this.kryptonContextMenuItems1.Items.AddRange(new Krypton.Toolkit.KryptonContextMenuItemBase[] {
+ this.kryptonContextMenuItem1,
+ this.kryptonContextMenuItem2,
+ this.kryptonContextMenuItem3});
//
// kryptonContextMenuItem1
//
- kryptonContextMenuItem1.Text = "Menu Item 1";
- kryptonContextMenuItem1.ToolTipValues.Description = "Multi lin Description:\r\n- Match thing 1\r\n- Match thing 2\r\n\r\nPlacement mode: Right";
- kryptonContextMenuItem1.ToolTipValues.EnableToolTips = true;
- kryptonContextMenuItem1.ToolTipValues.Heading = "Menu Tooltip Heading";
- kryptonContextMenuItem1.ToolTipValues.ToolTipPosition.PlacementMode = Krypton.Toolkit.PlacementMode.Right;
+ this.kryptonContextMenuItem1.Text = "Menu Item 1";
+ this.kryptonContextMenuItem1.ToolTipValues.Description = "Multi lin Description:\r\n- Match thing 1\r\n- Match thing 2\r\n\r\nPlacement mode: Right" +
+ "";
+ this.kryptonContextMenuItem1.ToolTipValues.EnableToolTips = true;
+ this.kryptonContextMenuItem1.ToolTipValues.Heading = "Menu Tooltip Heading";
+ this.kryptonContextMenuItem1.ToolTipValues.ToolTipPosition.PlacementMode = Krypton.Toolkit.PlacementMode.Right;
//
// kryptonContextMenuItem2
//
- kryptonContextMenuItem2.Text = "Menu Item 2";
+ this.kryptonContextMenuItem2.Text = "Menu Item 2";
//
// kryptonContextMenuItem3
//
- kryptonContextMenuItem3.Text = "Menu Item 3";
+ this.kryptonContextMenuItem3.Text = "Menu Item 3";
//
// kryptonListBox1
//
- kryptonListBox1.Anchor = System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right;
- kryptonListBox1.Location = new System.Drawing.Point(953, 11);
- kryptonListBox1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- kryptonListBox1.Name = "kryptonListBox1";
- kryptonListBox1.Size = new System.Drawing.Size(517, 426);
- kryptonListBox1.TabIndex = 2;
+ this.kryptonListBox1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
+ this.kryptonListBox1.Location = new System.Drawing.Point(715, 9);
+ this.kryptonListBox1.Margin = new System.Windows.Forms.Padding(2);
+ this.kryptonListBox1.Name = "kryptonListBox1";
+ this.kryptonListBox1.Size = new System.Drawing.Size(388, 346);
+ this.kryptonListBox1.TabIndex = 2;
//
// kryptonTextBox1
//
- kryptonTextBox1.Location = new System.Drawing.Point(77, 128);
- kryptonTextBox1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- kryptonTextBox1.Name = "kryptonTextBox1";
- kryptonTextBox1.Size = new System.Drawing.Size(100, 27);
- kryptonTextBox1.TabIndex = 1;
- kryptonTextBox1.Text = "kryptonTextBox1";
+ this.kryptonTextBox1.Location = new System.Drawing.Point(58, 104);
+ this.kryptonTextBox1.Margin = new System.Windows.Forms.Padding(2);
+ this.kryptonTextBox1.Name = "kryptonTextBox1";
+ this.kryptonTextBox1.Size = new System.Drawing.Size(75, 23);
+ this.kryptonTextBox1.TabIndex = 1;
+ this.kryptonTextBox1.Text = "kryptonTextBox1";
//
// textBox1
//
- textBox1.Location = new System.Drawing.Point(73, 60);
- textBox1.Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- textBox1.Name = "textBox1";
- textBox1.Size = new System.Drawing.Size(100, 22);
- textBox1.TabIndex = 0;
+ this.textBox1.Location = new System.Drawing.Point(55, 49);
+ this.textBox1.Margin = new System.Windows.Forms.Padding(2);
+ this.textBox1.Name = "textBox1";
+ this.textBox1.Size = new System.Drawing.Size(76, 20);
+ this.textBox1.TabIndex = 0;
//
// kryptonCustomPaletteBase1
//
- kryptonCustomPaletteBase1.BaseFont = new System.Drawing.Font("SimSun", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 0);
- kryptonCustomPaletteBase1.BasePaletteMode = Krypton.Toolkit.PaletteMode.Microsoft365Black;
- kryptonCustomPaletteBase1.BasePaletteType = Krypton.Toolkit.BasePaletteType.Microsoft365;
- kryptonCustomPaletteBase1.ThemeName = "";
- kryptonCustomPaletteBase1.UseKryptonFileDialogs = true;
+ this.kryptonCustomPaletteBase1.BasePaletteMode = Krypton.Toolkit.PaletteMode.Microsoft365Black;
+ this.kryptonCustomPaletteBase1.BasePaletteType = Krypton.Toolkit.BasePaletteType.Microsoft365;
+ this.kryptonCustomPaletteBase1.ThemeName = "";
+ this.kryptonCustomPaletteBase1.UseKryptonFileDialogs = true;
//
// kcmdMessageboxTest
//
- kcmdMessageboxTest.Text = "kryptonCommand1";
+ this.kcmdMessageboxTest.Text = "kryptonCommand1";
//
// buttonSpecAny1
//
- buttonSpecAny1.UniqueName = "dd7cce66eb3d4d97a9536f5d03a58dd5";
+ this.buttonSpecAny1.UniqueName = "dd7cce66eb3d4d97a9536f5d03a58dd5";
//
// buttonSpecAny2
//
- buttonSpecAny2.UniqueName = "01c062f324854832b96667cacd7d1a77";
+ this.buttonSpecAny2.UniqueName = "01c062f324854832b96667cacd7d1a77";
//
// buttonSpecAny3
//
- buttonSpecAny3.UniqueName = "be5331ab7c484486a10d7094d39cd05e";
+ this.buttonSpecAny3.UniqueName = "be5331ab7c484486a10d7094d39cd05e";
//
// buttonSpecAny4
//
- buttonSpecAny4.UniqueName = "e8dbb053058c44ed9c8f2b7c51ec1261";
+ this.buttonSpecAny4.UniqueName = "e8dbb053058c44ed9c8f2b7c51ec1261";
//
// buttonSpecAny5
//
- buttonSpecAny5.UniqueName = "abaa2bdd24704458afca577b2da97ed2";
+ this.buttonSpecAny5.UniqueName = "abaa2bdd24704458afca577b2da97ed2";
//
// buttonSpecAny6
//
- buttonSpecAny6.UniqueName = "17c90049490f478399fdad972722b324";
+ this.buttonSpecAny6.UniqueName = "17c90049490f478399fdad972722b324";
//
// buttonSpecAny7
//
- buttonSpecAny7.UniqueName = "8ec878c93ad347528009c3a5e4a71345";
+ this.buttonSpecAny7.UniqueName = "8ec878c93ad347528009c3a5e4a71345";
//
// buttonSpecAny8
//
- buttonSpecAny8.UniqueName = "1cd972225f3441b5ade70ac3c02d3949";
+ this.buttonSpecAny8.UniqueName = "1cd972225f3441b5ade70ac3c02d3949";
//
// buttonSpecAny9
//
- buttonSpecAny9.UniqueName = "1d2714d06d564ef580dff961d56d525a";
+ this.buttonSpecAny9.UniqueName = "1d2714d06d564ef580dff961d56d525a";
//
// buttonSpecAny10
//
- buttonSpecAny10.UniqueName = "8b3bf64a4cd7424d9479e809c7485ae7";
+ this.buttonSpecAny10.UniqueName = "8b3bf64a4cd7424d9479e809c7485ae7";
//
// kryptonIntegratedToolbarPrintCommand1
//
- kryptonIntegratedToolbarPrintCommand1.Text = "Print";
+ this.kryptonIntegratedToolbarPrintCommand1.Text = "Print";
//
// kryptonManager1
//
- kryptonManager1.GlobalPaletteMode = Krypton.Toolkit.PaletteMode.Microsoft365BlackDarkMode;
+ this.kryptonManager1.GlobalPaletteMode = Krypton.Toolkit.PaletteMode.Microsoft365BlackDarkMode;
//
// kryptonTaskDialog1
//
- kryptonTaskDialog1.CheckboxText = null;
- kryptonTaskDialog1.Content = "Hello World";
- kryptonTaskDialog1.DefaultRadioButton = null;
- kryptonTaskDialog1.FooterHyperlink = null;
- kryptonTaskDialog1.FooterText = null;
- kryptonTaskDialog1.Icon = Krypton.Toolkit.KryptonMessageBoxIcon.WindowsLogo;
- kryptonTaskDialog1.MainInstruction = "This is a test";
- kryptonTaskDialog1.TextExtra = "Ctrl+C to copy";
- kryptonTaskDialog1.UseNativeOSIcons = false;
- kryptonTaskDialog1.WindowTitle = null;
+ this.kryptonTaskDialog1.CheckboxText = null;
+ this.kryptonTaskDialog1.Content = "Hello World";
+ this.kryptonTaskDialog1.DefaultRadioButton = null;
+ this.kryptonTaskDialog1.FooterHyperlink = null;
+ this.kryptonTaskDialog1.FooterText = null;
+ this.kryptonTaskDialog1.Icon = Krypton.Toolkit.KryptonMessageBoxIcon.WindowsLogo;
+ this.kryptonTaskDialog1.MainInstruction = "This is a test";
+ this.kryptonTaskDialog1.TextExtra = "Ctrl+C to copy";
+ this.kryptonTaskDialog1.UseNativeOSIcons = false;
+ this.kryptonTaskDialog1.WindowTitle = null;
//
// Form1
//
- AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
- AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- ButtonSpecs.Add(buttonSpecAny1);
- ButtonSpecs.Add(buttonSpecAny2);
- ButtonSpecs.Add(buttonSpecAny3);
- ButtonSpecs.Add(buttonSpecAny4);
- ButtonSpecs.Add(buttonSpecAny5);
- ButtonSpecs.Add(buttonSpecAny6);
- ButtonSpecs.Add(buttonSpecAny7);
- ButtonSpecs.Add(buttonSpecAny8);
- ButtonSpecs.Add(buttonSpecAny9);
- ButtonSpecs.Add(buttonSpecAny10);
- ClientSize = new System.Drawing.Size(1483, 926);
- Controls.Add(kryptonPanel1);
- FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
- FormTitleAlign = Krypton.Toolkit.PaletteRelativeAlign.Inherit;
- Margin = new System.Windows.Forms.Padding(3, 2, 3, 2);
- Name = "Form1";
- Text = "Form1";
- WindowState = System.Windows.Forms.FormWindowState.Maximized;
- Load += Form1_Load;
- ((System.ComponentModel.ISupportInitialize)kryptonPanel1).EndInit();
- kryptonPanel1.ResumeLayout(false);
- kryptonPanel1.PerformLayout();
- ((System.ComponentModel.ISupportInitialize)kryptonThemeComboBox1).EndInit();
- ((System.ComponentModel.ISupportInitialize)kryptonCheckSet1).EndInit();
- ResumeLayout(false);
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.ButtonSpecs.Add(this.buttonSpecAny1);
+ this.ButtonSpecs.Add(this.buttonSpecAny2);
+ this.ButtonSpecs.Add(this.buttonSpecAny3);
+ this.ButtonSpecs.Add(this.buttonSpecAny4);
+ this.ButtonSpecs.Add(this.buttonSpecAny5);
+ this.ButtonSpecs.Add(this.buttonSpecAny6);
+ this.ButtonSpecs.Add(this.buttonSpecAny7);
+ this.ButtonSpecs.Add(this.buttonSpecAny8);
+ this.ButtonSpecs.Add(this.buttonSpecAny9);
+ this.ButtonSpecs.Add(this.buttonSpecAny10);
+ this.ClientSize = new System.Drawing.Size(1112, 752);
+ this.Controls.Add(this.kryptonPanel1);
+ this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
+ this.FormTitleAlign = Krypton.Toolkit.PaletteRelativeAlign.Inherit;
+ this.Margin = new System.Windows.Forms.Padding(2);
+ this.Name = "Form1";
+ this.Text = "Form1";
+ this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
+ ((System.ComponentModel.ISupportInitialize)(this.kryptonPanel1)).EndInit();
+ this.kryptonPanel1.ResumeLayout(false);
+ this.kryptonPanel1.PerformLayout();
+ ((System.ComponentModel.ISupportInitialize)(this.kryptonThemeComboBox1)).EndInit();
+ ((System.ComponentModel.ISupportInitialize)(this.kryptonCheckSet1)).EndInit();
+ this.ResumeLayout(false);
+
}
#endregion
@@ -592,5 +601,6 @@ private void InitializeComponent()
private Krypton.Toolkit.KryptonButton kryptonButton5;
private Krypton.Toolkit.KryptonTaskDialog kryptonTaskDialog1;
private Krypton.Toolkit.KryptonButton kryptonButton9;
+ private Krypton.Toolkit.KryptonColorButton kryptonColorButton1;
}
}
\ No newline at end of file
diff --git a/Source/Krypton Components/TestForm/Form1.cs b/Source/Krypton Components/TestForm/Form1.cs
index 344d8ca44..a7ec0fbb8 100644
--- a/Source/Krypton Components/TestForm/Form1.cs
+++ b/Source/Krypton Components/TestForm/Form1.cs
@@ -319,5 +319,10 @@ private void kryptonButton9_Click(object sender, EventArgs e)
commandLinks.ShowDialog();
}
+
+ private void kryptonColorButton1_SelectedColorChanged(object sender, ColorEventArgs e)
+ {
+ kryptonButton1.Values.DropDownArrowColor = e.Color;
+ }
}
}
\ No newline at end of file
diff --git a/Source/Krypton Components/TestForm/Form1.resx b/Source/Krypton Components/TestForm/Form1.resx
index f5bdb7edb..ad52b0779 100644
--- a/Source/Krypton Components/TestForm/Form1.resx
+++ b/Source/Krypton Components/TestForm/Form1.resx
@@ -1,17 +1,17 @@
-
@@ -118,22 +118,32 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAALGPC/xhBQAAAAlwSFlzAAAL
+ DwAACw8BkvkDpQAAAAd0SU1FB9gBBwMpBNNjwEAAAADzSURBVDhPnZGhCoUwFIYHgiD4AlbB5AuYfAGT
+ SRBMZsFkMhlMJkEQBIPVahJsstc6lzPYcG4X7m74wvl3zrcdRiilX1nXFVzXheu6QHeOaENOmqZACIG6
+ rs0FeKvv+0zgeR7c962VKAGnaRqoqgriOGaSvu/NBGEYwnEcMI4jE2Ct61MCZFkWiKJIDARBwCTzPCsS
+ qeAkSQJd14nmtm2ZANd59iFSgZznCbZts4E3lmXBvu+SRBpG8MvyPFduKoqCSbIs+y4YhgEcx4FpmhTB
+ tm3iFc/1RAPfk1OWpWh6nyGYSYJ/0YYmaEMTtKEJ2vB3KPkALW4yqONYazYAAAAASUVORK5CYII=
+
+
iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8
- 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
+ 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