diff --git a/Config/AppColors.cs b/Config/AppColors.cs index 8b7d1b8..4da5d00 100644 --- a/Config/AppColors.cs +++ b/Config/AppColors.cs @@ -76,6 +76,10 @@ namespace SystemTrayMenu public static Color DarkModeBackground { get; set; } + public static Color BackgroundBorder { get; set; } + + public static Color DarkModeBackgroundBorder { get; set; } + public static Color SearchField { get; set; } public static Color DarkModeSearchField { get; set; } diff --git a/Config/Config.cs b/Config/Config.cs index a29d223..548697b 100644 --- a/Config/Config.cs +++ b/Config/Config.cs @@ -264,6 +264,18 @@ namespace SystemTrayMenu Settings.Default.ColorDarkModeBackground = colorAndCode.HtmlColorCode; AppColors.DarkModeBackground = colorAndCode.Color; + colorAndCode.HtmlColorCode = Settings.Default.ColorBackgroundBorder; + colorAndCode.Color = Color.FromArgb(0, 0, 0); + colorAndCode = ProcessColorAndCode(converter, colorAndCode, ref changed); + Settings.Default.ColorBackgroundBorder = colorAndCode.HtmlColorCode; + AppColors.BackgroundBorder = colorAndCode.Color; + + colorAndCode.HtmlColorCode = Settings.Default.ColorDarkModeBackgroundBorder; + colorAndCode.Color = Color.FromArgb(0, 0, 0); + colorAndCode = ProcessColorAndCode(converter, colorAndCode, ref changed); + Settings.Default.ColorDarkModeBackgroundBorder = colorAndCode.HtmlColorCode; + AppColors.DarkModeBackgroundBorder = colorAndCode.Color; + colorAndCode.HtmlColorCode = Settings.Default.ColorArrow; colorAndCode.Color = Color.FromArgb(96, 96, 96); colorAndCode = ProcessColorAndCode(converter, colorAndCode, ref changed); diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs index 975baea..943d9df 100644 --- a/Properties/AssemblyInfo.cs +++ b/Properties/AssemblyInfo.cs @@ -39,5 +39,5 @@ using System.Runtime.InteropServices; // You can specify all the values or you can default the Build and Revision Numbers // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("1.0.17.67")] -[assembly: AssemblyFileVersion("1.0.17.67")] +[assembly: AssemblyVersion("1.0.17.68")] +[assembly: AssemblyFileVersion("1.0.17.68")] diff --git a/Properties/Settings.Designer.cs b/Properties/Settings.Designer.cs index 653f4df..b830110 100644 --- a/Properties/Settings.Designer.cs +++ b/Properties/Settings.Designer.cs @@ -523,6 +523,38 @@ namespace SystemTrayMenu.Properties } } + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("#000000")] + public string ColorBackgroundBorder + { + get + { + return ((string)(this["ColorBackgroundBorder"])); + } + set + { + this["ColorBackgroundBorder"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("#000000")] + public string ColorDarkModeBackgroundBorder + { + get + { + return ((string)(this["ColorDarkModeBackgroundBorder"])); + } + set + { + this["ColorDarkModeBackgroundBorder"] = value; + } + } + [global::System.Configuration.UserScopedSettingAttribute()] [global::System.Configuration.SettingsProviderAttribute(typeof(CustomSettingsProvider))] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] diff --git a/Resources/lang.Designer.cs b/Resources/lang.Designer.cs index 73c85f1..61185f1 100644 --- a/Resources/lang.Designer.cs +++ b/Resources/lang.Designer.cs @@ -150,6 +150,15 @@ namespace SystemTrayMenu.Resources { } } + /// + /// Looks up a localized string similar to Border of menu. + /// + internal static string Border_of_menu { + get { + return ResourceManager.GetString("Border of menu", resourceCulture); + } + } + /// /// Looks up a localized string similar to Border of opened folder. /// diff --git a/Resources/lang.cs-CZ.resx b/Resources/lang.cs-CZ.resx index 2d45a10..7c1335b 100644 --- a/Resources/lang.cs-CZ.resx +++ b/Resources/lang.cs-CZ.resx @@ -324,4 +324,7 @@ Velikost + + Hranice nabídky + \ No newline at end of file diff --git a/Resources/lang.de-DE.resx b/Resources/lang.de-DE.resx index 385ca10..3da9cd3 100644 --- a/Resources/lang.de-DE.resx +++ b/Resources/lang.de-DE.resx @@ -324,4 +324,7 @@ Größe + + Menürand + \ No newline at end of file diff --git a/Resources/lang.es-ES.resx b/Resources/lang.es-ES.resx index 6659325..9bc0377 100644 --- a/Resources/lang.es-ES.resx +++ b/Resources/lang.es-ES.resx @@ -324,4 +324,7 @@ Tamaño + + Borde del menú + \ No newline at end of file diff --git a/Resources/lang.fr-FR.resx b/Resources/lang.fr-FR.resx index cf7df24..803f1af 100644 --- a/Resources/lang.fr-FR.resx +++ b/Resources/lang.fr-FR.resx @@ -324,4 +324,7 @@ Taille + + Bordure de menu + \ No newline at end of file diff --git a/Resources/lang.it-IT.resx b/Resources/lang.it-IT.resx index fd896db..e701c78 100644 --- a/Resources/lang.it-IT.resx +++ b/Resources/lang.it-IT.resx @@ -324,4 +324,7 @@ Dimensione + + Bordo del menu + \ No newline at end of file diff --git a/Resources/lang.ja-JP.resx b/Resources/lang.ja-JP.resx index 02a0479..f3e5db3 100644 --- a/Resources/lang.ja-JP.resx +++ b/Resources/lang.ja-JP.resx @@ -324,4 +324,7 @@ サイズ + + メニューの境界 + \ No newline at end of file diff --git a/Resources/lang.ko-KR.resx b/Resources/lang.ko-KR.resx index 1e010e3..1c9ab25 100644 --- a/Resources/lang.ko-KR.resx +++ b/Resources/lang.ko-KR.resx @@ -324,4 +324,7 @@ 크기 + + 메뉴 테두리 + \ No newline at end of file diff --git a/Resources/lang.nl-NL.resx b/Resources/lang.nl-NL.resx index 57ae6e4..e1a3c89 100644 --- a/Resources/lang.nl-NL.resx +++ b/Resources/lang.nl-NL.resx @@ -324,4 +324,7 @@ Grootte + + Rand van menu + \ No newline at end of file diff --git a/Resources/lang.pt-BR.resx b/Resources/lang.pt-BR.resx index 73787c7..cdece56 100644 --- a/Resources/lang.pt-BR.resx +++ b/Resources/lang.pt-BR.resx @@ -324,4 +324,7 @@ Tamanho + + Borda do menu + \ No newline at end of file diff --git a/Resources/lang.resx b/Resources/lang.resx index 4457a11..7367d6a 100644 --- a/Resources/lang.resx +++ b/Resources/lang.resx @@ -324,4 +324,7 @@ Size + + Border of menu + \ No newline at end of file diff --git a/Resources/lang.ru-RU.resx b/Resources/lang.ru-RU.resx index 9c2bcc6..6f4b472 100644 --- a/Resources/lang.ru-RU.resx +++ b/Resources/lang.ru-RU.resx @@ -324,4 +324,7 @@ Размер + + Граница меню + \ No newline at end of file diff --git a/Resources/lang.vi-VN.resx b/Resources/lang.vi-VN.resx index e297386..a6186f3 100644 --- a/Resources/lang.vi-VN.resx +++ b/Resources/lang.vi-VN.resx @@ -324,4 +324,7 @@ Kích thước + + Đường viền của menu + \ No newline at end of file diff --git a/Resources/lang.zh-CN.resx b/Resources/lang.zh-CN.resx index 66dca0e..c1f21ca 100644 --- a/Resources/lang.zh-CN.resx +++ b/Resources/lang.zh-CN.resx @@ -324,4 +324,7 @@ 尺寸 + + 菜单边框 + \ No newline at end of file diff --git a/UserInterface/Menu.cs b/UserInterface/Menu.cs index 4657bb6..3500ad3 100644 --- a/UserInterface/Menu.cs +++ b/UserInterface/Menu.cs @@ -79,6 +79,7 @@ namespace SystemTrayMenu.UserInterface Color titleBackColor = AppColors.Title; Color backColor = AppColors.Background; Color backColorSearch = AppColors.SearchField; + Color backgroundBorder = AppColors.BackgroundBorder; if (Config.IsDarkMode()) { @@ -88,6 +89,7 @@ namespace SystemTrayMenu.UserInterface titleBackColor = AppColors.DarkModeTitle; backColor = AppColors.DarkModeBackground; backColorSearch = AppColors.DarkModeSearchField; + backgroundBorder = AppColors.DarkModeBackgroundBorder; } ColorConverter colorConverter = new ColorConverter(); @@ -99,6 +101,7 @@ namespace SystemTrayMenu.UserInterface backColor = Color.White; } + BackColor = backgroundBorder; tableLayoutPanelTitle.BackColor = titleBackColor; tableLayoutPanelDgvAndScrollbar.BackColor = backColor; dgv.BackgroundColor = backColor; diff --git a/UserInterface/SettingsForm.Designer.cs b/UserInterface/SettingsForm.Designer.cs index 0b61962..92f1f33 100644 --- a/UserInterface/SettingsForm.Designer.cs +++ b/UserInterface/SettingsForm.Designer.cs @@ -89,6 +89,10 @@ namespace SystemTrayMenu.UserInterface this.tableLayoutPanelCustomize = new System.Windows.Forms.TableLayoutPanel(); this.groupBoxColorsLightMode = new System.Windows.Forms.GroupBox(); this.tableLayoutPanelColorsAndDefault = new System.Windows.Forms.TableLayoutPanel(); + this.tableLayoutPanelBackgroundBorder = new System.Windows.Forms.TableLayoutPanel(); + this.pictureBoxBackgroundBorder = new System.Windows.Forms.PictureBox(); + this.textBoxColorBackgroundBorder = new System.Windows.Forms.TextBox(); + this.labelBackgroundBorder = new System.Windows.Forms.Label(); this.labelMenuLightMode = new System.Windows.Forms.Label(); this.tableLayoutPanelTitle = new System.Windows.Forms.TableLayoutPanel(); this.pictureBoxTitle = new System.Windows.Forms.PictureBox(); @@ -98,84 +102,80 @@ namespace SystemTrayMenu.UserInterface this.pictureBoxBackground = new System.Windows.Forms.PictureBox(); this.textBoxColorBackground = new System.Windows.Forms.TextBox(); this.labelBackground = new System.Windows.Forms.Label(); - this.tableLayoutPanelSearchField = new System.Windows.Forms.TableLayoutPanel(); - this.pictureBoxSearchField = new System.Windows.Forms.PictureBox(); - this.textBoxColorSearchField = new System.Windows.Forms.TextBox(); - this.labelSearchField = new System.Windows.Forms.Label(); - this.tableLayoutPanelOpenFolder = new System.Windows.Forms.TableLayoutPanel(); - this.pictureBoxOpenFolder = new System.Windows.Forms.PictureBox(); - this.textBoxColorOpenFolder = new System.Windows.Forms.TextBox(); - this.labelOpenFolder = new System.Windows.Forms.Label(); - this.tableLayoutPanelOpenFolderBorder = new System.Windows.Forms.TableLayoutPanel(); - this.pictureBoxOpenFolderBorder = new System.Windows.Forms.PictureBox(); - this.textBoxColorOpenFolderBorder = new System.Windows.Forms.TextBox(); - this.labelOpenFolderBorder = new System.Windows.Forms.Label(); - this.tableLayoutPanelSelectedItem = new System.Windows.Forms.TableLayoutPanel(); - this.pictureBoxSelectedItem = new System.Windows.Forms.PictureBox(); - this.textBoxColorSelectedItem = new System.Windows.Forms.TextBox(); - this.labelSelectedItem = new System.Windows.Forms.Label(); - this.tableLayoutPanelSelectedItemBorder = new System.Windows.Forms.TableLayoutPanel(); - this.pictureBoxSelectedItemBorder = new System.Windows.Forms.PictureBox(); - this.textBoxColorSelectedItemBorder = new System.Windows.Forms.TextBox(); - this.labelSelectedItemBorder = new System.Windows.Forms.Label(); - this.tableLayoutPanelWarning = new System.Windows.Forms.TableLayoutPanel(); - this.labelWarning = new System.Windows.Forms.Label(); - this.textBoxColorWarning = new System.Windows.Forms.TextBox(); - this.pictureBoxWarning = new System.Windows.Forms.PictureBox(); - this.labelScrollbarLightMode = new System.Windows.Forms.Label(); - this.tableLayoutPanelScrollbarBackground = new System.Windows.Forms.TableLayoutPanel(); - this.pictureBoxScrollbarBackground = new System.Windows.Forms.PictureBox(); - this.textBoxColorScrollbarBackground = new System.Windows.Forms.TextBox(); - this.labelScrollbarBackground = new System.Windows.Forms.Label(); - this.tableLayoutPanelSlider = new System.Windows.Forms.TableLayoutPanel(); - this.pictureBoxSlider = new System.Windows.Forms.PictureBox(); - this.textBoxColorSlider = new System.Windows.Forms.TextBox(); - this.labelSlider = new System.Windows.Forms.Label(); - this.tableLayoutPanelSliderDragging = new System.Windows.Forms.TableLayoutPanel(); - this.pictureBoxSliderDragging = new System.Windows.Forms.PictureBox(); - this.textBoxColorSliderDragging = new System.Windows.Forms.TextBox(); - this.labelSliderDragging = new System.Windows.Forms.Label(); - this.tableLayoutPanelSliderHover = new System.Windows.Forms.TableLayoutPanel(); - this.pictureBoxSliderHover = new System.Windows.Forms.PictureBox(); - this.textBoxColorSliderHover = new System.Windows.Forms.TextBox(); - this.labelSliderHover = new System.Windows.Forms.Label(); - this.tableLayoutPanelSliderArrowsAndTrackHover = new System.Windows.Forms.TableLayoutPanel(); - this.pictureBoxSliderArrowsAndTrackHover = new System.Windows.Forms.PictureBox(); - this.textBoxColorSliderArrowsAndTrackHover = new System.Windows.Forms.TextBox(); - this.labelSliderArrowsAndTrackHover = new System.Windows.Forms.Label(); - this.tableLayoutPanelArrow = new System.Windows.Forms.TableLayoutPanel(); - this.pictureBoxArrow = new System.Windows.Forms.PictureBox(); - this.textBoxColorArrow = new System.Windows.Forms.TextBox(); - this.labelArrow = new System.Windows.Forms.Label(); - this.tableLayoutPanelArrowClick = new System.Windows.Forms.TableLayoutPanel(); - this.pictureBoxArrowClick = new System.Windows.Forms.PictureBox(); - this.textBoxColorArrowClick = new System.Windows.Forms.TextBox(); - this.labelArrowClick = new System.Windows.Forms.Label(); - this.tableLayoutPanelArrowClickBackground = new System.Windows.Forms.TableLayoutPanel(); - this.pictureBoxArrowClickBackground = new System.Windows.Forms.PictureBox(); - this.textBoxColorArrowClickBackground = new System.Windows.Forms.TextBox(); - this.labelArrowClickBackground = new System.Windows.Forms.Label(); - this.tableLayoutPanelArrowHover = new System.Windows.Forms.TableLayoutPanel(); - this.pictureBoxArrowHover = new System.Windows.Forms.PictureBox(); - this.textBoxColorArrowHover = new System.Windows.Forms.TextBox(); - this.labelArrowHover = new System.Windows.Forms.Label(); + this.buttonColorsDefault = new System.Windows.Forms.Button(); this.tableLayoutPanelArrowHoverBackground = new System.Windows.Forms.TableLayoutPanel(); this.pictureBoxArrowHoverBackground = new System.Windows.Forms.PictureBox(); this.textBoxColorArrowHoverBackground = new System.Windows.Forms.TextBox(); this.labelArrowHoverBackground = new System.Windows.Forms.Label(); - this.buttonColorsDefault = new System.Windows.Forms.Button(); + this.tableLayoutPanelArrowHover = new System.Windows.Forms.TableLayoutPanel(); + this.pictureBoxArrowHover = new System.Windows.Forms.PictureBox(); + this.textBoxColorArrowHover = new System.Windows.Forms.TextBox(); + this.labelArrowHover = new System.Windows.Forms.Label(); + this.tableLayoutPanelArrowClickBackground = new System.Windows.Forms.TableLayoutPanel(); + this.pictureBoxArrowClickBackground = new System.Windows.Forms.PictureBox(); + this.textBoxColorArrowClickBackground = new System.Windows.Forms.TextBox(); + this.labelArrowClickBackground = new System.Windows.Forms.Label(); + this.tableLayoutPanelArrowClick = new System.Windows.Forms.TableLayoutPanel(); + this.pictureBoxArrowClick = new System.Windows.Forms.PictureBox(); + this.textBoxColorArrowClick = new System.Windows.Forms.TextBox(); + this.labelArrowClick = new System.Windows.Forms.Label(); + this.tableLayoutPanelArrow = new System.Windows.Forms.TableLayoutPanel(); + this.pictureBoxArrow = new System.Windows.Forms.PictureBox(); + this.textBoxColorArrow = new System.Windows.Forms.TextBox(); + this.labelArrow = new System.Windows.Forms.Label(); + this.tableLayoutPanelSliderArrowsAndTrackHover = new System.Windows.Forms.TableLayoutPanel(); + this.pictureBoxSliderArrowsAndTrackHover = new System.Windows.Forms.PictureBox(); + this.textBoxColorSliderArrowsAndTrackHover = new System.Windows.Forms.TextBox(); + this.labelSliderArrowsAndTrackHover = new System.Windows.Forms.Label(); + this.tableLayoutPanelSliderHover = new System.Windows.Forms.TableLayoutPanel(); + this.pictureBoxSliderHover = new System.Windows.Forms.PictureBox(); + this.textBoxColorSliderHover = new System.Windows.Forms.TextBox(); + this.labelSliderHover = new System.Windows.Forms.Label(); + this.tableLayoutPanelSliderDragging = new System.Windows.Forms.TableLayoutPanel(); + this.pictureBoxSliderDragging = new System.Windows.Forms.PictureBox(); + this.textBoxColorSliderDragging = new System.Windows.Forms.TextBox(); + this.labelSliderDragging = new System.Windows.Forms.Label(); + this.tableLayoutPanelSlider = new System.Windows.Forms.TableLayoutPanel(); + this.pictureBoxSlider = new System.Windows.Forms.PictureBox(); + this.textBoxColorSlider = new System.Windows.Forms.TextBox(); + this.labelSlider = new System.Windows.Forms.Label(); + this.tableLayoutPanelScrollbarBackground = new System.Windows.Forms.TableLayoutPanel(); + this.pictureBoxScrollbarBackground = new System.Windows.Forms.PictureBox(); + this.textBoxColorScrollbarBackground = new System.Windows.Forms.TextBox(); + this.labelScrollbarBackground = new System.Windows.Forms.Label(); + this.labelScrollbarLightMode = new System.Windows.Forms.Label(); + this.tableLayoutPanelWarning = new System.Windows.Forms.TableLayoutPanel(); + this.labelWarning = new System.Windows.Forms.Label(); + this.textBoxColorWarning = new System.Windows.Forms.TextBox(); + this.pictureBoxWarning = new System.Windows.Forms.PictureBox(); + this.tableLayoutPanelSelectedItemBorder = new System.Windows.Forms.TableLayoutPanel(); + this.pictureBoxSelectedItemBorder = new System.Windows.Forms.PictureBox(); + this.textBoxColorSelectedItemBorder = new System.Windows.Forms.TextBox(); + this.labelSelectedItemBorder = new System.Windows.Forms.Label(); + this.tableLayoutPanelSelectedItem = new System.Windows.Forms.TableLayoutPanel(); + this.pictureBoxSelectedItem = new System.Windows.Forms.PictureBox(); + this.textBoxColorSelectedItem = new System.Windows.Forms.TextBox(); + this.labelSelectedItem = new System.Windows.Forms.Label(); + this.tableLayoutPanelOpenFolderBorder = new System.Windows.Forms.TableLayoutPanel(); + this.pictureBoxOpenFolderBorder = new System.Windows.Forms.PictureBox(); + this.textBoxColorOpenFolderBorder = new System.Windows.Forms.TextBox(); + this.labelOpenFolderBorder = new System.Windows.Forms.Label(); + this.tableLayoutPanelOpenFolder = new System.Windows.Forms.TableLayoutPanel(); + this.pictureBoxOpenFolder = new System.Windows.Forms.PictureBox(); + this.textBoxColorOpenFolder = new System.Windows.Forms.TextBox(); + this.labelOpenFolder = new System.Windows.Forms.Label(); + this.tableLayoutPanelSearchField = new System.Windows.Forms.TableLayoutPanel(); + this.pictureBoxSearchField = new System.Windows.Forms.PictureBox(); + this.textBoxColorSearchField = new System.Windows.Forms.TextBox(); + this.labelSearchField = new System.Windows.Forms.Label(); this.groupBoxColorsDarkMode = new System.Windows.Forms.GroupBox(); this.tableLayoutPanelDarkMode = new System.Windows.Forms.TableLayoutPanel(); + this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel(); + this.pictureBoxBackgroundBorderDarkMode = new System.Windows.Forms.PictureBox(); + this.labelBackgroundBorderDarkMode = new System.Windows.Forms.Label(); + this.textBoxColorBackgroundBorderDarkMode = new System.Windows.Forms.TextBox(); this.checkBoxDarkModeAlwaysOn = new System.Windows.Forms.CheckBox(); this.labelMenuDarkMode = new System.Windows.Forms.Label(); - this.tableLayoutPanelTitleDarkMode = new System.Windows.Forms.TableLayoutPanel(); - this.pictureBoxTitleDarkMode = new System.Windows.Forms.PictureBox(); - this.labelTitleDarkMode = new System.Windows.Forms.Label(); - this.textBoxColorTitleDarkMode = new System.Windows.Forms.TextBox(); - this.tableLayoutPanelBackgroundDarkMode = new System.Windows.Forms.TableLayoutPanel(); - this.pictureBoxBackgroundDarkMode = new System.Windows.Forms.PictureBox(); - this.labelBackgroundDarkMode = new System.Windows.Forms.Label(); - this.textBoxColorBackgroundDarkMode = new System.Windows.Forms.TextBox(); this.tableLayoutPanelSearchFieldDarkMode = new System.Windows.Forms.TableLayoutPanel(); this.pictureBoxSearchFieldDarkMode = new System.Windows.Forms.PictureBox(); this.labelSearchFieldDarkMode = new System.Windows.Forms.Label(); @@ -242,6 +242,14 @@ namespace SystemTrayMenu.UserInterface this.textBoxColorArrowHoverBackgroundDarkMode = new System.Windows.Forms.TextBox(); this.labelColorDarkModeArrowHoverBackground = new System.Windows.Forms.Label(); this.buttonColorsDefaultDarkMode = new System.Windows.Forms.Button(); + this.tableLayoutPanelTitleDarkMode = new System.Windows.Forms.TableLayoutPanel(); + this.pictureBoxTitleDarkMode = new System.Windows.Forms.PictureBox(); + this.labelTitleDarkMode = new System.Windows.Forms.Label(); + this.textBoxColorTitleDarkMode = new System.Windows.Forms.TextBox(); + this.tableLayoutPanelBackgroundDarkMode = new System.Windows.Forms.TableLayoutPanel(); + this.pictureBoxBackgroundDarkMode = new System.Windows.Forms.PictureBox(); + this.labelBackgroundDarkMode = new System.Windows.Forms.Label(); + this.textBoxColorBackgroundDarkMode = new System.Windows.Forms.TextBox(); this.tableLayoutPanelBottom = new System.Windows.Forms.TableLayoutPanel(); this.buttonOk = new System.Windows.Forms.Button(); this.buttonCancel = new System.Windows.Forms.Button(); @@ -285,48 +293,48 @@ namespace SystemTrayMenu.UserInterface this.tableLayoutPanelCustomize.SuspendLayout(); this.groupBoxColorsLightMode.SuspendLayout(); this.tableLayoutPanelColorsAndDefault.SuspendLayout(); + this.tableLayoutPanelBackgroundBorder.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxBackgroundBorder)).BeginInit(); this.tableLayoutPanelTitle.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBoxTitle)).BeginInit(); this.tableLayoutPanelBackground.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBoxBackground)).BeginInit(); - this.tableLayoutPanelSearchField.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBoxSearchField)).BeginInit(); - this.tableLayoutPanelOpenFolder.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBoxOpenFolder)).BeginInit(); - this.tableLayoutPanelOpenFolderBorder.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBoxOpenFolderBorder)).BeginInit(); - this.tableLayoutPanelSelectedItem.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBoxSelectedItem)).BeginInit(); - this.tableLayoutPanelSelectedItemBorder.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBoxSelectedItemBorder)).BeginInit(); - this.tableLayoutPanelWarning.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBoxWarning)).BeginInit(); - this.tableLayoutPanelScrollbarBackground.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBoxScrollbarBackground)).BeginInit(); - this.tableLayoutPanelSlider.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBoxSlider)).BeginInit(); - this.tableLayoutPanelSliderDragging.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBoxSliderDragging)).BeginInit(); - this.tableLayoutPanelSliderHover.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBoxSliderHover)).BeginInit(); - this.tableLayoutPanelSliderArrowsAndTrackHover.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBoxSliderArrowsAndTrackHover)).BeginInit(); - this.tableLayoutPanelArrow.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBoxArrow)).BeginInit(); - this.tableLayoutPanelArrowClick.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBoxArrowClick)).BeginInit(); - this.tableLayoutPanelArrowClickBackground.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBoxArrowClickBackground)).BeginInit(); - this.tableLayoutPanelArrowHover.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBoxArrowHover)).BeginInit(); this.tableLayoutPanelArrowHoverBackground.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBoxArrowHoverBackground)).BeginInit(); + this.tableLayoutPanelArrowHover.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxArrowHover)).BeginInit(); + this.tableLayoutPanelArrowClickBackground.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxArrowClickBackground)).BeginInit(); + this.tableLayoutPanelArrowClick.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxArrowClick)).BeginInit(); + this.tableLayoutPanelArrow.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxArrow)).BeginInit(); + this.tableLayoutPanelSliderArrowsAndTrackHover.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxSliderArrowsAndTrackHover)).BeginInit(); + this.tableLayoutPanelSliderHover.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxSliderHover)).BeginInit(); + this.tableLayoutPanelSliderDragging.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxSliderDragging)).BeginInit(); + this.tableLayoutPanelSlider.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxSlider)).BeginInit(); + this.tableLayoutPanelScrollbarBackground.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxScrollbarBackground)).BeginInit(); + this.tableLayoutPanelWarning.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxWarning)).BeginInit(); + this.tableLayoutPanelSelectedItemBorder.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxSelectedItemBorder)).BeginInit(); + this.tableLayoutPanelSelectedItem.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxSelectedItem)).BeginInit(); + this.tableLayoutPanelOpenFolderBorder.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxOpenFolderBorder)).BeginInit(); + this.tableLayoutPanelOpenFolder.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxOpenFolder)).BeginInit(); + this.tableLayoutPanelSearchField.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxSearchField)).BeginInit(); this.groupBoxColorsDarkMode.SuspendLayout(); this.tableLayoutPanelDarkMode.SuspendLayout(); - this.tableLayoutPanelTitleDarkMode.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBoxTitleDarkMode)).BeginInit(); - this.tableLayoutPanelBackgroundDarkMode.SuspendLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBoxBackgroundDarkMode)).BeginInit(); + this.tableLayoutPanel3.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxBackgroundBorderDarkMode)).BeginInit(); this.tableLayoutPanelSearchFieldDarkMode.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBoxSearchFieldDarkMode)).BeginInit(); this.tableLayoutPanelOpenFolderDarkMode.SuspendLayout(); @@ -359,6 +367,10 @@ namespace SystemTrayMenu.UserInterface ((System.ComponentModel.ISupportInitialize)(this.pictureBoxArrowHoverDarkMode)).BeginInit(); this.tableLayoutPanelArrowHoverBackgroundDarkMode.SuspendLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBoxArrowHoverBackgroundDarkMode)).BeginInit(); + this.tableLayoutPanelTitleDarkMode.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxTitleDarkMode)).BeginInit(); + this.tableLayoutPanelBackgroundDarkMode.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxBackgroundDarkMode)).BeginInit(); this.tableLayoutPanelBottom.SuspendLayout(); this.SuspendLayout(); // @@ -386,7 +398,7 @@ namespace SystemTrayMenu.UserInterface this.tabControl.Location = new System.Drawing.Point(6, 3); this.tabControl.Margin = new System.Windows.Forms.Padding(6, 3, 6, 3); this.tabControl.Name = "tabControl"; - this.tabControl.SelectedIndex = 1; + this.tabControl.SelectedIndex = 2; this.tabControl.Size = new System.Drawing.Size(422, 441); this.tabControl.TabIndex = 0; // @@ -1154,12 +1166,12 @@ namespace SystemTrayMenu.UserInterface this.tableLayoutPanelCustomize.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); this.tableLayoutPanelCustomize.Controls.Add(this.groupBoxColorsLightMode, 0, 0); this.tableLayoutPanelCustomize.Controls.Add(this.groupBoxColorsDarkMode, 0, 1); - this.tableLayoutPanelCustomize.Location = new System.Drawing.Point(3, 3); + this.tableLayoutPanelCustomize.Location = new System.Drawing.Point(0, 0); this.tableLayoutPanelCustomize.Name = "tableLayoutPanelCustomize"; this.tableLayoutPanelCustomize.RowCount = 2; this.tableLayoutPanelCustomize.RowStyles.Add(new System.Windows.Forms.RowStyle()); this.tableLayoutPanelCustomize.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanelCustomize.Size = new System.Drawing.Size(391, 1247); + this.tableLayoutPanelCustomize.Size = new System.Drawing.Size(391, 1305); this.tableLayoutPanelCustomize.TabIndex = 0; // // groupBoxColorsLightMode @@ -1171,7 +1183,7 @@ namespace SystemTrayMenu.UserInterface this.groupBoxColorsLightMode.MaximumSize = new System.Drawing.Size(385, 0); this.groupBoxColorsLightMode.MinimumSize = new System.Drawing.Size(385, 0); this.groupBoxColorsLightMode.Name = "groupBoxColorsLightMode"; - this.groupBoxColorsLightMode.Size = new System.Drawing.Size(385, 605); + this.groupBoxColorsLightMode.Size = new System.Drawing.Size(385, 634); this.groupBoxColorsLightMode.TabIndex = 0; this.groupBoxColorsLightMode.TabStop = false; this.groupBoxColorsLightMode.Text = "groupBoxColorsLightMode"; @@ -1182,31 +1194,32 @@ namespace SystemTrayMenu.UserInterface this.tableLayoutPanelColorsAndDefault.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; this.tableLayoutPanelColorsAndDefault.ColumnCount = 1; this.tableLayoutPanelColorsAndDefault.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 444F)); + this.tableLayoutPanelColorsAndDefault.Controls.Add(this.tableLayoutPanelBackgroundBorder, 0, 3); this.tableLayoutPanelColorsAndDefault.Controls.Add(this.labelMenuLightMode, 0, 0); this.tableLayoutPanelColorsAndDefault.Controls.Add(this.tableLayoutPanelTitle, 0, 1); this.tableLayoutPanelColorsAndDefault.Controls.Add(this.tableLayoutPanelBackground, 0, 2); - this.tableLayoutPanelColorsAndDefault.Controls.Add(this.tableLayoutPanelSearchField, 0, 3); - this.tableLayoutPanelColorsAndDefault.Controls.Add(this.tableLayoutPanelOpenFolder, 0, 4); - this.tableLayoutPanelColorsAndDefault.Controls.Add(this.tableLayoutPanelOpenFolderBorder, 0, 5); - this.tableLayoutPanelColorsAndDefault.Controls.Add(this.tableLayoutPanelSelectedItem, 0, 6); - this.tableLayoutPanelColorsAndDefault.Controls.Add(this.tableLayoutPanelSelectedItemBorder, 0, 7); - this.tableLayoutPanelColorsAndDefault.Controls.Add(this.tableLayoutPanelWarning, 0, 8); - this.tableLayoutPanelColorsAndDefault.Controls.Add(this.labelScrollbarLightMode, 0, 9); - this.tableLayoutPanelColorsAndDefault.Controls.Add(this.tableLayoutPanelScrollbarBackground, 0, 10); - this.tableLayoutPanelColorsAndDefault.Controls.Add(this.tableLayoutPanelSlider, 0, 11); - this.tableLayoutPanelColorsAndDefault.Controls.Add(this.tableLayoutPanelSliderDragging, 0, 12); - this.tableLayoutPanelColorsAndDefault.Controls.Add(this.tableLayoutPanelSliderHover, 0, 13); - this.tableLayoutPanelColorsAndDefault.Controls.Add(this.tableLayoutPanelSliderArrowsAndTrackHover, 0, 14); - this.tableLayoutPanelColorsAndDefault.Controls.Add(this.tableLayoutPanelArrow, 0, 15); - this.tableLayoutPanelColorsAndDefault.Controls.Add(this.tableLayoutPanelArrowClick, 0, 16); - this.tableLayoutPanelColorsAndDefault.Controls.Add(this.tableLayoutPanelArrowClickBackground, 0, 17); - this.tableLayoutPanelColorsAndDefault.Controls.Add(this.tableLayoutPanelArrowHover, 0, 18); - this.tableLayoutPanelColorsAndDefault.Controls.Add(this.tableLayoutPanelArrowHoverBackground, 0, 19); - this.tableLayoutPanelColorsAndDefault.Controls.Add(this.buttonColorsDefault, 0, 20); + this.tableLayoutPanelColorsAndDefault.Controls.Add(this.buttonColorsDefault, 0, 21); + this.tableLayoutPanelColorsAndDefault.Controls.Add(this.tableLayoutPanelArrowHoverBackground, 0, 20); + this.tableLayoutPanelColorsAndDefault.Controls.Add(this.tableLayoutPanelArrowHover, 0, 19); + this.tableLayoutPanelColorsAndDefault.Controls.Add(this.tableLayoutPanelArrowClickBackground, 0, 18); + this.tableLayoutPanelColorsAndDefault.Controls.Add(this.tableLayoutPanelArrowClick, 0, 17); + this.tableLayoutPanelColorsAndDefault.Controls.Add(this.tableLayoutPanelArrow, 0, 16); + this.tableLayoutPanelColorsAndDefault.Controls.Add(this.tableLayoutPanelSliderArrowsAndTrackHover, 0, 15); + this.tableLayoutPanelColorsAndDefault.Controls.Add(this.tableLayoutPanelSliderHover, 0, 14); + this.tableLayoutPanelColorsAndDefault.Controls.Add(this.tableLayoutPanelSliderDragging, 0, 13); + this.tableLayoutPanelColorsAndDefault.Controls.Add(this.tableLayoutPanelSlider, 0, 12); + this.tableLayoutPanelColorsAndDefault.Controls.Add(this.tableLayoutPanelScrollbarBackground, 0, 11); + this.tableLayoutPanelColorsAndDefault.Controls.Add(this.labelScrollbarLightMode, 0, 10); + this.tableLayoutPanelColorsAndDefault.Controls.Add(this.tableLayoutPanelWarning, 0, 9); + this.tableLayoutPanelColorsAndDefault.Controls.Add(this.tableLayoutPanelSelectedItemBorder, 0, 8); + this.tableLayoutPanelColorsAndDefault.Controls.Add(this.tableLayoutPanelSelectedItem, 0, 7); + this.tableLayoutPanelColorsAndDefault.Controls.Add(this.tableLayoutPanelOpenFolderBorder, 0, 6); + this.tableLayoutPanelColorsAndDefault.Controls.Add(this.tableLayoutPanelOpenFolder, 0, 5); + this.tableLayoutPanelColorsAndDefault.Controls.Add(this.tableLayoutPanelSearchField, 0, 4); this.tableLayoutPanelColorsAndDefault.Dock = System.Windows.Forms.DockStyle.Fill; this.tableLayoutPanelColorsAndDefault.Location = new System.Drawing.Point(3, 19); this.tableLayoutPanelColorsAndDefault.Name = "tableLayoutPanelColorsAndDefault"; - this.tableLayoutPanelColorsAndDefault.RowCount = 21; + this.tableLayoutPanelColorsAndDefault.RowCount = 22; this.tableLayoutPanelColorsAndDefault.RowStyles.Add(new System.Windows.Forms.RowStyle()); this.tableLayoutPanelColorsAndDefault.RowStyles.Add(new System.Windows.Forms.RowStyle()); this.tableLayoutPanelColorsAndDefault.RowStyles.Add(new System.Windows.Forms.RowStyle()); @@ -1228,9 +1241,64 @@ namespace SystemTrayMenu.UserInterface this.tableLayoutPanelColorsAndDefault.RowStyles.Add(new System.Windows.Forms.RowStyle()); this.tableLayoutPanelColorsAndDefault.RowStyles.Add(new System.Windows.Forms.RowStyle()); this.tableLayoutPanelColorsAndDefault.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanelColorsAndDefault.Size = new System.Drawing.Size(379, 583); + this.tableLayoutPanelColorsAndDefault.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanelColorsAndDefault.Size = new System.Drawing.Size(379, 612); this.tableLayoutPanelColorsAndDefault.TabIndex = 0; // + // tableLayoutPanelBackgroundBorder + // + this.tableLayoutPanelBackgroundBorder.AutoSize = true; + this.tableLayoutPanelBackgroundBorder.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.tableLayoutPanelBackgroundBorder.ColumnCount = 3; + this.tableLayoutPanelBackgroundBorder.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelBackgroundBorder.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelBackgroundBorder.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); + this.tableLayoutPanelBackgroundBorder.Controls.Add(this.pictureBoxBackgroundBorder, 0, 0); + this.tableLayoutPanelBackgroundBorder.Controls.Add(this.textBoxColorBackgroundBorder, 1, 0); + this.tableLayoutPanelBackgroundBorder.Controls.Add(this.labelBackgroundBorder, 2, 0); + this.tableLayoutPanelBackgroundBorder.Location = new System.Drawing.Point(3, 76); + this.tableLayoutPanelBackgroundBorder.Name = "tableLayoutPanelBackgroundBorder"; + this.tableLayoutPanelBackgroundBorder.RowCount = 1; + this.tableLayoutPanelBackgroundBorder.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanelBackgroundBorder.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 23F)); + this.tableLayoutPanelBackgroundBorder.Size = new System.Drawing.Size(229, 23); + this.tableLayoutPanelBackgroundBorder.TabIndex = 2; + // + // pictureBoxBackgroundBorder + // + this.pictureBoxBackgroundBorder.BackColor = System.Drawing.Color.White; + this.pictureBoxBackgroundBorder.Cursor = System.Windows.Forms.Cursors.Hand; + this.pictureBoxBackgroundBorder.Location = new System.Drawing.Point(0, 0); + this.pictureBoxBackgroundBorder.Margin = new System.Windows.Forms.Padding(0); + this.pictureBoxBackgroundBorder.Name = "pictureBoxBackgroundBorder"; + this.pictureBoxBackgroundBorder.Size = new System.Drawing.Size(23, 23); + this.pictureBoxBackgroundBorder.TabIndex = 1; + this.pictureBoxBackgroundBorder.TabStop = false; + this.pictureBoxBackgroundBorder.Click += new System.EventHandler(this.PictureBoxClick); + // + // textBoxColorBackgroundBorder + // + this.textBoxColorBackgroundBorder.Location = new System.Drawing.Point(23, 0); + this.textBoxColorBackgroundBorder.Margin = new System.Windows.Forms.Padding(0); + this.textBoxColorBackgroundBorder.MaxLength = 12; + this.textBoxColorBackgroundBorder.Name = "textBoxColorBackgroundBorder"; + this.textBoxColorBackgroundBorder.Size = new System.Drawing.Size(69, 23); + this.textBoxColorBackgroundBorder.TabIndex = 2; + this.textBoxColorBackgroundBorder.Text = "#ffffff"; + this.textBoxColorBackgroundBorder.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); + this.textBoxColorBackgroundBorder.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); + this.textBoxColorBackgroundBorder.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); + // + // labelBackgroundBorder + // + this.labelBackgroundBorder.Anchor = System.Windows.Forms.AnchorStyles.Left; + this.labelBackgroundBorder.AutoSize = true; + this.labelBackgroundBorder.Location = new System.Drawing.Point(95, 4); + this.labelBackgroundBorder.Name = "labelBackgroundBorder"; + this.labelBackgroundBorder.Size = new System.Drawing.Size(131, 15); + this.labelBackgroundBorder.TabIndex = 0; + this.labelBackgroundBorder.Text = "labelBackgroundBorder"; + // // labelMenuLightMode // this.labelMenuLightMode.AutoSize = true; @@ -1308,6 +1376,7 @@ namespace SystemTrayMenu.UserInterface this.tableLayoutPanelBackground.Name = "tableLayoutPanelBackground"; this.tableLayoutPanelBackground.RowCount = 1; this.tableLayoutPanelBackground.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanelBackground.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 23F)); this.tableLayoutPanelBackground.Size = new System.Drawing.Size(194, 23); this.tableLayoutPanelBackground.TabIndex = 2; // @@ -1346,809 +1415,18 @@ namespace SystemTrayMenu.UserInterface this.labelBackground.TabIndex = 0; this.labelBackground.Text = "labelBackground"; // - // tableLayoutPanelSearchField - // - this.tableLayoutPanelSearchField.AutoSize = true; - this.tableLayoutPanelSearchField.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; - this.tableLayoutPanelSearchField.ColumnCount = 3; - this.tableLayoutPanelSearchField.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelSearchField.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelSearchField.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); - this.tableLayoutPanelSearchField.Controls.Add(this.pictureBoxSearchField, 0, 0); - this.tableLayoutPanelSearchField.Controls.Add(this.textBoxColorSearchField, 1, 0); - this.tableLayoutPanelSearchField.Controls.Add(this.labelSearchField, 2, 0); - this.tableLayoutPanelSearchField.Location = new System.Drawing.Point(3, 76); - this.tableLayoutPanelSearchField.Name = "tableLayoutPanelSearchField"; - this.tableLayoutPanelSearchField.RowCount = 1; - this.tableLayoutPanelSearchField.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanelSearchField.Size = new System.Drawing.Size(190, 23); - this.tableLayoutPanelSearchField.TabIndex = 2; - // - // pictureBoxSearchField - // - this.pictureBoxSearchField.BackColor = System.Drawing.Color.White; - this.pictureBoxSearchField.Cursor = System.Windows.Forms.Cursors.Hand; - this.pictureBoxSearchField.Location = new System.Drawing.Point(0, 0); - this.pictureBoxSearchField.Margin = new System.Windows.Forms.Padding(0); - this.pictureBoxSearchField.Name = "pictureBoxSearchField"; - this.pictureBoxSearchField.Size = new System.Drawing.Size(23, 23); - this.pictureBoxSearchField.TabIndex = 1; - this.pictureBoxSearchField.TabStop = false; - this.pictureBoxSearchField.Click += new System.EventHandler(this.PictureBoxClick); - // - // textBoxColorSearchField - // - this.textBoxColorSearchField.Location = new System.Drawing.Point(23, 0); - this.textBoxColorSearchField.Margin = new System.Windows.Forms.Padding(0); - this.textBoxColorSearchField.MaxLength = 12; - this.textBoxColorSearchField.Name = "textBoxColorSearchField"; - this.textBoxColorSearchField.Size = new System.Drawing.Size(69, 23); - this.textBoxColorSearchField.TabIndex = 2; - this.textBoxColorSearchField.Text = "#ffffff"; - this.textBoxColorSearchField.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); - this.textBoxColorSearchField.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); - this.textBoxColorSearchField.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); - // - // labelSearchField - // - this.labelSearchField.Anchor = System.Windows.Forms.AnchorStyles.Left; - this.labelSearchField.AutoSize = true; - this.labelSearchField.Location = new System.Drawing.Point(95, 4); - this.labelSearchField.Name = "labelSearchField"; - this.labelSearchField.Size = new System.Drawing.Size(92, 15); - this.labelSearchField.TabIndex = 0; - this.labelSearchField.Text = "labelSearchField"; - // - // tableLayoutPanelOpenFolder - // - this.tableLayoutPanelOpenFolder.AutoSize = true; - this.tableLayoutPanelOpenFolder.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; - this.tableLayoutPanelOpenFolder.ColumnCount = 3; - this.tableLayoutPanelOpenFolder.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelOpenFolder.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelOpenFolder.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); - this.tableLayoutPanelOpenFolder.Controls.Add(this.pictureBoxOpenFolder, 0, 0); - this.tableLayoutPanelOpenFolder.Controls.Add(this.textBoxColorOpenFolder, 1, 0); - this.tableLayoutPanelOpenFolder.Controls.Add(this.labelOpenFolder, 2, 0); - this.tableLayoutPanelOpenFolder.Location = new System.Drawing.Point(3, 105); - this.tableLayoutPanelOpenFolder.Name = "tableLayoutPanelOpenFolder"; - this.tableLayoutPanelOpenFolder.RowCount = 1; - this.tableLayoutPanelOpenFolder.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanelOpenFolder.Size = new System.Drawing.Size(192, 23); - this.tableLayoutPanelOpenFolder.TabIndex = 2; - // - // pictureBoxOpenFolder - // - this.pictureBoxOpenFolder.BackColor = System.Drawing.Color.White; - this.pictureBoxOpenFolder.Cursor = System.Windows.Forms.Cursors.Hand; - this.pictureBoxOpenFolder.Location = new System.Drawing.Point(0, 0); - this.pictureBoxOpenFolder.Margin = new System.Windows.Forms.Padding(0); - this.pictureBoxOpenFolder.Name = "pictureBoxOpenFolder"; - this.pictureBoxOpenFolder.Size = new System.Drawing.Size(23, 23); - this.pictureBoxOpenFolder.TabIndex = 1; - this.pictureBoxOpenFolder.TabStop = false; - this.pictureBoxOpenFolder.Click += new System.EventHandler(this.PictureBoxClick); - // - // textBoxColorOpenFolder - // - this.textBoxColorOpenFolder.Location = new System.Drawing.Point(23, 0); - this.textBoxColorOpenFolder.Margin = new System.Windows.Forms.Padding(0); - this.textBoxColorOpenFolder.MaxLength = 12; - this.textBoxColorOpenFolder.Name = "textBoxColorOpenFolder"; - this.textBoxColorOpenFolder.Size = new System.Drawing.Size(69, 23); - this.textBoxColorOpenFolder.TabIndex = 2; - this.textBoxColorOpenFolder.Text = "#ffffff"; - this.textBoxColorOpenFolder.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); - this.textBoxColorOpenFolder.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); - this.textBoxColorOpenFolder.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); - // - // labelOpenFolder - // - this.labelOpenFolder.Anchor = System.Windows.Forms.AnchorStyles.Left; - this.labelOpenFolder.AutoSize = true; - this.labelOpenFolder.Location = new System.Drawing.Point(95, 4); - this.labelOpenFolder.Name = "labelOpenFolder"; - this.labelOpenFolder.Size = new System.Drawing.Size(94, 15); - this.labelOpenFolder.TabIndex = 0; - this.labelOpenFolder.Text = "labelOpenFolder"; - // - // tableLayoutPanelOpenFolderBorder - // - this.tableLayoutPanelOpenFolderBorder.AutoSize = true; - this.tableLayoutPanelOpenFolderBorder.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; - this.tableLayoutPanelOpenFolderBorder.ColumnCount = 3; - this.tableLayoutPanelOpenFolderBorder.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelOpenFolderBorder.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelOpenFolderBorder.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); - this.tableLayoutPanelOpenFolderBorder.Controls.Add(this.pictureBoxOpenFolderBorder, 0, 0); - this.tableLayoutPanelOpenFolderBorder.Controls.Add(this.textBoxColorOpenFolderBorder, 1, 0); - this.tableLayoutPanelOpenFolderBorder.Controls.Add(this.labelOpenFolderBorder, 2, 0); - this.tableLayoutPanelOpenFolderBorder.Location = new System.Drawing.Point(3, 134); - this.tableLayoutPanelOpenFolderBorder.Name = "tableLayoutPanelOpenFolderBorder"; - this.tableLayoutPanelOpenFolderBorder.RowCount = 1; - this.tableLayoutPanelOpenFolderBorder.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanelOpenFolderBorder.Size = new System.Drawing.Size(227, 23); - this.tableLayoutPanelOpenFolderBorder.TabIndex = 2; - // - // pictureBoxOpenFolderBorder - // - this.pictureBoxOpenFolderBorder.BackColor = System.Drawing.Color.White; - this.pictureBoxOpenFolderBorder.Cursor = System.Windows.Forms.Cursors.Hand; - this.pictureBoxOpenFolderBorder.Location = new System.Drawing.Point(0, 0); - this.pictureBoxOpenFolderBorder.Margin = new System.Windows.Forms.Padding(0); - this.pictureBoxOpenFolderBorder.Name = "pictureBoxOpenFolderBorder"; - this.pictureBoxOpenFolderBorder.Size = new System.Drawing.Size(23, 23); - this.pictureBoxOpenFolderBorder.TabIndex = 1; - this.pictureBoxOpenFolderBorder.TabStop = false; - this.pictureBoxOpenFolderBorder.Click += new System.EventHandler(this.PictureBoxClick); - // - // textBoxColorOpenFolderBorder - // - this.textBoxColorOpenFolderBorder.Location = new System.Drawing.Point(23, 0); - this.textBoxColorOpenFolderBorder.Margin = new System.Windows.Forms.Padding(0); - this.textBoxColorOpenFolderBorder.Name = "textBoxColorOpenFolderBorder"; - this.textBoxColorOpenFolderBorder.Size = new System.Drawing.Size(69, 23); - this.textBoxColorOpenFolderBorder.TabIndex = 2; - this.textBoxColorOpenFolderBorder.Text = "#ffffff"; - this.textBoxColorOpenFolderBorder.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); - this.textBoxColorOpenFolderBorder.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); - this.textBoxColorOpenFolderBorder.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); - // - // labelOpenFolderBorder - // - this.labelOpenFolderBorder.Anchor = System.Windows.Forms.AnchorStyles.Left; - this.labelOpenFolderBorder.AutoSize = true; - this.labelOpenFolderBorder.Location = new System.Drawing.Point(95, 4); - this.labelOpenFolderBorder.Name = "labelOpenFolderBorder"; - this.labelOpenFolderBorder.Size = new System.Drawing.Size(129, 15); - this.labelOpenFolderBorder.TabIndex = 0; - this.labelOpenFolderBorder.Text = "labelOpenFolderBorder"; - // - // tableLayoutPanelSelectedItem - // - this.tableLayoutPanelSelectedItem.AutoSize = true; - this.tableLayoutPanelSelectedItem.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; - this.tableLayoutPanelSelectedItem.ColumnCount = 3; - this.tableLayoutPanelSelectedItem.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelSelectedItem.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelSelectedItem.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); - this.tableLayoutPanelSelectedItem.Controls.Add(this.pictureBoxSelectedItem, 0, 0); - this.tableLayoutPanelSelectedItem.Controls.Add(this.textBoxColorSelectedItem, 1, 0); - this.tableLayoutPanelSelectedItem.Controls.Add(this.labelSelectedItem, 2, 0); - this.tableLayoutPanelSelectedItem.Location = new System.Drawing.Point(3, 163); - this.tableLayoutPanelSelectedItem.Name = "tableLayoutPanelSelectedItem"; - this.tableLayoutPanelSelectedItem.RowCount = 1; - this.tableLayoutPanelSelectedItem.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanelSelectedItem.Size = new System.Drawing.Size(198, 23); - this.tableLayoutPanelSelectedItem.TabIndex = 2; - // - // pictureBoxSelectedItem - // - this.pictureBoxSelectedItem.BackColor = System.Drawing.Color.White; - this.pictureBoxSelectedItem.Cursor = System.Windows.Forms.Cursors.Hand; - this.pictureBoxSelectedItem.Location = new System.Drawing.Point(0, 0); - this.pictureBoxSelectedItem.Margin = new System.Windows.Forms.Padding(0); - this.pictureBoxSelectedItem.Name = "pictureBoxSelectedItem"; - this.pictureBoxSelectedItem.Size = new System.Drawing.Size(23, 23); - this.pictureBoxSelectedItem.TabIndex = 1; - this.pictureBoxSelectedItem.TabStop = false; - this.pictureBoxSelectedItem.Click += new System.EventHandler(this.PictureBoxClick); - // - // textBoxColorSelectedItem - // - this.textBoxColorSelectedItem.Location = new System.Drawing.Point(23, 0); - this.textBoxColorSelectedItem.Margin = new System.Windows.Forms.Padding(0); - this.textBoxColorSelectedItem.MaxLength = 12; - this.textBoxColorSelectedItem.Name = "textBoxColorSelectedItem"; - this.textBoxColorSelectedItem.Size = new System.Drawing.Size(69, 23); - this.textBoxColorSelectedItem.TabIndex = 2; - this.textBoxColorSelectedItem.Text = "#ffffff"; - this.textBoxColorSelectedItem.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); - this.textBoxColorSelectedItem.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); - this.textBoxColorSelectedItem.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); - // - // labelSelectedItem - // - this.labelSelectedItem.Anchor = System.Windows.Forms.AnchorStyles.Left; - this.labelSelectedItem.AutoSize = true; - this.labelSelectedItem.Location = new System.Drawing.Point(95, 4); - this.labelSelectedItem.Name = "labelSelectedItem"; - this.labelSelectedItem.Size = new System.Drawing.Size(100, 15); - this.labelSelectedItem.TabIndex = 0; - this.labelSelectedItem.Text = "labelSelectedItem"; - // - // tableLayoutPanelSelectedItemBorder - // - this.tableLayoutPanelSelectedItemBorder.AutoSize = true; - this.tableLayoutPanelSelectedItemBorder.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; - this.tableLayoutPanelSelectedItemBorder.ColumnCount = 3; - this.tableLayoutPanelSelectedItemBorder.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelSelectedItemBorder.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelSelectedItemBorder.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); - this.tableLayoutPanelSelectedItemBorder.Controls.Add(this.pictureBoxSelectedItemBorder, 0, 0); - this.tableLayoutPanelSelectedItemBorder.Controls.Add(this.textBoxColorSelectedItemBorder, 1, 0); - this.tableLayoutPanelSelectedItemBorder.Controls.Add(this.labelSelectedItemBorder, 2, 0); - this.tableLayoutPanelSelectedItemBorder.Location = new System.Drawing.Point(3, 192); - this.tableLayoutPanelSelectedItemBorder.Name = "tableLayoutPanelSelectedItemBorder"; - this.tableLayoutPanelSelectedItemBorder.RowCount = 1; - this.tableLayoutPanelSelectedItemBorder.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanelSelectedItemBorder.Size = new System.Drawing.Size(233, 23); - this.tableLayoutPanelSelectedItemBorder.TabIndex = 2; - // - // pictureBoxSelectedItemBorder - // - this.pictureBoxSelectedItemBorder.BackColor = System.Drawing.Color.White; - this.pictureBoxSelectedItemBorder.Cursor = System.Windows.Forms.Cursors.Hand; - this.pictureBoxSelectedItemBorder.Location = new System.Drawing.Point(0, 0); - this.pictureBoxSelectedItemBorder.Margin = new System.Windows.Forms.Padding(0); - this.pictureBoxSelectedItemBorder.Name = "pictureBoxSelectedItemBorder"; - this.pictureBoxSelectedItemBorder.Size = new System.Drawing.Size(23, 23); - this.pictureBoxSelectedItemBorder.TabIndex = 1; - this.pictureBoxSelectedItemBorder.TabStop = false; - this.pictureBoxSelectedItemBorder.Click += new System.EventHandler(this.PictureBoxClick); - // - // textBoxColorSelectedItemBorder - // - this.textBoxColorSelectedItemBorder.Location = new System.Drawing.Point(23, 0); - this.textBoxColorSelectedItemBorder.Margin = new System.Windows.Forms.Padding(0); - this.textBoxColorSelectedItemBorder.MaxLength = 12; - this.textBoxColorSelectedItemBorder.Name = "textBoxColorSelectedItemBorder"; - this.textBoxColorSelectedItemBorder.Size = new System.Drawing.Size(69, 23); - this.textBoxColorSelectedItemBorder.TabIndex = 2; - this.textBoxColorSelectedItemBorder.Text = "#ffffff"; - this.textBoxColorSelectedItemBorder.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); - this.textBoxColorSelectedItemBorder.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); - this.textBoxColorSelectedItemBorder.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); - // - // labelSelectedItemBorder - // - this.labelSelectedItemBorder.Anchor = System.Windows.Forms.AnchorStyles.Left; - this.labelSelectedItemBorder.AutoSize = true; - this.labelSelectedItemBorder.Location = new System.Drawing.Point(95, 4); - this.labelSelectedItemBorder.Name = "labelSelectedItemBorder"; - this.labelSelectedItemBorder.Size = new System.Drawing.Size(135, 15); - this.labelSelectedItemBorder.TabIndex = 0; - this.labelSelectedItemBorder.Text = "labelSelectedItemBorder"; - // - // tableLayoutPanelWarning - // - this.tableLayoutPanelWarning.AutoSize = true; - this.tableLayoutPanelWarning.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; - this.tableLayoutPanelWarning.ColumnCount = 3; - this.tableLayoutPanelWarning.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelWarning.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelWarning.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); - this.tableLayoutPanelWarning.Controls.Add(this.labelWarning, 2, 0); - this.tableLayoutPanelWarning.Controls.Add(this.textBoxColorWarning, 1, 0); - this.tableLayoutPanelWarning.Controls.Add(this.pictureBoxWarning, 0, 0); - this.tableLayoutPanelWarning.Location = new System.Drawing.Point(3, 221); - this.tableLayoutPanelWarning.Name = "tableLayoutPanelWarning"; - this.tableLayoutPanelWarning.RowCount = 1; - this.tableLayoutPanelWarning.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanelWarning.Size = new System.Drawing.Size(175, 23); - this.tableLayoutPanelWarning.TabIndex = 2; - // - // labelWarning - // - this.labelWarning.Anchor = System.Windows.Forms.AnchorStyles.Left; - this.labelWarning.AutoSize = true; - this.labelWarning.Location = new System.Drawing.Point(95, 4); - this.labelWarning.Name = "labelWarning"; - this.labelWarning.Size = new System.Drawing.Size(77, 15); - this.labelWarning.TabIndex = 0; - this.labelWarning.Text = "labelWarning"; - // - // textBoxColorWarning - // - this.textBoxColorWarning.Location = new System.Drawing.Point(23, 0); - this.textBoxColorWarning.Margin = new System.Windows.Forms.Padding(0); - this.textBoxColorWarning.MaxLength = 12; - this.textBoxColorWarning.Name = "textBoxColorWarning"; - this.textBoxColorWarning.Size = new System.Drawing.Size(69, 23); - this.textBoxColorWarning.TabIndex = 2; - this.textBoxColorWarning.Text = "#ffffff"; - this.textBoxColorWarning.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); - this.textBoxColorWarning.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); - this.textBoxColorWarning.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); - // - // pictureBoxWarning - // - this.pictureBoxWarning.BackColor = System.Drawing.Color.White; - this.pictureBoxWarning.Cursor = System.Windows.Forms.Cursors.Hand; - this.pictureBoxWarning.Location = new System.Drawing.Point(0, 0); - this.pictureBoxWarning.Margin = new System.Windows.Forms.Padding(0); - this.pictureBoxWarning.Name = "pictureBoxWarning"; - this.pictureBoxWarning.Size = new System.Drawing.Size(23, 23); - this.pictureBoxWarning.TabIndex = 1; - this.pictureBoxWarning.TabStop = false; - this.pictureBoxWarning.Click += new System.EventHandler(this.PictureBoxClick); - // - // labelScrollbarLightMode - // - this.labelScrollbarLightMode.AutoSize = true; - this.labelScrollbarLightMode.Location = new System.Drawing.Point(3, 247); - this.labelScrollbarLightMode.Name = "labelScrollbarLightMode"; - this.labelScrollbarLightMode.Size = new System.Drawing.Size(136, 15); - this.labelScrollbarLightMode.TabIndex = 3; - this.labelScrollbarLightMode.Text = "labelScrollbarLightMode"; - // - // tableLayoutPanelScrollbarBackground - // - this.tableLayoutPanelScrollbarBackground.AutoSize = true; - this.tableLayoutPanelScrollbarBackground.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; - this.tableLayoutPanelScrollbarBackground.ColumnCount = 3; - this.tableLayoutPanelScrollbarBackground.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelScrollbarBackground.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelScrollbarBackground.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); - this.tableLayoutPanelScrollbarBackground.Controls.Add(this.pictureBoxScrollbarBackground, 0, 0); - this.tableLayoutPanelScrollbarBackground.Controls.Add(this.textBoxColorScrollbarBackground, 1, 0); - this.tableLayoutPanelScrollbarBackground.Controls.Add(this.labelScrollbarBackground, 2, 0); - this.tableLayoutPanelScrollbarBackground.Location = new System.Drawing.Point(3, 265); - this.tableLayoutPanelScrollbarBackground.Name = "tableLayoutPanelScrollbarBackground"; - this.tableLayoutPanelScrollbarBackground.RowCount = 1; - this.tableLayoutPanelScrollbarBackground.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanelScrollbarBackground.Size = new System.Drawing.Size(240, 23); - this.tableLayoutPanelScrollbarBackground.TabIndex = 2; - // - // pictureBoxScrollbarBackground - // - this.pictureBoxScrollbarBackground.BackColor = System.Drawing.Color.White; - this.pictureBoxScrollbarBackground.Cursor = System.Windows.Forms.Cursors.Hand; - this.pictureBoxScrollbarBackground.Location = new System.Drawing.Point(0, 0); - this.pictureBoxScrollbarBackground.Margin = new System.Windows.Forms.Padding(0); - this.pictureBoxScrollbarBackground.Name = "pictureBoxScrollbarBackground"; - this.pictureBoxScrollbarBackground.Size = new System.Drawing.Size(23, 23); - this.pictureBoxScrollbarBackground.TabIndex = 1; - this.pictureBoxScrollbarBackground.TabStop = false; - this.pictureBoxScrollbarBackground.Click += new System.EventHandler(this.PictureBoxClick); - // - // textBoxColorScrollbarBackground - // - this.textBoxColorScrollbarBackground.Location = new System.Drawing.Point(23, 0); - this.textBoxColorScrollbarBackground.Margin = new System.Windows.Forms.Padding(0); - this.textBoxColorScrollbarBackground.MaxLength = 12; - this.textBoxColorScrollbarBackground.Name = "textBoxColorScrollbarBackground"; - this.textBoxColorScrollbarBackground.Size = new System.Drawing.Size(69, 23); - this.textBoxColorScrollbarBackground.TabIndex = 2; - this.textBoxColorScrollbarBackground.Text = "#ffffff"; - this.textBoxColorScrollbarBackground.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); - this.textBoxColorScrollbarBackground.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); - this.textBoxColorScrollbarBackground.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); - // - // labelScrollbarBackground - // - this.labelScrollbarBackground.Anchor = System.Windows.Forms.AnchorStyles.Left; - this.labelScrollbarBackground.AutoSize = true; - this.labelScrollbarBackground.Location = new System.Drawing.Point(95, 4); - this.labelScrollbarBackground.Name = "labelScrollbarBackground"; - this.labelScrollbarBackground.Size = new System.Drawing.Size(142, 15); - this.labelScrollbarBackground.TabIndex = 0; - this.labelScrollbarBackground.Text = "labelScrollbarBackground"; - // - // tableLayoutPanelSlider - // - this.tableLayoutPanelSlider.AutoSize = true; - this.tableLayoutPanelSlider.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; - this.tableLayoutPanelSlider.ColumnCount = 3; - this.tableLayoutPanelSlider.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelSlider.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelSlider.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); - this.tableLayoutPanelSlider.Controls.Add(this.pictureBoxSlider, 0, 0); - this.tableLayoutPanelSlider.Controls.Add(this.textBoxColorSlider, 1, 0); - this.tableLayoutPanelSlider.Controls.Add(this.labelSlider, 2, 0); - this.tableLayoutPanelSlider.Location = new System.Drawing.Point(3, 294); - this.tableLayoutPanelSlider.Name = "tableLayoutPanelSlider"; - this.tableLayoutPanelSlider.RowCount = 1; - this.tableLayoutPanelSlider.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanelSlider.Size = new System.Drawing.Size(159, 23); - this.tableLayoutPanelSlider.TabIndex = 2; - // - // pictureBoxSlider - // - this.pictureBoxSlider.BackColor = System.Drawing.Color.White; - this.pictureBoxSlider.Cursor = System.Windows.Forms.Cursors.Hand; - this.pictureBoxSlider.Location = new System.Drawing.Point(0, 0); - this.pictureBoxSlider.Margin = new System.Windows.Forms.Padding(0); - this.pictureBoxSlider.Name = "pictureBoxSlider"; - this.pictureBoxSlider.Size = new System.Drawing.Size(23, 23); - this.pictureBoxSlider.TabIndex = 1; - this.pictureBoxSlider.TabStop = false; - this.pictureBoxSlider.Click += new System.EventHandler(this.PictureBoxClick); - // - // textBoxColorSlider - // - this.textBoxColorSlider.Location = new System.Drawing.Point(23, 0); - this.textBoxColorSlider.Margin = new System.Windows.Forms.Padding(0); - this.textBoxColorSlider.MaxLength = 12; - this.textBoxColorSlider.Name = "textBoxColorSlider"; - this.textBoxColorSlider.Size = new System.Drawing.Size(69, 23); - this.textBoxColorSlider.TabIndex = 2; - this.textBoxColorSlider.Text = "#ffffff"; - this.textBoxColorSlider.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); - this.textBoxColorSlider.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); - this.textBoxColorSlider.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); - // - // labelSlider - // - this.labelSlider.Anchor = System.Windows.Forms.AnchorStyles.Left; - this.labelSlider.AutoSize = true; - this.labelSlider.Location = new System.Drawing.Point(95, 4); - this.labelSlider.Name = "labelSlider"; - this.labelSlider.Size = new System.Drawing.Size(61, 15); - this.labelSlider.TabIndex = 0; - this.labelSlider.Text = "labelSlider"; - // - // tableLayoutPanelSliderDragging - // - this.tableLayoutPanelSliderDragging.AutoSize = true; - this.tableLayoutPanelSliderDragging.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; - this.tableLayoutPanelSliderDragging.ColumnCount = 3; - this.tableLayoutPanelSliderDragging.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelSliderDragging.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelSliderDragging.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); - this.tableLayoutPanelSliderDragging.Controls.Add(this.pictureBoxSliderDragging, 0, 0); - this.tableLayoutPanelSliderDragging.Controls.Add(this.textBoxColorSliderDragging, 1, 0); - this.tableLayoutPanelSliderDragging.Controls.Add(this.labelSliderDragging, 2, 0); - this.tableLayoutPanelSliderDragging.Location = new System.Drawing.Point(3, 323); - this.tableLayoutPanelSliderDragging.Name = "tableLayoutPanelSliderDragging"; - this.tableLayoutPanelSliderDragging.RowCount = 1; - this.tableLayoutPanelSliderDragging.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanelSliderDragging.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 23F)); - this.tableLayoutPanelSliderDragging.Size = new System.Drawing.Size(208, 23); - this.tableLayoutPanelSliderDragging.TabIndex = 2; - // - // pictureBoxSliderDragging - // - this.pictureBoxSliderDragging.BackColor = System.Drawing.Color.White; - this.pictureBoxSliderDragging.Cursor = System.Windows.Forms.Cursors.Hand; - this.pictureBoxSliderDragging.Location = new System.Drawing.Point(0, 0); - this.pictureBoxSliderDragging.Margin = new System.Windows.Forms.Padding(0); - this.pictureBoxSliderDragging.Name = "pictureBoxSliderDragging"; - this.pictureBoxSliderDragging.Size = new System.Drawing.Size(23, 23); - this.pictureBoxSliderDragging.TabIndex = 1; - this.pictureBoxSliderDragging.TabStop = false; - this.pictureBoxSliderDragging.Click += new System.EventHandler(this.PictureBoxClick); - // - // textBoxColorSliderDragging - // - this.textBoxColorSliderDragging.Location = new System.Drawing.Point(23, 0); - this.textBoxColorSliderDragging.Margin = new System.Windows.Forms.Padding(0); - this.textBoxColorSliderDragging.MaxLength = 12; - this.textBoxColorSliderDragging.Name = "textBoxColorSliderDragging"; - this.textBoxColorSliderDragging.Size = new System.Drawing.Size(69, 23); - this.textBoxColorSliderDragging.TabIndex = 2; - this.textBoxColorSliderDragging.Text = "#ffffff"; - this.textBoxColorSliderDragging.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); - this.textBoxColorSliderDragging.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); - this.textBoxColorSliderDragging.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); - // - // labelSliderDragging - // - this.labelSliderDragging.Anchor = System.Windows.Forms.AnchorStyles.Left; - this.labelSliderDragging.AutoSize = true; - this.labelSliderDragging.Location = new System.Drawing.Point(95, 4); - this.labelSliderDragging.Name = "labelSliderDragging"; - this.labelSliderDragging.Size = new System.Drawing.Size(110, 15); - this.labelSliderDragging.TabIndex = 0; - this.labelSliderDragging.Text = "labelSliderDragging"; - // - // tableLayoutPanelSliderHover - // - this.tableLayoutPanelSliderHover.AutoSize = true; - this.tableLayoutPanelSliderHover.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; - this.tableLayoutPanelSliderHover.ColumnCount = 3; - this.tableLayoutPanelSliderHover.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelSliderHover.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelSliderHover.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); - this.tableLayoutPanelSliderHover.Controls.Add(this.pictureBoxSliderHover, 0, 0); - this.tableLayoutPanelSliderHover.Controls.Add(this.textBoxColorSliderHover, 1, 0); - this.tableLayoutPanelSliderHover.Controls.Add(this.labelSliderHover, 2, 0); - this.tableLayoutPanelSliderHover.Location = new System.Drawing.Point(3, 352); - this.tableLayoutPanelSliderHover.Name = "tableLayoutPanelSliderHover"; - this.tableLayoutPanelSliderHover.RowCount = 1; - this.tableLayoutPanelSliderHover.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanelSliderHover.Size = new System.Drawing.Size(191, 23); - this.tableLayoutPanelSliderHover.TabIndex = 2; - // - // pictureBoxSliderHover - // - this.pictureBoxSliderHover.BackColor = System.Drawing.Color.White; - this.pictureBoxSliderHover.Cursor = System.Windows.Forms.Cursors.Hand; - this.pictureBoxSliderHover.Location = new System.Drawing.Point(0, 0); - this.pictureBoxSliderHover.Margin = new System.Windows.Forms.Padding(0); - this.pictureBoxSliderHover.Name = "pictureBoxSliderHover"; - this.pictureBoxSliderHover.Size = new System.Drawing.Size(23, 23); - this.pictureBoxSliderHover.TabIndex = 1; - this.pictureBoxSliderHover.TabStop = false; - this.pictureBoxSliderHover.Click += new System.EventHandler(this.PictureBoxClick); - // - // textBoxColorSliderHover - // - this.textBoxColorSliderHover.Location = new System.Drawing.Point(23, 0); - this.textBoxColorSliderHover.Margin = new System.Windows.Forms.Padding(0); - this.textBoxColorSliderHover.MaxLength = 12; - this.textBoxColorSliderHover.Name = "textBoxColorSliderHover"; - this.textBoxColorSliderHover.Size = new System.Drawing.Size(69, 23); - this.textBoxColorSliderHover.TabIndex = 2; - this.textBoxColorSliderHover.Text = "#ffffff"; - this.textBoxColorSliderHover.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); - this.textBoxColorSliderHover.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); - this.textBoxColorSliderHover.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); - // - // labelSliderHover - // - this.labelSliderHover.Anchor = System.Windows.Forms.AnchorStyles.Left; - this.labelSliderHover.AutoSize = true; - this.labelSliderHover.Location = new System.Drawing.Point(95, 4); - this.labelSliderHover.Name = "labelSliderHover"; - this.labelSliderHover.Size = new System.Drawing.Size(93, 15); - this.labelSliderHover.TabIndex = 0; - this.labelSliderHover.Text = "labelSliderHover"; - // - // tableLayoutPanelSliderArrowsAndTrackHover - // - this.tableLayoutPanelSliderArrowsAndTrackHover.AutoSize = true; - this.tableLayoutPanelSliderArrowsAndTrackHover.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; - this.tableLayoutPanelSliderArrowsAndTrackHover.ColumnCount = 3; - this.tableLayoutPanelSliderArrowsAndTrackHover.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelSliderArrowsAndTrackHover.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelSliderArrowsAndTrackHover.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); - this.tableLayoutPanelSliderArrowsAndTrackHover.Controls.Add(this.pictureBoxSliderArrowsAndTrackHover, 0, 0); - this.tableLayoutPanelSliderArrowsAndTrackHover.Controls.Add(this.textBoxColorSliderArrowsAndTrackHover, 1, 0); - this.tableLayoutPanelSliderArrowsAndTrackHover.Controls.Add(this.labelSliderArrowsAndTrackHover, 2, 0); - this.tableLayoutPanelSliderArrowsAndTrackHover.Location = new System.Drawing.Point(3, 381); - this.tableLayoutPanelSliderArrowsAndTrackHover.Name = "tableLayoutPanelSliderArrowsAndTrackHover"; - this.tableLayoutPanelSliderArrowsAndTrackHover.RowCount = 1; - this.tableLayoutPanelSliderArrowsAndTrackHover.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanelSliderArrowsAndTrackHover.Size = new System.Drawing.Size(277, 23); - this.tableLayoutPanelSliderArrowsAndTrackHover.TabIndex = 2; - // - // pictureBoxSliderArrowsAndTrackHover - // - this.pictureBoxSliderArrowsAndTrackHover.BackColor = System.Drawing.Color.White; - this.pictureBoxSliderArrowsAndTrackHover.Cursor = System.Windows.Forms.Cursors.Hand; - this.pictureBoxSliderArrowsAndTrackHover.Location = new System.Drawing.Point(0, 0); - this.pictureBoxSliderArrowsAndTrackHover.Margin = new System.Windows.Forms.Padding(0); - this.pictureBoxSliderArrowsAndTrackHover.Name = "pictureBoxSliderArrowsAndTrackHover"; - this.pictureBoxSliderArrowsAndTrackHover.Size = new System.Drawing.Size(23, 23); - this.pictureBoxSliderArrowsAndTrackHover.TabIndex = 1; - this.pictureBoxSliderArrowsAndTrackHover.TabStop = false; - this.pictureBoxSliderArrowsAndTrackHover.Click += new System.EventHandler(this.PictureBoxClick); - // - // textBoxColorSliderArrowsAndTrackHover - // - this.textBoxColorSliderArrowsAndTrackHover.Location = new System.Drawing.Point(23, 0); - this.textBoxColorSliderArrowsAndTrackHover.Margin = new System.Windows.Forms.Padding(0); - this.textBoxColorSliderArrowsAndTrackHover.MaxLength = 12; - this.textBoxColorSliderArrowsAndTrackHover.Name = "textBoxColorSliderArrowsAndTrackHover"; - this.textBoxColorSliderArrowsAndTrackHover.Size = new System.Drawing.Size(69, 23); - this.textBoxColorSliderArrowsAndTrackHover.TabIndex = 2; - this.textBoxColorSliderArrowsAndTrackHover.Text = "#ffffff"; - this.textBoxColorSliderArrowsAndTrackHover.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); - this.textBoxColorSliderArrowsAndTrackHover.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); - this.textBoxColorSliderArrowsAndTrackHover.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); - // - // labelSliderArrowsAndTrackHover - // - this.labelSliderArrowsAndTrackHover.Anchor = System.Windows.Forms.AnchorStyles.Left; - this.labelSliderArrowsAndTrackHover.AutoSize = true; - this.labelSliderArrowsAndTrackHover.Location = new System.Drawing.Point(95, 4); - this.labelSliderArrowsAndTrackHover.Name = "labelSliderArrowsAndTrackHover"; - this.labelSliderArrowsAndTrackHover.Size = new System.Drawing.Size(179, 15); - this.labelSliderArrowsAndTrackHover.TabIndex = 0; - this.labelSliderArrowsAndTrackHover.Text = "labelSliderArrowsAndTrackHover"; - // - // tableLayoutPanelArrow - // - this.tableLayoutPanelArrow.AutoSize = true; - this.tableLayoutPanelArrow.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; - this.tableLayoutPanelArrow.ColumnCount = 3; - this.tableLayoutPanelArrow.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelArrow.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelArrow.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); - this.tableLayoutPanelArrow.Controls.Add(this.pictureBoxArrow, 0, 0); - this.tableLayoutPanelArrow.Controls.Add(this.textBoxColorArrow, 1, 0); - this.tableLayoutPanelArrow.Controls.Add(this.labelArrow, 2, 0); - this.tableLayoutPanelArrow.Location = new System.Drawing.Point(3, 410); - this.tableLayoutPanelArrow.Name = "tableLayoutPanelArrow"; - this.tableLayoutPanelArrow.RowCount = 1; - this.tableLayoutPanelArrow.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanelArrow.Size = new System.Drawing.Size(162, 23); - this.tableLayoutPanelArrow.TabIndex = 2; - // - // pictureBoxArrow - // - this.pictureBoxArrow.BackColor = System.Drawing.Color.White; - this.pictureBoxArrow.Cursor = System.Windows.Forms.Cursors.Hand; - this.pictureBoxArrow.Location = new System.Drawing.Point(0, 0); - this.pictureBoxArrow.Margin = new System.Windows.Forms.Padding(0); - this.pictureBoxArrow.Name = "pictureBoxArrow"; - this.pictureBoxArrow.Size = new System.Drawing.Size(23, 23); - this.pictureBoxArrow.TabIndex = 1; - this.pictureBoxArrow.TabStop = false; - this.pictureBoxArrow.Click += new System.EventHandler(this.PictureBoxClick); - // - // textBoxColorArrow - // - this.textBoxColorArrow.Location = new System.Drawing.Point(23, 0); - this.textBoxColorArrow.Margin = new System.Windows.Forms.Padding(0); - this.textBoxColorArrow.MaxLength = 12; - this.textBoxColorArrow.Name = "textBoxColorArrow"; - this.textBoxColorArrow.Size = new System.Drawing.Size(69, 23); - this.textBoxColorArrow.TabIndex = 2; - this.textBoxColorArrow.Text = "#ffffff"; - this.textBoxColorArrow.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); - this.textBoxColorArrow.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); - this.textBoxColorArrow.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); - // - // labelArrow - // - this.labelArrow.Anchor = System.Windows.Forms.AnchorStyles.Left; - this.labelArrow.AutoSize = true; - this.labelArrow.Location = new System.Drawing.Point(95, 4); - this.labelArrow.Name = "labelArrow"; - this.labelArrow.Size = new System.Drawing.Size(64, 15); - this.labelArrow.TabIndex = 0; - this.labelArrow.Text = "labelArrow"; - // - // tableLayoutPanelArrowClick - // - this.tableLayoutPanelArrowClick.AutoSize = true; - this.tableLayoutPanelArrowClick.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; - this.tableLayoutPanelArrowClick.ColumnCount = 3; - this.tableLayoutPanelArrowClick.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelArrowClick.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelArrowClick.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); - this.tableLayoutPanelArrowClick.Controls.Add(this.pictureBoxArrowClick, 0, 0); - this.tableLayoutPanelArrowClick.Controls.Add(this.textBoxColorArrowClick, 1, 0); - this.tableLayoutPanelArrowClick.Controls.Add(this.labelArrowClick, 2, 0); - this.tableLayoutPanelArrowClick.Location = new System.Drawing.Point(3, 439); - this.tableLayoutPanelArrowClick.Name = "tableLayoutPanelArrowClick"; - this.tableLayoutPanelArrowClick.RowCount = 1; - this.tableLayoutPanelArrowClick.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanelArrowClick.Size = new System.Drawing.Size(188, 23); - this.tableLayoutPanelArrowClick.TabIndex = 2; - // - // pictureBoxArrowClick - // - this.pictureBoxArrowClick.BackColor = System.Drawing.Color.White; - this.pictureBoxArrowClick.Cursor = System.Windows.Forms.Cursors.Hand; - this.pictureBoxArrowClick.Location = new System.Drawing.Point(0, 0); - this.pictureBoxArrowClick.Margin = new System.Windows.Forms.Padding(0); - this.pictureBoxArrowClick.Name = "pictureBoxArrowClick"; - this.pictureBoxArrowClick.Size = new System.Drawing.Size(23, 23); - this.pictureBoxArrowClick.TabIndex = 1; - this.pictureBoxArrowClick.TabStop = false; - this.pictureBoxArrowClick.Click += new System.EventHandler(this.PictureBoxClick); - // - // textBoxColorArrowClick - // - this.textBoxColorArrowClick.Location = new System.Drawing.Point(23, 0); - this.textBoxColorArrowClick.Margin = new System.Windows.Forms.Padding(0); - this.textBoxColorArrowClick.MaxLength = 12; - this.textBoxColorArrowClick.Name = "textBoxColorArrowClick"; - this.textBoxColorArrowClick.Size = new System.Drawing.Size(69, 23); - this.textBoxColorArrowClick.TabIndex = 2; - this.textBoxColorArrowClick.Text = "#ffffff"; - this.textBoxColorArrowClick.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); - this.textBoxColorArrowClick.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); - this.textBoxColorArrowClick.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); - // - // labelArrowClick - // - this.labelArrowClick.Anchor = System.Windows.Forms.AnchorStyles.Left; - this.labelArrowClick.AutoSize = true; - this.labelArrowClick.Location = new System.Drawing.Point(95, 4); - this.labelArrowClick.Name = "labelArrowClick"; - this.labelArrowClick.Size = new System.Drawing.Size(90, 15); - this.labelArrowClick.TabIndex = 0; - this.labelArrowClick.Text = "labelArrowClick"; - // - // tableLayoutPanelArrowClickBackground - // - this.tableLayoutPanelArrowClickBackground.AutoSize = true; - this.tableLayoutPanelArrowClickBackground.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; - this.tableLayoutPanelArrowClickBackground.ColumnCount = 3; - this.tableLayoutPanelArrowClickBackground.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelArrowClickBackground.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelArrowClickBackground.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); - this.tableLayoutPanelArrowClickBackground.Controls.Add(this.pictureBoxArrowClickBackground, 0, 0); - this.tableLayoutPanelArrowClickBackground.Controls.Add(this.textBoxColorArrowClickBackground, 1, 0); - this.tableLayoutPanelArrowClickBackground.Controls.Add(this.labelArrowClickBackground, 2, 0); - this.tableLayoutPanelArrowClickBackground.Location = new System.Drawing.Point(3, 468); - this.tableLayoutPanelArrowClickBackground.Name = "tableLayoutPanelArrowClickBackground"; - this.tableLayoutPanelArrowClickBackground.RowCount = 1; - this.tableLayoutPanelArrowClickBackground.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanelArrowClickBackground.Size = new System.Drawing.Size(252, 23); - this.tableLayoutPanelArrowClickBackground.TabIndex = 2; - // - // pictureBoxArrowClickBackground - // - this.pictureBoxArrowClickBackground.BackColor = System.Drawing.Color.White; - this.pictureBoxArrowClickBackground.Cursor = System.Windows.Forms.Cursors.Hand; - this.pictureBoxArrowClickBackground.Location = new System.Drawing.Point(0, 0); - this.pictureBoxArrowClickBackground.Margin = new System.Windows.Forms.Padding(0); - this.pictureBoxArrowClickBackground.Name = "pictureBoxArrowClickBackground"; - this.pictureBoxArrowClickBackground.Size = new System.Drawing.Size(23, 23); - this.pictureBoxArrowClickBackground.TabIndex = 1; - this.pictureBoxArrowClickBackground.TabStop = false; - this.pictureBoxArrowClickBackground.Click += new System.EventHandler(this.PictureBoxClick); - // - // textBoxColorArrowClickBackground - // - this.textBoxColorArrowClickBackground.Location = new System.Drawing.Point(23, 0); - this.textBoxColorArrowClickBackground.Margin = new System.Windows.Forms.Padding(0); - this.textBoxColorArrowClickBackground.MaxLength = 12; - this.textBoxColorArrowClickBackground.Name = "textBoxColorArrowClickBackground"; - this.textBoxColorArrowClickBackground.Size = new System.Drawing.Size(69, 23); - this.textBoxColorArrowClickBackground.TabIndex = 2; - this.textBoxColorArrowClickBackground.Text = "#ffffff"; - this.textBoxColorArrowClickBackground.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); - this.textBoxColorArrowClickBackground.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); - this.textBoxColorArrowClickBackground.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); - // - // labelArrowClickBackground - // - this.labelArrowClickBackground.Anchor = System.Windows.Forms.AnchorStyles.Left; - this.labelArrowClickBackground.AutoSize = true; - this.labelArrowClickBackground.Location = new System.Drawing.Point(95, 4); - this.labelArrowClickBackground.Name = "labelArrowClickBackground"; - this.labelArrowClickBackground.Size = new System.Drawing.Size(154, 15); - this.labelArrowClickBackground.TabIndex = 0; - this.labelArrowClickBackground.Text = "labelArrowClickBackground"; - // - // tableLayoutPanelArrowHover - // - this.tableLayoutPanelArrowHover.AutoSize = true; - this.tableLayoutPanelArrowHover.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; - this.tableLayoutPanelArrowHover.ColumnCount = 3; - this.tableLayoutPanelArrowHover.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelArrowHover.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelArrowHover.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); - this.tableLayoutPanelArrowHover.Controls.Add(this.pictureBoxArrowHover, 0, 0); - this.tableLayoutPanelArrowHover.Controls.Add(this.textBoxColorArrowHover, 1, 0); - this.tableLayoutPanelArrowHover.Controls.Add(this.labelArrowHover, 2, 0); - this.tableLayoutPanelArrowHover.Location = new System.Drawing.Point(3, 497); - this.tableLayoutPanelArrowHover.Name = "tableLayoutPanelArrowHover"; - this.tableLayoutPanelArrowHover.RowCount = 1; - this.tableLayoutPanelArrowHover.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanelArrowHover.Size = new System.Drawing.Size(194, 23); - this.tableLayoutPanelArrowHover.TabIndex = 2; - // - // pictureBoxArrowHover - // - this.pictureBoxArrowHover.BackColor = System.Drawing.Color.White; - this.pictureBoxArrowHover.Cursor = System.Windows.Forms.Cursors.Hand; - this.pictureBoxArrowHover.Location = new System.Drawing.Point(0, 0); - this.pictureBoxArrowHover.Margin = new System.Windows.Forms.Padding(0); - this.pictureBoxArrowHover.Name = "pictureBoxArrowHover"; - this.pictureBoxArrowHover.Size = new System.Drawing.Size(23, 23); - this.pictureBoxArrowHover.TabIndex = 1; - this.pictureBoxArrowHover.TabStop = false; - this.pictureBoxArrowHover.Click += new System.EventHandler(this.PictureBoxClick); - // - // textBoxColorArrowHover - // - this.textBoxColorArrowHover.Location = new System.Drawing.Point(23, 0); - this.textBoxColorArrowHover.Margin = new System.Windows.Forms.Padding(0); - this.textBoxColorArrowHover.MaxLength = 12; - this.textBoxColorArrowHover.Name = "textBoxColorArrowHover"; - this.textBoxColorArrowHover.Size = new System.Drawing.Size(69, 23); - this.textBoxColorArrowHover.TabIndex = 2; - this.textBoxColorArrowHover.Text = "#ffffff"; - this.textBoxColorArrowHover.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); - this.textBoxColorArrowHover.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); - this.textBoxColorArrowHover.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); - // - // labelArrowHover - // - this.labelArrowHover.Anchor = System.Windows.Forms.AnchorStyles.Left; - this.labelArrowHover.AutoSize = true; - this.labelArrowHover.Location = new System.Drawing.Point(95, 4); - this.labelArrowHover.Name = "labelArrowHover"; - this.labelArrowHover.Size = new System.Drawing.Size(96, 15); - this.labelArrowHover.TabIndex = 0; - this.labelArrowHover.Text = "labelArrowHover"; + // buttonColorsDefault + // + this.buttonColorsDefault.AutoSize = true; + this.buttonColorsDefault.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.buttonColorsDefault.Location = new System.Drawing.Point(3, 584); + this.buttonColorsDefault.MinimumSize = new System.Drawing.Size(75, 23); + this.buttonColorsDefault.Name = "buttonColorsDefault"; + this.buttonColorsDefault.Size = new System.Drawing.Size(125, 25); + this.buttonColorsDefault.TabIndex = 2; + this.buttonColorsDefault.Text = "buttonColorsDefault"; + this.buttonColorsDefault.UseVisualStyleBackColor = true; + this.buttonColorsDefault.Click += new System.EventHandler(this.ButtonDefaultColors_Click); // // tableLayoutPanelArrowHoverBackground // @@ -2161,7 +1439,7 @@ namespace SystemTrayMenu.UserInterface this.tableLayoutPanelArrowHoverBackground.Controls.Add(this.pictureBoxArrowHoverBackground, 0, 0); this.tableLayoutPanelArrowHoverBackground.Controls.Add(this.textBoxColorArrowHoverBackground, 1, 0); this.tableLayoutPanelArrowHoverBackground.Controls.Add(this.labelArrowHoverBackground, 2, 0); - this.tableLayoutPanelArrowHoverBackground.Location = new System.Drawing.Point(3, 526); + this.tableLayoutPanelArrowHoverBackground.Location = new System.Drawing.Point(3, 555); this.tableLayoutPanelArrowHoverBackground.Name = "tableLayoutPanelArrowHoverBackground"; this.tableLayoutPanelArrowHoverBackground.RowCount = 1; this.tableLayoutPanelArrowHoverBackground.RowStyles.Add(new System.Windows.Forms.RowStyle()); @@ -2204,29 +1482,820 @@ namespace SystemTrayMenu.UserInterface this.labelArrowHoverBackground.TabIndex = 0; this.labelArrowHoverBackground.Text = "labelArrowHoverBackground"; // - // buttonColorsDefault + // tableLayoutPanelArrowHover // - this.buttonColorsDefault.AutoSize = true; - this.buttonColorsDefault.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; - this.buttonColorsDefault.Location = new System.Drawing.Point(3, 555); - this.buttonColorsDefault.MinimumSize = new System.Drawing.Size(75, 23); - this.buttonColorsDefault.Name = "buttonColorsDefault"; - this.buttonColorsDefault.Size = new System.Drawing.Size(125, 25); - this.buttonColorsDefault.TabIndex = 2; - this.buttonColorsDefault.Text = "buttonColorsDefault"; - this.buttonColorsDefault.UseVisualStyleBackColor = true; - this.buttonColorsDefault.Click += new System.EventHandler(this.ButtonDefaultColors_Click); + this.tableLayoutPanelArrowHover.AutoSize = true; + this.tableLayoutPanelArrowHover.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.tableLayoutPanelArrowHover.ColumnCount = 3; + this.tableLayoutPanelArrowHover.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelArrowHover.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelArrowHover.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); + this.tableLayoutPanelArrowHover.Controls.Add(this.pictureBoxArrowHover, 0, 0); + this.tableLayoutPanelArrowHover.Controls.Add(this.textBoxColorArrowHover, 1, 0); + this.tableLayoutPanelArrowHover.Controls.Add(this.labelArrowHover, 2, 0); + this.tableLayoutPanelArrowHover.Location = new System.Drawing.Point(3, 526); + this.tableLayoutPanelArrowHover.Name = "tableLayoutPanelArrowHover"; + this.tableLayoutPanelArrowHover.RowCount = 1; + this.tableLayoutPanelArrowHover.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanelArrowHover.Size = new System.Drawing.Size(194, 23); + this.tableLayoutPanelArrowHover.TabIndex = 2; + // + // pictureBoxArrowHover + // + this.pictureBoxArrowHover.BackColor = System.Drawing.Color.White; + this.pictureBoxArrowHover.Cursor = System.Windows.Forms.Cursors.Hand; + this.pictureBoxArrowHover.Location = new System.Drawing.Point(0, 0); + this.pictureBoxArrowHover.Margin = new System.Windows.Forms.Padding(0); + this.pictureBoxArrowHover.Name = "pictureBoxArrowHover"; + this.pictureBoxArrowHover.Size = new System.Drawing.Size(23, 23); + this.pictureBoxArrowHover.TabIndex = 1; + this.pictureBoxArrowHover.TabStop = false; + this.pictureBoxArrowHover.Click += new System.EventHandler(this.PictureBoxClick); + // + // textBoxColorArrowHover + // + this.textBoxColorArrowHover.Location = new System.Drawing.Point(23, 0); + this.textBoxColorArrowHover.Margin = new System.Windows.Forms.Padding(0); + this.textBoxColorArrowHover.MaxLength = 12; + this.textBoxColorArrowHover.Name = "textBoxColorArrowHover"; + this.textBoxColorArrowHover.Size = new System.Drawing.Size(69, 23); + this.textBoxColorArrowHover.TabIndex = 2; + this.textBoxColorArrowHover.Text = "#ffffff"; + this.textBoxColorArrowHover.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); + this.textBoxColorArrowHover.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); + this.textBoxColorArrowHover.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); + // + // labelArrowHover + // + this.labelArrowHover.Anchor = System.Windows.Forms.AnchorStyles.Left; + this.labelArrowHover.AutoSize = true; + this.labelArrowHover.Location = new System.Drawing.Point(95, 4); + this.labelArrowHover.Name = "labelArrowHover"; + this.labelArrowHover.Size = new System.Drawing.Size(96, 15); + this.labelArrowHover.TabIndex = 0; + this.labelArrowHover.Text = "labelArrowHover"; + // + // tableLayoutPanelArrowClickBackground + // + this.tableLayoutPanelArrowClickBackground.AutoSize = true; + this.tableLayoutPanelArrowClickBackground.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.tableLayoutPanelArrowClickBackground.ColumnCount = 3; + this.tableLayoutPanelArrowClickBackground.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelArrowClickBackground.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelArrowClickBackground.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); + this.tableLayoutPanelArrowClickBackground.Controls.Add(this.pictureBoxArrowClickBackground, 0, 0); + this.tableLayoutPanelArrowClickBackground.Controls.Add(this.textBoxColorArrowClickBackground, 1, 0); + this.tableLayoutPanelArrowClickBackground.Controls.Add(this.labelArrowClickBackground, 2, 0); + this.tableLayoutPanelArrowClickBackground.Location = new System.Drawing.Point(3, 497); + this.tableLayoutPanelArrowClickBackground.Name = "tableLayoutPanelArrowClickBackground"; + this.tableLayoutPanelArrowClickBackground.RowCount = 1; + this.tableLayoutPanelArrowClickBackground.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanelArrowClickBackground.Size = new System.Drawing.Size(252, 23); + this.tableLayoutPanelArrowClickBackground.TabIndex = 2; + // + // pictureBoxArrowClickBackground + // + this.pictureBoxArrowClickBackground.BackColor = System.Drawing.Color.White; + this.pictureBoxArrowClickBackground.Cursor = System.Windows.Forms.Cursors.Hand; + this.pictureBoxArrowClickBackground.Location = new System.Drawing.Point(0, 0); + this.pictureBoxArrowClickBackground.Margin = new System.Windows.Forms.Padding(0); + this.pictureBoxArrowClickBackground.Name = "pictureBoxArrowClickBackground"; + this.pictureBoxArrowClickBackground.Size = new System.Drawing.Size(23, 23); + this.pictureBoxArrowClickBackground.TabIndex = 1; + this.pictureBoxArrowClickBackground.TabStop = false; + this.pictureBoxArrowClickBackground.Click += new System.EventHandler(this.PictureBoxClick); + // + // textBoxColorArrowClickBackground + // + this.textBoxColorArrowClickBackground.Location = new System.Drawing.Point(23, 0); + this.textBoxColorArrowClickBackground.Margin = new System.Windows.Forms.Padding(0); + this.textBoxColorArrowClickBackground.MaxLength = 12; + this.textBoxColorArrowClickBackground.Name = "textBoxColorArrowClickBackground"; + this.textBoxColorArrowClickBackground.Size = new System.Drawing.Size(69, 23); + this.textBoxColorArrowClickBackground.TabIndex = 2; + this.textBoxColorArrowClickBackground.Text = "#ffffff"; + this.textBoxColorArrowClickBackground.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); + this.textBoxColorArrowClickBackground.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); + this.textBoxColorArrowClickBackground.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); + // + // labelArrowClickBackground + // + this.labelArrowClickBackground.Anchor = System.Windows.Forms.AnchorStyles.Left; + this.labelArrowClickBackground.AutoSize = true; + this.labelArrowClickBackground.Location = new System.Drawing.Point(95, 4); + this.labelArrowClickBackground.Name = "labelArrowClickBackground"; + this.labelArrowClickBackground.Size = new System.Drawing.Size(154, 15); + this.labelArrowClickBackground.TabIndex = 0; + this.labelArrowClickBackground.Text = "labelArrowClickBackground"; + // + // tableLayoutPanelArrowClick + // + this.tableLayoutPanelArrowClick.AutoSize = true; + this.tableLayoutPanelArrowClick.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.tableLayoutPanelArrowClick.ColumnCount = 3; + this.tableLayoutPanelArrowClick.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelArrowClick.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelArrowClick.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); + this.tableLayoutPanelArrowClick.Controls.Add(this.pictureBoxArrowClick, 0, 0); + this.tableLayoutPanelArrowClick.Controls.Add(this.textBoxColorArrowClick, 1, 0); + this.tableLayoutPanelArrowClick.Controls.Add(this.labelArrowClick, 2, 0); + this.tableLayoutPanelArrowClick.Location = new System.Drawing.Point(3, 468); + this.tableLayoutPanelArrowClick.Name = "tableLayoutPanelArrowClick"; + this.tableLayoutPanelArrowClick.RowCount = 1; + this.tableLayoutPanelArrowClick.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanelArrowClick.Size = new System.Drawing.Size(188, 23); + this.tableLayoutPanelArrowClick.TabIndex = 2; + // + // pictureBoxArrowClick + // + this.pictureBoxArrowClick.BackColor = System.Drawing.Color.White; + this.pictureBoxArrowClick.Cursor = System.Windows.Forms.Cursors.Hand; + this.pictureBoxArrowClick.Location = new System.Drawing.Point(0, 0); + this.pictureBoxArrowClick.Margin = new System.Windows.Forms.Padding(0); + this.pictureBoxArrowClick.Name = "pictureBoxArrowClick"; + this.pictureBoxArrowClick.Size = new System.Drawing.Size(23, 23); + this.pictureBoxArrowClick.TabIndex = 1; + this.pictureBoxArrowClick.TabStop = false; + this.pictureBoxArrowClick.Click += new System.EventHandler(this.PictureBoxClick); + // + // textBoxColorArrowClick + // + this.textBoxColorArrowClick.Location = new System.Drawing.Point(23, 0); + this.textBoxColorArrowClick.Margin = new System.Windows.Forms.Padding(0); + this.textBoxColorArrowClick.MaxLength = 12; + this.textBoxColorArrowClick.Name = "textBoxColorArrowClick"; + this.textBoxColorArrowClick.Size = new System.Drawing.Size(69, 23); + this.textBoxColorArrowClick.TabIndex = 2; + this.textBoxColorArrowClick.Text = "#ffffff"; + this.textBoxColorArrowClick.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); + this.textBoxColorArrowClick.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); + this.textBoxColorArrowClick.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); + // + // labelArrowClick + // + this.labelArrowClick.Anchor = System.Windows.Forms.AnchorStyles.Left; + this.labelArrowClick.AutoSize = true; + this.labelArrowClick.Location = new System.Drawing.Point(95, 4); + this.labelArrowClick.Name = "labelArrowClick"; + this.labelArrowClick.Size = new System.Drawing.Size(90, 15); + this.labelArrowClick.TabIndex = 0; + this.labelArrowClick.Text = "labelArrowClick"; + // + // tableLayoutPanelArrow + // + this.tableLayoutPanelArrow.AutoSize = true; + this.tableLayoutPanelArrow.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.tableLayoutPanelArrow.ColumnCount = 3; + this.tableLayoutPanelArrow.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelArrow.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelArrow.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); + this.tableLayoutPanelArrow.Controls.Add(this.pictureBoxArrow, 0, 0); + this.tableLayoutPanelArrow.Controls.Add(this.textBoxColorArrow, 1, 0); + this.tableLayoutPanelArrow.Controls.Add(this.labelArrow, 2, 0); + this.tableLayoutPanelArrow.Location = new System.Drawing.Point(3, 439); + this.tableLayoutPanelArrow.Name = "tableLayoutPanelArrow"; + this.tableLayoutPanelArrow.RowCount = 1; + this.tableLayoutPanelArrow.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanelArrow.Size = new System.Drawing.Size(162, 23); + this.tableLayoutPanelArrow.TabIndex = 2; + // + // pictureBoxArrow + // + this.pictureBoxArrow.BackColor = System.Drawing.Color.White; + this.pictureBoxArrow.Cursor = System.Windows.Forms.Cursors.Hand; + this.pictureBoxArrow.Location = new System.Drawing.Point(0, 0); + this.pictureBoxArrow.Margin = new System.Windows.Forms.Padding(0); + this.pictureBoxArrow.Name = "pictureBoxArrow"; + this.pictureBoxArrow.Size = new System.Drawing.Size(23, 23); + this.pictureBoxArrow.TabIndex = 1; + this.pictureBoxArrow.TabStop = false; + this.pictureBoxArrow.Click += new System.EventHandler(this.PictureBoxClick); + // + // textBoxColorArrow + // + this.textBoxColorArrow.Location = new System.Drawing.Point(23, 0); + this.textBoxColorArrow.Margin = new System.Windows.Forms.Padding(0); + this.textBoxColorArrow.MaxLength = 12; + this.textBoxColorArrow.Name = "textBoxColorArrow"; + this.textBoxColorArrow.Size = new System.Drawing.Size(69, 23); + this.textBoxColorArrow.TabIndex = 2; + this.textBoxColorArrow.Text = "#ffffff"; + this.textBoxColorArrow.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); + this.textBoxColorArrow.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); + this.textBoxColorArrow.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); + // + // labelArrow + // + this.labelArrow.Anchor = System.Windows.Forms.AnchorStyles.Left; + this.labelArrow.AutoSize = true; + this.labelArrow.Location = new System.Drawing.Point(95, 4); + this.labelArrow.Name = "labelArrow"; + this.labelArrow.Size = new System.Drawing.Size(64, 15); + this.labelArrow.TabIndex = 0; + this.labelArrow.Text = "labelArrow"; + // + // tableLayoutPanelSliderArrowsAndTrackHover + // + this.tableLayoutPanelSliderArrowsAndTrackHover.AutoSize = true; + this.tableLayoutPanelSliderArrowsAndTrackHover.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.tableLayoutPanelSliderArrowsAndTrackHover.ColumnCount = 3; + this.tableLayoutPanelSliderArrowsAndTrackHover.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelSliderArrowsAndTrackHover.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelSliderArrowsAndTrackHover.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); + this.tableLayoutPanelSliderArrowsAndTrackHover.Controls.Add(this.pictureBoxSliderArrowsAndTrackHover, 0, 0); + this.tableLayoutPanelSliderArrowsAndTrackHover.Controls.Add(this.textBoxColorSliderArrowsAndTrackHover, 1, 0); + this.tableLayoutPanelSliderArrowsAndTrackHover.Controls.Add(this.labelSliderArrowsAndTrackHover, 2, 0); + this.tableLayoutPanelSliderArrowsAndTrackHover.Location = new System.Drawing.Point(3, 410); + this.tableLayoutPanelSliderArrowsAndTrackHover.Name = "tableLayoutPanelSliderArrowsAndTrackHover"; + this.tableLayoutPanelSliderArrowsAndTrackHover.RowCount = 1; + this.tableLayoutPanelSliderArrowsAndTrackHover.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanelSliderArrowsAndTrackHover.Size = new System.Drawing.Size(277, 23); + this.tableLayoutPanelSliderArrowsAndTrackHover.TabIndex = 2; + // + // pictureBoxSliderArrowsAndTrackHover + // + this.pictureBoxSliderArrowsAndTrackHover.BackColor = System.Drawing.Color.White; + this.pictureBoxSliderArrowsAndTrackHover.Cursor = System.Windows.Forms.Cursors.Hand; + this.pictureBoxSliderArrowsAndTrackHover.Location = new System.Drawing.Point(0, 0); + this.pictureBoxSliderArrowsAndTrackHover.Margin = new System.Windows.Forms.Padding(0); + this.pictureBoxSliderArrowsAndTrackHover.Name = "pictureBoxSliderArrowsAndTrackHover"; + this.pictureBoxSliderArrowsAndTrackHover.Size = new System.Drawing.Size(23, 23); + this.pictureBoxSliderArrowsAndTrackHover.TabIndex = 1; + this.pictureBoxSliderArrowsAndTrackHover.TabStop = false; + this.pictureBoxSliderArrowsAndTrackHover.Click += new System.EventHandler(this.PictureBoxClick); + // + // textBoxColorSliderArrowsAndTrackHover + // + this.textBoxColorSliderArrowsAndTrackHover.Location = new System.Drawing.Point(23, 0); + this.textBoxColorSliderArrowsAndTrackHover.Margin = new System.Windows.Forms.Padding(0); + this.textBoxColorSliderArrowsAndTrackHover.MaxLength = 12; + this.textBoxColorSliderArrowsAndTrackHover.Name = "textBoxColorSliderArrowsAndTrackHover"; + this.textBoxColorSliderArrowsAndTrackHover.Size = new System.Drawing.Size(69, 23); + this.textBoxColorSliderArrowsAndTrackHover.TabIndex = 2; + this.textBoxColorSliderArrowsAndTrackHover.Text = "#ffffff"; + this.textBoxColorSliderArrowsAndTrackHover.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); + this.textBoxColorSliderArrowsAndTrackHover.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); + this.textBoxColorSliderArrowsAndTrackHover.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); + // + // labelSliderArrowsAndTrackHover + // + this.labelSliderArrowsAndTrackHover.Anchor = System.Windows.Forms.AnchorStyles.Left; + this.labelSliderArrowsAndTrackHover.AutoSize = true; + this.labelSliderArrowsAndTrackHover.Location = new System.Drawing.Point(95, 4); + this.labelSliderArrowsAndTrackHover.Name = "labelSliderArrowsAndTrackHover"; + this.labelSliderArrowsAndTrackHover.Size = new System.Drawing.Size(179, 15); + this.labelSliderArrowsAndTrackHover.TabIndex = 0; + this.labelSliderArrowsAndTrackHover.Text = "labelSliderArrowsAndTrackHover"; + // + // tableLayoutPanelSliderHover + // + this.tableLayoutPanelSliderHover.AutoSize = true; + this.tableLayoutPanelSliderHover.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.tableLayoutPanelSliderHover.ColumnCount = 3; + this.tableLayoutPanelSliderHover.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelSliderHover.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelSliderHover.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); + this.tableLayoutPanelSliderHover.Controls.Add(this.pictureBoxSliderHover, 0, 0); + this.tableLayoutPanelSliderHover.Controls.Add(this.textBoxColorSliderHover, 1, 0); + this.tableLayoutPanelSliderHover.Controls.Add(this.labelSliderHover, 2, 0); + this.tableLayoutPanelSliderHover.Location = new System.Drawing.Point(3, 381); + this.tableLayoutPanelSliderHover.Name = "tableLayoutPanelSliderHover"; + this.tableLayoutPanelSliderHover.RowCount = 1; + this.tableLayoutPanelSliderHover.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanelSliderHover.Size = new System.Drawing.Size(191, 23); + this.tableLayoutPanelSliderHover.TabIndex = 2; + // + // pictureBoxSliderHover + // + this.pictureBoxSliderHover.BackColor = System.Drawing.Color.White; + this.pictureBoxSliderHover.Cursor = System.Windows.Forms.Cursors.Hand; + this.pictureBoxSliderHover.Location = new System.Drawing.Point(0, 0); + this.pictureBoxSliderHover.Margin = new System.Windows.Forms.Padding(0); + this.pictureBoxSliderHover.Name = "pictureBoxSliderHover"; + this.pictureBoxSliderHover.Size = new System.Drawing.Size(23, 23); + this.pictureBoxSliderHover.TabIndex = 1; + this.pictureBoxSliderHover.TabStop = false; + this.pictureBoxSliderHover.Click += new System.EventHandler(this.PictureBoxClick); + // + // textBoxColorSliderHover + // + this.textBoxColorSliderHover.Location = new System.Drawing.Point(23, 0); + this.textBoxColorSliderHover.Margin = new System.Windows.Forms.Padding(0); + this.textBoxColorSliderHover.MaxLength = 12; + this.textBoxColorSliderHover.Name = "textBoxColorSliderHover"; + this.textBoxColorSliderHover.Size = new System.Drawing.Size(69, 23); + this.textBoxColorSliderHover.TabIndex = 2; + this.textBoxColorSliderHover.Text = "#ffffff"; + this.textBoxColorSliderHover.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); + this.textBoxColorSliderHover.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); + this.textBoxColorSliderHover.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); + // + // labelSliderHover + // + this.labelSliderHover.Anchor = System.Windows.Forms.AnchorStyles.Left; + this.labelSliderHover.AutoSize = true; + this.labelSliderHover.Location = new System.Drawing.Point(95, 4); + this.labelSliderHover.Name = "labelSliderHover"; + this.labelSliderHover.Size = new System.Drawing.Size(93, 15); + this.labelSliderHover.TabIndex = 0; + this.labelSliderHover.Text = "labelSliderHover"; + // + // tableLayoutPanelSliderDragging + // + this.tableLayoutPanelSliderDragging.AutoSize = true; + this.tableLayoutPanelSliderDragging.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.tableLayoutPanelSliderDragging.ColumnCount = 3; + this.tableLayoutPanelSliderDragging.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelSliderDragging.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelSliderDragging.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); + this.tableLayoutPanelSliderDragging.Controls.Add(this.pictureBoxSliderDragging, 0, 0); + this.tableLayoutPanelSliderDragging.Controls.Add(this.textBoxColorSliderDragging, 1, 0); + this.tableLayoutPanelSliderDragging.Controls.Add(this.labelSliderDragging, 2, 0); + this.tableLayoutPanelSliderDragging.Location = new System.Drawing.Point(3, 352); + this.tableLayoutPanelSliderDragging.Name = "tableLayoutPanelSliderDragging"; + this.tableLayoutPanelSliderDragging.RowCount = 1; + this.tableLayoutPanelSliderDragging.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanelSliderDragging.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 23F)); + this.tableLayoutPanelSliderDragging.Size = new System.Drawing.Size(208, 23); + this.tableLayoutPanelSliderDragging.TabIndex = 2; + // + // pictureBoxSliderDragging + // + this.pictureBoxSliderDragging.BackColor = System.Drawing.Color.White; + this.pictureBoxSliderDragging.Cursor = System.Windows.Forms.Cursors.Hand; + this.pictureBoxSliderDragging.Location = new System.Drawing.Point(0, 0); + this.pictureBoxSliderDragging.Margin = new System.Windows.Forms.Padding(0); + this.pictureBoxSliderDragging.Name = "pictureBoxSliderDragging"; + this.pictureBoxSliderDragging.Size = new System.Drawing.Size(23, 23); + this.pictureBoxSliderDragging.TabIndex = 1; + this.pictureBoxSliderDragging.TabStop = false; + this.pictureBoxSliderDragging.Click += new System.EventHandler(this.PictureBoxClick); + // + // textBoxColorSliderDragging + // + this.textBoxColorSliderDragging.Location = new System.Drawing.Point(23, 0); + this.textBoxColorSliderDragging.Margin = new System.Windows.Forms.Padding(0); + this.textBoxColorSliderDragging.MaxLength = 12; + this.textBoxColorSliderDragging.Name = "textBoxColorSliderDragging"; + this.textBoxColorSliderDragging.Size = new System.Drawing.Size(69, 23); + this.textBoxColorSliderDragging.TabIndex = 2; + this.textBoxColorSliderDragging.Text = "#ffffff"; + this.textBoxColorSliderDragging.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); + this.textBoxColorSliderDragging.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); + this.textBoxColorSliderDragging.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); + // + // labelSliderDragging + // + this.labelSliderDragging.Anchor = System.Windows.Forms.AnchorStyles.Left; + this.labelSliderDragging.AutoSize = true; + this.labelSliderDragging.Location = new System.Drawing.Point(95, 4); + this.labelSliderDragging.Name = "labelSliderDragging"; + this.labelSliderDragging.Size = new System.Drawing.Size(110, 15); + this.labelSliderDragging.TabIndex = 0; + this.labelSliderDragging.Text = "labelSliderDragging"; + // + // tableLayoutPanelSlider + // + this.tableLayoutPanelSlider.AutoSize = true; + this.tableLayoutPanelSlider.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.tableLayoutPanelSlider.ColumnCount = 3; + this.tableLayoutPanelSlider.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelSlider.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelSlider.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); + this.tableLayoutPanelSlider.Controls.Add(this.pictureBoxSlider, 0, 0); + this.tableLayoutPanelSlider.Controls.Add(this.textBoxColorSlider, 1, 0); + this.tableLayoutPanelSlider.Controls.Add(this.labelSlider, 2, 0); + this.tableLayoutPanelSlider.Location = new System.Drawing.Point(3, 323); + this.tableLayoutPanelSlider.Name = "tableLayoutPanelSlider"; + this.tableLayoutPanelSlider.RowCount = 1; + this.tableLayoutPanelSlider.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanelSlider.Size = new System.Drawing.Size(159, 23); + this.tableLayoutPanelSlider.TabIndex = 2; + // + // pictureBoxSlider + // + this.pictureBoxSlider.BackColor = System.Drawing.Color.White; + this.pictureBoxSlider.Cursor = System.Windows.Forms.Cursors.Hand; + this.pictureBoxSlider.Location = new System.Drawing.Point(0, 0); + this.pictureBoxSlider.Margin = new System.Windows.Forms.Padding(0); + this.pictureBoxSlider.Name = "pictureBoxSlider"; + this.pictureBoxSlider.Size = new System.Drawing.Size(23, 23); + this.pictureBoxSlider.TabIndex = 1; + this.pictureBoxSlider.TabStop = false; + this.pictureBoxSlider.Click += new System.EventHandler(this.PictureBoxClick); + // + // textBoxColorSlider + // + this.textBoxColorSlider.Location = new System.Drawing.Point(23, 0); + this.textBoxColorSlider.Margin = new System.Windows.Forms.Padding(0); + this.textBoxColorSlider.MaxLength = 12; + this.textBoxColorSlider.Name = "textBoxColorSlider"; + this.textBoxColorSlider.Size = new System.Drawing.Size(69, 23); + this.textBoxColorSlider.TabIndex = 2; + this.textBoxColorSlider.Text = "#ffffff"; + this.textBoxColorSlider.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); + this.textBoxColorSlider.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); + this.textBoxColorSlider.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); + // + // labelSlider + // + this.labelSlider.Anchor = System.Windows.Forms.AnchorStyles.Left; + this.labelSlider.AutoSize = true; + this.labelSlider.Location = new System.Drawing.Point(95, 4); + this.labelSlider.Name = "labelSlider"; + this.labelSlider.Size = new System.Drawing.Size(61, 15); + this.labelSlider.TabIndex = 0; + this.labelSlider.Text = "labelSlider"; + // + // tableLayoutPanelScrollbarBackground + // + this.tableLayoutPanelScrollbarBackground.AutoSize = true; + this.tableLayoutPanelScrollbarBackground.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.tableLayoutPanelScrollbarBackground.ColumnCount = 3; + this.tableLayoutPanelScrollbarBackground.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelScrollbarBackground.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelScrollbarBackground.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); + this.tableLayoutPanelScrollbarBackground.Controls.Add(this.pictureBoxScrollbarBackground, 0, 0); + this.tableLayoutPanelScrollbarBackground.Controls.Add(this.textBoxColorScrollbarBackground, 1, 0); + this.tableLayoutPanelScrollbarBackground.Controls.Add(this.labelScrollbarBackground, 2, 0); + this.tableLayoutPanelScrollbarBackground.Location = new System.Drawing.Point(3, 294); + this.tableLayoutPanelScrollbarBackground.Name = "tableLayoutPanelScrollbarBackground"; + this.tableLayoutPanelScrollbarBackground.RowCount = 1; + this.tableLayoutPanelScrollbarBackground.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanelScrollbarBackground.Size = new System.Drawing.Size(240, 23); + this.tableLayoutPanelScrollbarBackground.TabIndex = 2; + // + // pictureBoxScrollbarBackground + // + this.pictureBoxScrollbarBackground.BackColor = System.Drawing.Color.White; + this.pictureBoxScrollbarBackground.Cursor = System.Windows.Forms.Cursors.Hand; + this.pictureBoxScrollbarBackground.Location = new System.Drawing.Point(0, 0); + this.pictureBoxScrollbarBackground.Margin = new System.Windows.Forms.Padding(0); + this.pictureBoxScrollbarBackground.Name = "pictureBoxScrollbarBackground"; + this.pictureBoxScrollbarBackground.Size = new System.Drawing.Size(23, 23); + this.pictureBoxScrollbarBackground.TabIndex = 1; + this.pictureBoxScrollbarBackground.TabStop = false; + this.pictureBoxScrollbarBackground.Click += new System.EventHandler(this.PictureBoxClick); + // + // textBoxColorScrollbarBackground + // + this.textBoxColorScrollbarBackground.Location = new System.Drawing.Point(23, 0); + this.textBoxColorScrollbarBackground.Margin = new System.Windows.Forms.Padding(0); + this.textBoxColorScrollbarBackground.MaxLength = 12; + this.textBoxColorScrollbarBackground.Name = "textBoxColorScrollbarBackground"; + this.textBoxColorScrollbarBackground.Size = new System.Drawing.Size(69, 23); + this.textBoxColorScrollbarBackground.TabIndex = 2; + this.textBoxColorScrollbarBackground.Text = "#ffffff"; + this.textBoxColorScrollbarBackground.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); + this.textBoxColorScrollbarBackground.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); + this.textBoxColorScrollbarBackground.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); + // + // labelScrollbarBackground + // + this.labelScrollbarBackground.Anchor = System.Windows.Forms.AnchorStyles.Left; + this.labelScrollbarBackground.AutoSize = true; + this.labelScrollbarBackground.Location = new System.Drawing.Point(95, 4); + this.labelScrollbarBackground.Name = "labelScrollbarBackground"; + this.labelScrollbarBackground.Size = new System.Drawing.Size(142, 15); + this.labelScrollbarBackground.TabIndex = 0; + this.labelScrollbarBackground.Text = "labelScrollbarBackground"; + // + // labelScrollbarLightMode + // + this.labelScrollbarLightMode.AutoSize = true; + this.labelScrollbarLightMode.Location = new System.Drawing.Point(3, 276); + this.labelScrollbarLightMode.Name = "labelScrollbarLightMode"; + this.labelScrollbarLightMode.Size = new System.Drawing.Size(136, 15); + this.labelScrollbarLightMode.TabIndex = 3; + this.labelScrollbarLightMode.Text = "labelScrollbarLightMode"; + // + // tableLayoutPanelWarning + // + this.tableLayoutPanelWarning.AutoSize = true; + this.tableLayoutPanelWarning.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.tableLayoutPanelWarning.ColumnCount = 3; + this.tableLayoutPanelWarning.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelWarning.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelWarning.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); + this.tableLayoutPanelWarning.Controls.Add(this.labelWarning, 2, 0); + this.tableLayoutPanelWarning.Controls.Add(this.textBoxColorWarning, 1, 0); + this.tableLayoutPanelWarning.Controls.Add(this.pictureBoxWarning, 0, 0); + this.tableLayoutPanelWarning.Location = new System.Drawing.Point(3, 250); + this.tableLayoutPanelWarning.Name = "tableLayoutPanelWarning"; + this.tableLayoutPanelWarning.RowCount = 1; + this.tableLayoutPanelWarning.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanelWarning.Size = new System.Drawing.Size(175, 23); + this.tableLayoutPanelWarning.TabIndex = 2; + // + // labelWarning + // + this.labelWarning.Anchor = System.Windows.Forms.AnchorStyles.Left; + this.labelWarning.AutoSize = true; + this.labelWarning.Location = new System.Drawing.Point(95, 4); + this.labelWarning.Name = "labelWarning"; + this.labelWarning.Size = new System.Drawing.Size(77, 15); + this.labelWarning.TabIndex = 0; + this.labelWarning.Text = "labelWarning"; + // + // textBoxColorWarning + // + this.textBoxColorWarning.Location = new System.Drawing.Point(23, 0); + this.textBoxColorWarning.Margin = new System.Windows.Forms.Padding(0); + this.textBoxColorWarning.MaxLength = 12; + this.textBoxColorWarning.Name = "textBoxColorWarning"; + this.textBoxColorWarning.Size = new System.Drawing.Size(69, 23); + this.textBoxColorWarning.TabIndex = 2; + this.textBoxColorWarning.Text = "#ffffff"; + this.textBoxColorWarning.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); + this.textBoxColorWarning.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); + this.textBoxColorWarning.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); + // + // pictureBoxWarning + // + this.pictureBoxWarning.BackColor = System.Drawing.Color.White; + this.pictureBoxWarning.Cursor = System.Windows.Forms.Cursors.Hand; + this.pictureBoxWarning.Location = new System.Drawing.Point(0, 0); + this.pictureBoxWarning.Margin = new System.Windows.Forms.Padding(0); + this.pictureBoxWarning.Name = "pictureBoxWarning"; + this.pictureBoxWarning.Size = new System.Drawing.Size(23, 23); + this.pictureBoxWarning.TabIndex = 1; + this.pictureBoxWarning.TabStop = false; + this.pictureBoxWarning.Click += new System.EventHandler(this.PictureBoxClick); + // + // tableLayoutPanelSelectedItemBorder + // + this.tableLayoutPanelSelectedItemBorder.AutoSize = true; + this.tableLayoutPanelSelectedItemBorder.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.tableLayoutPanelSelectedItemBorder.ColumnCount = 3; + this.tableLayoutPanelSelectedItemBorder.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelSelectedItemBorder.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelSelectedItemBorder.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); + this.tableLayoutPanelSelectedItemBorder.Controls.Add(this.pictureBoxSelectedItemBorder, 0, 0); + this.tableLayoutPanelSelectedItemBorder.Controls.Add(this.textBoxColorSelectedItemBorder, 1, 0); + this.tableLayoutPanelSelectedItemBorder.Controls.Add(this.labelSelectedItemBorder, 2, 0); + this.tableLayoutPanelSelectedItemBorder.Location = new System.Drawing.Point(3, 221); + this.tableLayoutPanelSelectedItemBorder.Name = "tableLayoutPanelSelectedItemBorder"; + this.tableLayoutPanelSelectedItemBorder.RowCount = 1; + this.tableLayoutPanelSelectedItemBorder.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanelSelectedItemBorder.Size = new System.Drawing.Size(233, 23); + this.tableLayoutPanelSelectedItemBorder.TabIndex = 2; + // + // pictureBoxSelectedItemBorder + // + this.pictureBoxSelectedItemBorder.BackColor = System.Drawing.Color.White; + this.pictureBoxSelectedItemBorder.Cursor = System.Windows.Forms.Cursors.Hand; + this.pictureBoxSelectedItemBorder.Location = new System.Drawing.Point(0, 0); + this.pictureBoxSelectedItemBorder.Margin = new System.Windows.Forms.Padding(0); + this.pictureBoxSelectedItemBorder.Name = "pictureBoxSelectedItemBorder"; + this.pictureBoxSelectedItemBorder.Size = new System.Drawing.Size(23, 23); + this.pictureBoxSelectedItemBorder.TabIndex = 1; + this.pictureBoxSelectedItemBorder.TabStop = false; + this.pictureBoxSelectedItemBorder.Click += new System.EventHandler(this.PictureBoxClick); + // + // textBoxColorSelectedItemBorder + // + this.textBoxColorSelectedItemBorder.Location = new System.Drawing.Point(23, 0); + this.textBoxColorSelectedItemBorder.Margin = new System.Windows.Forms.Padding(0); + this.textBoxColorSelectedItemBorder.MaxLength = 12; + this.textBoxColorSelectedItemBorder.Name = "textBoxColorSelectedItemBorder"; + this.textBoxColorSelectedItemBorder.Size = new System.Drawing.Size(69, 23); + this.textBoxColorSelectedItemBorder.TabIndex = 2; + this.textBoxColorSelectedItemBorder.Text = "#ffffff"; + this.textBoxColorSelectedItemBorder.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); + this.textBoxColorSelectedItemBorder.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); + this.textBoxColorSelectedItemBorder.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); + // + // labelSelectedItemBorder + // + this.labelSelectedItemBorder.Anchor = System.Windows.Forms.AnchorStyles.Left; + this.labelSelectedItemBorder.AutoSize = true; + this.labelSelectedItemBorder.Location = new System.Drawing.Point(95, 4); + this.labelSelectedItemBorder.Name = "labelSelectedItemBorder"; + this.labelSelectedItemBorder.Size = new System.Drawing.Size(135, 15); + this.labelSelectedItemBorder.TabIndex = 0; + this.labelSelectedItemBorder.Text = "labelSelectedItemBorder"; + // + // tableLayoutPanelSelectedItem + // + this.tableLayoutPanelSelectedItem.AutoSize = true; + this.tableLayoutPanelSelectedItem.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.tableLayoutPanelSelectedItem.ColumnCount = 3; + this.tableLayoutPanelSelectedItem.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelSelectedItem.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelSelectedItem.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); + this.tableLayoutPanelSelectedItem.Controls.Add(this.pictureBoxSelectedItem, 0, 0); + this.tableLayoutPanelSelectedItem.Controls.Add(this.textBoxColorSelectedItem, 1, 0); + this.tableLayoutPanelSelectedItem.Controls.Add(this.labelSelectedItem, 2, 0); + this.tableLayoutPanelSelectedItem.Location = new System.Drawing.Point(3, 192); + this.tableLayoutPanelSelectedItem.Name = "tableLayoutPanelSelectedItem"; + this.tableLayoutPanelSelectedItem.RowCount = 1; + this.tableLayoutPanelSelectedItem.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanelSelectedItem.Size = new System.Drawing.Size(198, 23); + this.tableLayoutPanelSelectedItem.TabIndex = 2; + // + // pictureBoxSelectedItem + // + this.pictureBoxSelectedItem.BackColor = System.Drawing.Color.White; + this.pictureBoxSelectedItem.Cursor = System.Windows.Forms.Cursors.Hand; + this.pictureBoxSelectedItem.Location = new System.Drawing.Point(0, 0); + this.pictureBoxSelectedItem.Margin = new System.Windows.Forms.Padding(0); + this.pictureBoxSelectedItem.Name = "pictureBoxSelectedItem"; + this.pictureBoxSelectedItem.Size = new System.Drawing.Size(23, 23); + this.pictureBoxSelectedItem.TabIndex = 1; + this.pictureBoxSelectedItem.TabStop = false; + this.pictureBoxSelectedItem.Click += new System.EventHandler(this.PictureBoxClick); + // + // textBoxColorSelectedItem + // + this.textBoxColorSelectedItem.Location = new System.Drawing.Point(23, 0); + this.textBoxColorSelectedItem.Margin = new System.Windows.Forms.Padding(0); + this.textBoxColorSelectedItem.MaxLength = 12; + this.textBoxColorSelectedItem.Name = "textBoxColorSelectedItem"; + this.textBoxColorSelectedItem.Size = new System.Drawing.Size(69, 23); + this.textBoxColorSelectedItem.TabIndex = 2; + this.textBoxColorSelectedItem.Text = "#ffffff"; + this.textBoxColorSelectedItem.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); + this.textBoxColorSelectedItem.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); + this.textBoxColorSelectedItem.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); + // + // labelSelectedItem + // + this.labelSelectedItem.Anchor = System.Windows.Forms.AnchorStyles.Left; + this.labelSelectedItem.AutoSize = true; + this.labelSelectedItem.Location = new System.Drawing.Point(95, 4); + this.labelSelectedItem.Name = "labelSelectedItem"; + this.labelSelectedItem.Size = new System.Drawing.Size(100, 15); + this.labelSelectedItem.TabIndex = 0; + this.labelSelectedItem.Text = "labelSelectedItem"; + // + // tableLayoutPanelOpenFolderBorder + // + this.tableLayoutPanelOpenFolderBorder.AutoSize = true; + this.tableLayoutPanelOpenFolderBorder.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.tableLayoutPanelOpenFolderBorder.ColumnCount = 3; + this.tableLayoutPanelOpenFolderBorder.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelOpenFolderBorder.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelOpenFolderBorder.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); + this.tableLayoutPanelOpenFolderBorder.Controls.Add(this.pictureBoxOpenFolderBorder, 0, 0); + this.tableLayoutPanelOpenFolderBorder.Controls.Add(this.textBoxColorOpenFolderBorder, 1, 0); + this.tableLayoutPanelOpenFolderBorder.Controls.Add(this.labelOpenFolderBorder, 2, 0); + this.tableLayoutPanelOpenFolderBorder.Location = new System.Drawing.Point(3, 163); + this.tableLayoutPanelOpenFolderBorder.Name = "tableLayoutPanelOpenFolderBorder"; + this.tableLayoutPanelOpenFolderBorder.RowCount = 1; + this.tableLayoutPanelOpenFolderBorder.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanelOpenFolderBorder.Size = new System.Drawing.Size(227, 23); + this.tableLayoutPanelOpenFolderBorder.TabIndex = 2; + // + // pictureBoxOpenFolderBorder + // + this.pictureBoxOpenFolderBorder.BackColor = System.Drawing.Color.White; + this.pictureBoxOpenFolderBorder.Cursor = System.Windows.Forms.Cursors.Hand; + this.pictureBoxOpenFolderBorder.Location = new System.Drawing.Point(0, 0); + this.pictureBoxOpenFolderBorder.Margin = new System.Windows.Forms.Padding(0); + this.pictureBoxOpenFolderBorder.Name = "pictureBoxOpenFolderBorder"; + this.pictureBoxOpenFolderBorder.Size = new System.Drawing.Size(23, 23); + this.pictureBoxOpenFolderBorder.TabIndex = 1; + this.pictureBoxOpenFolderBorder.TabStop = false; + this.pictureBoxOpenFolderBorder.Click += new System.EventHandler(this.PictureBoxClick); + // + // textBoxColorOpenFolderBorder + // + this.textBoxColorOpenFolderBorder.Location = new System.Drawing.Point(23, 0); + this.textBoxColorOpenFolderBorder.Margin = new System.Windows.Forms.Padding(0); + this.textBoxColorOpenFolderBorder.Name = "textBoxColorOpenFolderBorder"; + this.textBoxColorOpenFolderBorder.Size = new System.Drawing.Size(69, 23); + this.textBoxColorOpenFolderBorder.TabIndex = 2; + this.textBoxColorOpenFolderBorder.Text = "#ffffff"; + this.textBoxColorOpenFolderBorder.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); + this.textBoxColorOpenFolderBorder.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); + this.textBoxColorOpenFolderBorder.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); + // + // labelOpenFolderBorder + // + this.labelOpenFolderBorder.Anchor = System.Windows.Forms.AnchorStyles.Left; + this.labelOpenFolderBorder.AutoSize = true; + this.labelOpenFolderBorder.Location = new System.Drawing.Point(95, 4); + this.labelOpenFolderBorder.Name = "labelOpenFolderBorder"; + this.labelOpenFolderBorder.Size = new System.Drawing.Size(129, 15); + this.labelOpenFolderBorder.TabIndex = 0; + this.labelOpenFolderBorder.Text = "labelOpenFolderBorder"; + // + // tableLayoutPanelOpenFolder + // + this.tableLayoutPanelOpenFolder.AutoSize = true; + this.tableLayoutPanelOpenFolder.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.tableLayoutPanelOpenFolder.ColumnCount = 3; + this.tableLayoutPanelOpenFolder.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelOpenFolder.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelOpenFolder.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); + this.tableLayoutPanelOpenFolder.Controls.Add(this.pictureBoxOpenFolder, 0, 0); + this.tableLayoutPanelOpenFolder.Controls.Add(this.textBoxColorOpenFolder, 1, 0); + this.tableLayoutPanelOpenFolder.Controls.Add(this.labelOpenFolder, 2, 0); + this.tableLayoutPanelOpenFolder.Location = new System.Drawing.Point(3, 134); + this.tableLayoutPanelOpenFolder.Name = "tableLayoutPanelOpenFolder"; + this.tableLayoutPanelOpenFolder.RowCount = 1; + this.tableLayoutPanelOpenFolder.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanelOpenFolder.Size = new System.Drawing.Size(192, 23); + this.tableLayoutPanelOpenFolder.TabIndex = 2; + // + // pictureBoxOpenFolder + // + this.pictureBoxOpenFolder.BackColor = System.Drawing.Color.White; + this.pictureBoxOpenFolder.Cursor = System.Windows.Forms.Cursors.Hand; + this.pictureBoxOpenFolder.Location = new System.Drawing.Point(0, 0); + this.pictureBoxOpenFolder.Margin = new System.Windows.Forms.Padding(0); + this.pictureBoxOpenFolder.Name = "pictureBoxOpenFolder"; + this.pictureBoxOpenFolder.Size = new System.Drawing.Size(23, 23); + this.pictureBoxOpenFolder.TabIndex = 1; + this.pictureBoxOpenFolder.TabStop = false; + this.pictureBoxOpenFolder.Click += new System.EventHandler(this.PictureBoxClick); + // + // textBoxColorOpenFolder + // + this.textBoxColorOpenFolder.Location = new System.Drawing.Point(23, 0); + this.textBoxColorOpenFolder.Margin = new System.Windows.Forms.Padding(0); + this.textBoxColorOpenFolder.MaxLength = 12; + this.textBoxColorOpenFolder.Name = "textBoxColorOpenFolder"; + this.textBoxColorOpenFolder.Size = new System.Drawing.Size(69, 23); + this.textBoxColorOpenFolder.TabIndex = 2; + this.textBoxColorOpenFolder.Text = "#ffffff"; + this.textBoxColorOpenFolder.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); + this.textBoxColorOpenFolder.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); + this.textBoxColorOpenFolder.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); + // + // labelOpenFolder + // + this.labelOpenFolder.Anchor = System.Windows.Forms.AnchorStyles.Left; + this.labelOpenFolder.AutoSize = true; + this.labelOpenFolder.Location = new System.Drawing.Point(95, 4); + this.labelOpenFolder.Name = "labelOpenFolder"; + this.labelOpenFolder.Size = new System.Drawing.Size(94, 15); + this.labelOpenFolder.TabIndex = 0; + this.labelOpenFolder.Text = "labelOpenFolder"; + // + // tableLayoutPanelSearchField + // + this.tableLayoutPanelSearchField.AutoSize = true; + this.tableLayoutPanelSearchField.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.tableLayoutPanelSearchField.ColumnCount = 3; + this.tableLayoutPanelSearchField.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelSearchField.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelSearchField.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); + this.tableLayoutPanelSearchField.Controls.Add(this.pictureBoxSearchField, 0, 0); + this.tableLayoutPanelSearchField.Controls.Add(this.textBoxColorSearchField, 1, 0); + this.tableLayoutPanelSearchField.Controls.Add(this.labelSearchField, 2, 0); + this.tableLayoutPanelSearchField.Location = new System.Drawing.Point(3, 105); + this.tableLayoutPanelSearchField.Name = "tableLayoutPanelSearchField"; + this.tableLayoutPanelSearchField.RowCount = 1; + this.tableLayoutPanelSearchField.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanelSearchField.Size = new System.Drawing.Size(190, 23); + this.tableLayoutPanelSearchField.TabIndex = 2; + // + // pictureBoxSearchField + // + this.pictureBoxSearchField.BackColor = System.Drawing.Color.White; + this.pictureBoxSearchField.Cursor = System.Windows.Forms.Cursors.Hand; + this.pictureBoxSearchField.Location = new System.Drawing.Point(0, 0); + this.pictureBoxSearchField.Margin = new System.Windows.Forms.Padding(0); + this.pictureBoxSearchField.Name = "pictureBoxSearchField"; + this.pictureBoxSearchField.Size = new System.Drawing.Size(23, 23); + this.pictureBoxSearchField.TabIndex = 1; + this.pictureBoxSearchField.TabStop = false; + this.pictureBoxSearchField.Click += new System.EventHandler(this.PictureBoxClick); + // + // textBoxColorSearchField + // + this.textBoxColorSearchField.Location = new System.Drawing.Point(23, 0); + this.textBoxColorSearchField.Margin = new System.Windows.Forms.Padding(0); + this.textBoxColorSearchField.MaxLength = 12; + this.textBoxColorSearchField.Name = "textBoxColorSearchField"; + this.textBoxColorSearchField.Size = new System.Drawing.Size(69, 23); + this.textBoxColorSearchField.TabIndex = 2; + this.textBoxColorSearchField.Text = "#ffffff"; + this.textBoxColorSearchField.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); + this.textBoxColorSearchField.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); + this.textBoxColorSearchField.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); + // + // labelSearchField + // + this.labelSearchField.Anchor = System.Windows.Forms.AnchorStyles.Left; + this.labelSearchField.AutoSize = true; + this.labelSearchField.Location = new System.Drawing.Point(95, 4); + this.labelSearchField.Name = "labelSearchField"; + this.labelSearchField.Size = new System.Drawing.Size(92, 15); + this.labelSearchField.TabIndex = 0; + this.labelSearchField.Text = "labelSearchField"; // // groupBoxColorsDarkMode // this.groupBoxColorsDarkMode.AutoSize = true; this.groupBoxColorsDarkMode.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; this.groupBoxColorsDarkMode.Controls.Add(this.tableLayoutPanelDarkMode); - this.groupBoxColorsDarkMode.Location = new System.Drawing.Point(3, 614); + this.groupBoxColorsDarkMode.Location = new System.Drawing.Point(3, 643); this.groupBoxColorsDarkMode.MaximumSize = new System.Drawing.Size(385, 0); this.groupBoxColorsDarkMode.MinimumSize = new System.Drawing.Size(385, 0); this.groupBoxColorsDarkMode.Name = "groupBoxColorsDarkMode"; - this.groupBoxColorsDarkMode.Size = new System.Drawing.Size(385, 630); + this.groupBoxColorsDarkMode.Size = new System.Drawing.Size(385, 659); this.groupBoxColorsDarkMode.TabIndex = 0; this.groupBoxColorsDarkMode.TabStop = false; this.groupBoxColorsDarkMode.Text = "groupBoxColorsDarkMode"; @@ -2237,32 +2306,33 @@ namespace SystemTrayMenu.UserInterface this.tableLayoutPanelDarkMode.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; this.tableLayoutPanelDarkMode.ColumnCount = 1; this.tableLayoutPanelDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 444F)); + this.tableLayoutPanelDarkMode.Controls.Add(this.tableLayoutPanel3, 0, 4); this.tableLayoutPanelDarkMode.Controls.Add(this.checkBoxDarkModeAlwaysOn, 0, 0); this.tableLayoutPanelDarkMode.Controls.Add(this.labelMenuDarkMode, 0, 1); + this.tableLayoutPanelDarkMode.Controls.Add(this.tableLayoutPanelSearchFieldDarkMode, 0, 5); + this.tableLayoutPanelDarkMode.Controls.Add(this.tableLayoutPanelOpenFolderDarkMode, 0, 6); + this.tableLayoutPanelDarkMode.Controls.Add(this.tableLayoutPanelOpenFolderBorderDarkMode, 0, 7); + this.tableLayoutPanelDarkMode.Controls.Add(this.tableLayoutPanelSelectedItemDarkMode, 0, 8); + this.tableLayoutPanelDarkMode.Controls.Add(this.tableLayoutPanelSelectedItemBorderDarkMode, 0, 9); + this.tableLayoutPanelDarkMode.Controls.Add(this.tableLayoutPanelWarningDarkMode, 0, 10); + this.tableLayoutPanelDarkMode.Controls.Add(this.labelScrollbarDarkMode, 0, 11); + this.tableLayoutPanelDarkMode.Controls.Add(this.tableLayoutPanelScrollbarBackgroundDarkMode, 0, 12); + this.tableLayoutPanelDarkMode.Controls.Add(this.tableLayoutPanelSliderDarkMode, 0, 13); + this.tableLayoutPanelDarkMode.Controls.Add(this.tableLayoutPanelSliderDraggingDarkMode, 0, 14); + this.tableLayoutPanelDarkMode.Controls.Add(this.tableLayoutPanelSliderHoverDarkMode, 0, 15); + this.tableLayoutPanelDarkMode.Controls.Add(this.tableLayoutPanelSliderArrowsAndTrackHoverDarkMode, 0, 16); + this.tableLayoutPanelDarkMode.Controls.Add(this.tableLayoutPanelArrowDarkMode, 0, 17); + this.tableLayoutPanelDarkMode.Controls.Add(this.tableLayoutPanelArrowClickDarkMode, 0, 18); + this.tableLayoutPanelDarkMode.Controls.Add(this.tableLayoutPanelArrowClickBackgroundDarkMode, 0, 19); + this.tableLayoutPanelDarkMode.Controls.Add(this.tableLayoutPanelArrowHoverDarkMode, 0, 20); + this.tableLayoutPanelDarkMode.Controls.Add(this.tableLayoutPanelArrowHoverBackgroundDarkMode, 0, 21); + this.tableLayoutPanelDarkMode.Controls.Add(this.buttonColorsDefaultDarkMode, 0, 22); this.tableLayoutPanelDarkMode.Controls.Add(this.tableLayoutPanelTitleDarkMode, 0, 2); this.tableLayoutPanelDarkMode.Controls.Add(this.tableLayoutPanelBackgroundDarkMode, 0, 3); - this.tableLayoutPanelDarkMode.Controls.Add(this.tableLayoutPanelSearchFieldDarkMode, 0, 4); - this.tableLayoutPanelDarkMode.Controls.Add(this.tableLayoutPanelOpenFolderDarkMode, 0, 5); - this.tableLayoutPanelDarkMode.Controls.Add(this.tableLayoutPanelOpenFolderBorderDarkMode, 0, 6); - this.tableLayoutPanelDarkMode.Controls.Add(this.tableLayoutPanelSelectedItemDarkMode, 0, 7); - this.tableLayoutPanelDarkMode.Controls.Add(this.tableLayoutPanelSelectedItemBorderDarkMode, 0, 8); - this.tableLayoutPanelDarkMode.Controls.Add(this.tableLayoutPanelWarningDarkMode, 0, 9); - this.tableLayoutPanelDarkMode.Controls.Add(this.labelScrollbarDarkMode, 0, 10); - this.tableLayoutPanelDarkMode.Controls.Add(this.tableLayoutPanelScrollbarBackgroundDarkMode, 0, 11); - this.tableLayoutPanelDarkMode.Controls.Add(this.tableLayoutPanelSliderDarkMode, 0, 12); - this.tableLayoutPanelDarkMode.Controls.Add(this.tableLayoutPanelSliderDraggingDarkMode, 0, 13); - this.tableLayoutPanelDarkMode.Controls.Add(this.tableLayoutPanelSliderHoverDarkMode, 0, 14); - this.tableLayoutPanelDarkMode.Controls.Add(this.tableLayoutPanelSliderArrowsAndTrackHoverDarkMode, 0, 15); - this.tableLayoutPanelDarkMode.Controls.Add(this.tableLayoutPanelArrowDarkMode, 0, 16); - this.tableLayoutPanelDarkMode.Controls.Add(this.tableLayoutPanelArrowClickDarkMode, 0, 17); - this.tableLayoutPanelDarkMode.Controls.Add(this.tableLayoutPanelArrowClickBackgroundDarkMode, 0, 18); - this.tableLayoutPanelDarkMode.Controls.Add(this.tableLayoutPanelArrowHoverDarkMode, 0, 19); - this.tableLayoutPanelDarkMode.Controls.Add(this.tableLayoutPanelArrowHoverBackgroundDarkMode, 0, 20); - this.tableLayoutPanelDarkMode.Controls.Add(this.buttonColorsDefaultDarkMode, 0, 21); this.tableLayoutPanelDarkMode.Dock = System.Windows.Forms.DockStyle.Fill; this.tableLayoutPanelDarkMode.Location = new System.Drawing.Point(3, 19); this.tableLayoutPanelDarkMode.Name = "tableLayoutPanelDarkMode"; - this.tableLayoutPanelDarkMode.RowCount = 22; + this.tableLayoutPanelDarkMode.RowCount = 23; this.tableLayoutPanelDarkMode.RowStyles.Add(new System.Windows.Forms.RowStyle()); this.tableLayoutPanelDarkMode.RowStyles.Add(new System.Windows.Forms.RowStyle()); this.tableLayoutPanelDarkMode.RowStyles.Add(new System.Windows.Forms.RowStyle()); @@ -2285,9 +2355,63 @@ namespace SystemTrayMenu.UserInterface this.tableLayoutPanelDarkMode.RowStyles.Add(new System.Windows.Forms.RowStyle()); this.tableLayoutPanelDarkMode.RowStyles.Add(new System.Windows.Forms.RowStyle()); this.tableLayoutPanelDarkMode.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanelDarkMode.Size = new System.Drawing.Size(379, 608); + this.tableLayoutPanelDarkMode.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanelDarkMode.Size = new System.Drawing.Size(379, 637); this.tableLayoutPanelDarkMode.TabIndex = 0; // + // tableLayoutPanel3 + // + this.tableLayoutPanel3.AutoSize = true; + this.tableLayoutPanel3.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.tableLayoutPanel3.ColumnCount = 3; + this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); + this.tableLayoutPanel3.Controls.Add(this.pictureBoxBackgroundBorderDarkMode, 0, 0); + this.tableLayoutPanel3.Controls.Add(this.labelBackgroundBorderDarkMode, 2, 0); + this.tableLayoutPanel3.Controls.Add(this.textBoxColorBackgroundBorderDarkMode, 1, 0); + this.tableLayoutPanel3.Location = new System.Drawing.Point(3, 101); + this.tableLayoutPanel3.Name = "tableLayoutPanel3"; + this.tableLayoutPanel3.RowCount = 1; + this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanel3.Size = new System.Drawing.Size(284, 23); + this.tableLayoutPanel3.TabIndex = 2; + // + // pictureBoxBackgroundBorderDarkMode + // + this.pictureBoxBackgroundBorderDarkMode.BackColor = System.Drawing.Color.White; + this.pictureBoxBackgroundBorderDarkMode.Cursor = System.Windows.Forms.Cursors.Hand; + this.pictureBoxBackgroundBorderDarkMode.Location = new System.Drawing.Point(0, 0); + this.pictureBoxBackgroundBorderDarkMode.Margin = new System.Windows.Forms.Padding(0); + this.pictureBoxBackgroundBorderDarkMode.Name = "pictureBoxBackgroundBorderDarkMode"; + this.pictureBoxBackgroundBorderDarkMode.Size = new System.Drawing.Size(23, 23); + this.pictureBoxBackgroundBorderDarkMode.TabIndex = 1; + this.pictureBoxBackgroundBorderDarkMode.TabStop = false; + this.pictureBoxBackgroundBorderDarkMode.Click += new System.EventHandler(this.PictureBoxClick); + // + // labelBackgroundDarkModeBorder + // + this.labelBackgroundBorderDarkMode.Anchor = System.Windows.Forms.AnchorStyles.Left; + this.labelBackgroundBorderDarkMode.AutoSize = true; + this.labelBackgroundBorderDarkMode.Location = new System.Drawing.Point(95, 4); + this.labelBackgroundBorderDarkMode.Name = "labelBackgroundDarkModeBorder"; + this.labelBackgroundBorderDarkMode.Size = new System.Drawing.Size(186, 15); + this.labelBackgroundBorderDarkMode.TabIndex = 0; + this.labelBackgroundBorderDarkMode.Text = "labelBackgroundDarkModeBorder"; + // + // textBoxColorBackgroundBorderDarkMode + // + this.textBoxColorBackgroundBorderDarkMode.Location = new System.Drawing.Point(23, 0); + this.textBoxColorBackgroundBorderDarkMode.Margin = new System.Windows.Forms.Padding(0); + this.textBoxColorBackgroundBorderDarkMode.MaxLength = 12; + this.textBoxColorBackgroundBorderDarkMode.Name = "textBoxColorBackgroundBorderDarkMode"; + this.textBoxColorBackgroundBorderDarkMode.Size = new System.Drawing.Size(69, 23); + this.textBoxColorBackgroundBorderDarkMode.TabIndex = 2; + this.textBoxColorBackgroundBorderDarkMode.Text = "#ffffff"; + this.textBoxColorBackgroundBorderDarkMode.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); + this.textBoxColorBackgroundBorderDarkMode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); + this.textBoxColorBackgroundBorderDarkMode.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); + // // checkBoxDarkModeAlwaysOn // this.checkBoxDarkModeAlwaysOn.AutoSize = true; @@ -2309,6 +2433,876 @@ namespace SystemTrayMenu.UserInterface this.labelMenuDarkMode.TabIndex = 3; this.labelMenuDarkMode.Text = "labelMenuDarkMode"; // + // tableLayoutPanelSearchFieldDarkMode + // + this.tableLayoutPanelSearchFieldDarkMode.AutoSize = true; + this.tableLayoutPanelSearchFieldDarkMode.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.tableLayoutPanelSearchFieldDarkMode.ColumnCount = 3; + this.tableLayoutPanelSearchFieldDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelSearchFieldDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelSearchFieldDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); + this.tableLayoutPanelSearchFieldDarkMode.Controls.Add(this.pictureBoxSearchFieldDarkMode, 0, 0); + this.tableLayoutPanelSearchFieldDarkMode.Controls.Add(this.labelSearchFieldDarkMode, 2, 0); + this.tableLayoutPanelSearchFieldDarkMode.Controls.Add(this.textBoxColorSearchFieldDarkMode, 1, 0); + this.tableLayoutPanelSearchFieldDarkMode.Location = new System.Drawing.Point(3, 130); + this.tableLayoutPanelSearchFieldDarkMode.Name = "tableLayoutPanelSearchFieldDarkMode"; + this.tableLayoutPanelSearchFieldDarkMode.RowCount = 1; + this.tableLayoutPanelSearchFieldDarkMode.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanelSearchFieldDarkMode.Size = new System.Drawing.Size(245, 23); + this.tableLayoutPanelSearchFieldDarkMode.TabIndex = 2; + // + // pictureBoxSearchFieldDarkMode + // + this.pictureBoxSearchFieldDarkMode.BackColor = System.Drawing.Color.White; + this.pictureBoxSearchFieldDarkMode.Cursor = System.Windows.Forms.Cursors.Hand; + this.pictureBoxSearchFieldDarkMode.Location = new System.Drawing.Point(0, 0); + this.pictureBoxSearchFieldDarkMode.Margin = new System.Windows.Forms.Padding(0); + this.pictureBoxSearchFieldDarkMode.Name = "pictureBoxSearchFieldDarkMode"; + this.pictureBoxSearchFieldDarkMode.Size = new System.Drawing.Size(23, 23); + this.pictureBoxSearchFieldDarkMode.TabIndex = 1; + this.pictureBoxSearchFieldDarkMode.TabStop = false; + this.pictureBoxSearchFieldDarkMode.Click += new System.EventHandler(this.PictureBoxClick); + // + // labelSearchFieldDarkMode + // + this.labelSearchFieldDarkMode.Anchor = System.Windows.Forms.AnchorStyles.Left; + this.labelSearchFieldDarkMode.AutoSize = true; + this.labelSearchFieldDarkMode.Location = new System.Drawing.Point(95, 4); + this.labelSearchFieldDarkMode.Name = "labelSearchFieldDarkMode"; + this.labelSearchFieldDarkMode.Size = new System.Drawing.Size(147, 15); + this.labelSearchFieldDarkMode.TabIndex = 0; + this.labelSearchFieldDarkMode.Text = "labelSearchFieldDarkMode"; + // + // textBoxColorSearchFieldDarkMode + // + this.textBoxColorSearchFieldDarkMode.Location = new System.Drawing.Point(23, 0); + this.textBoxColorSearchFieldDarkMode.Margin = new System.Windows.Forms.Padding(0); + this.textBoxColorSearchFieldDarkMode.MaxLength = 12; + this.textBoxColorSearchFieldDarkMode.Name = "textBoxColorSearchFieldDarkMode"; + this.textBoxColorSearchFieldDarkMode.Size = new System.Drawing.Size(69, 23); + this.textBoxColorSearchFieldDarkMode.TabIndex = 2; + this.textBoxColorSearchFieldDarkMode.Text = "#ffffff"; + this.textBoxColorSearchFieldDarkMode.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); + this.textBoxColorSearchFieldDarkMode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); + this.textBoxColorSearchFieldDarkMode.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); + // + // tableLayoutPanelOpenFolderDarkMode + // + this.tableLayoutPanelOpenFolderDarkMode.AutoSize = true; + this.tableLayoutPanelOpenFolderDarkMode.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.tableLayoutPanelOpenFolderDarkMode.ColumnCount = 3; + this.tableLayoutPanelOpenFolderDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelOpenFolderDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelOpenFolderDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); + this.tableLayoutPanelOpenFolderDarkMode.Controls.Add(this.pictureBoxOpenFolderDarkMode, 0, 0); + this.tableLayoutPanelOpenFolderDarkMode.Controls.Add(this.labelOpenFolderDarkMode, 2, 0); + this.tableLayoutPanelOpenFolderDarkMode.Controls.Add(this.textBoxColorOpenFolderDarkMode, 1, 0); + this.tableLayoutPanelOpenFolderDarkMode.Location = new System.Drawing.Point(3, 159); + this.tableLayoutPanelOpenFolderDarkMode.Name = "tableLayoutPanelOpenFolderDarkMode"; + this.tableLayoutPanelOpenFolderDarkMode.RowCount = 1; + this.tableLayoutPanelOpenFolderDarkMode.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanelOpenFolderDarkMode.Size = new System.Drawing.Size(247, 23); + this.tableLayoutPanelOpenFolderDarkMode.TabIndex = 2; + // + // pictureBoxOpenFolderDarkMode + // + this.pictureBoxOpenFolderDarkMode.BackColor = System.Drawing.Color.White; + this.pictureBoxOpenFolderDarkMode.Cursor = System.Windows.Forms.Cursors.Hand; + this.pictureBoxOpenFolderDarkMode.Location = new System.Drawing.Point(0, 0); + this.pictureBoxOpenFolderDarkMode.Margin = new System.Windows.Forms.Padding(0); + this.pictureBoxOpenFolderDarkMode.Name = "pictureBoxOpenFolderDarkMode"; + this.pictureBoxOpenFolderDarkMode.Size = new System.Drawing.Size(23, 23); + this.pictureBoxOpenFolderDarkMode.TabIndex = 1; + this.pictureBoxOpenFolderDarkMode.TabStop = false; + this.pictureBoxOpenFolderDarkMode.Click += new System.EventHandler(this.PictureBoxClick); + // + // labelOpenFolderDarkMode + // + this.labelOpenFolderDarkMode.Anchor = System.Windows.Forms.AnchorStyles.Left; + this.labelOpenFolderDarkMode.AutoSize = true; + this.labelOpenFolderDarkMode.Location = new System.Drawing.Point(95, 4); + this.labelOpenFolderDarkMode.Name = "labelOpenFolderDarkMode"; + this.labelOpenFolderDarkMode.Size = new System.Drawing.Size(149, 15); + this.labelOpenFolderDarkMode.TabIndex = 0; + this.labelOpenFolderDarkMode.Text = "labelOpenFolderDarkMode"; + // + // textBoxColorOpenFolderDarkMode + // + this.textBoxColorOpenFolderDarkMode.Location = new System.Drawing.Point(23, 0); + this.textBoxColorOpenFolderDarkMode.Margin = new System.Windows.Forms.Padding(0); + this.textBoxColorOpenFolderDarkMode.MaxLength = 12; + this.textBoxColorOpenFolderDarkMode.Name = "textBoxColorOpenFolderDarkMode"; + this.textBoxColorOpenFolderDarkMode.Size = new System.Drawing.Size(69, 23); + this.textBoxColorOpenFolderDarkMode.TabIndex = 2; + this.textBoxColorOpenFolderDarkMode.Text = "#ffffff"; + this.textBoxColorOpenFolderDarkMode.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); + this.textBoxColorOpenFolderDarkMode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); + this.textBoxColorOpenFolderDarkMode.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); + // + // tableLayoutPanelOpenFolderBorderDarkMode + // + this.tableLayoutPanelOpenFolderBorderDarkMode.AutoSize = true; + this.tableLayoutPanelOpenFolderBorderDarkMode.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.tableLayoutPanelOpenFolderBorderDarkMode.ColumnCount = 3; + this.tableLayoutPanelOpenFolderBorderDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelOpenFolderBorderDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelOpenFolderBorderDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); + this.tableLayoutPanelOpenFolderBorderDarkMode.Controls.Add(this.pictureBoxOpenFolderBorderDarkMode, 0, 0); + this.tableLayoutPanelOpenFolderBorderDarkMode.Controls.Add(this.labelOpenFolderBorderDarkMode, 2, 0); + this.tableLayoutPanelOpenFolderBorderDarkMode.Controls.Add(this.textBoxColorOpenFolderBorderDarkMode, 1, 0); + this.tableLayoutPanelOpenFolderBorderDarkMode.Location = new System.Drawing.Point(3, 188); + this.tableLayoutPanelOpenFolderBorderDarkMode.Name = "tableLayoutPanelOpenFolderBorderDarkMode"; + this.tableLayoutPanelOpenFolderBorderDarkMode.RowCount = 1; + this.tableLayoutPanelOpenFolderBorderDarkMode.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanelOpenFolderBorderDarkMode.Size = new System.Drawing.Size(282, 23); + this.tableLayoutPanelOpenFolderBorderDarkMode.TabIndex = 2; + // + // pictureBoxOpenFolderBorderDarkMode + // + this.pictureBoxOpenFolderBorderDarkMode.BackColor = System.Drawing.Color.White; + this.pictureBoxOpenFolderBorderDarkMode.Cursor = System.Windows.Forms.Cursors.Hand; + this.pictureBoxOpenFolderBorderDarkMode.Location = new System.Drawing.Point(0, 0); + this.pictureBoxOpenFolderBorderDarkMode.Margin = new System.Windows.Forms.Padding(0); + this.pictureBoxOpenFolderBorderDarkMode.Name = "pictureBoxOpenFolderBorderDarkMode"; + this.pictureBoxOpenFolderBorderDarkMode.Size = new System.Drawing.Size(23, 23); + this.pictureBoxOpenFolderBorderDarkMode.TabIndex = 1; + this.pictureBoxOpenFolderBorderDarkMode.TabStop = false; + this.pictureBoxOpenFolderBorderDarkMode.Click += new System.EventHandler(this.PictureBoxClick); + // + // labelOpenFolderBorderDarkMode + // + this.labelOpenFolderBorderDarkMode.Anchor = System.Windows.Forms.AnchorStyles.Left; + this.labelOpenFolderBorderDarkMode.AutoSize = true; + this.labelOpenFolderBorderDarkMode.Location = new System.Drawing.Point(95, 4); + this.labelOpenFolderBorderDarkMode.Name = "labelOpenFolderBorderDarkMode"; + this.labelOpenFolderBorderDarkMode.Size = new System.Drawing.Size(184, 15); + this.labelOpenFolderBorderDarkMode.TabIndex = 0; + this.labelOpenFolderBorderDarkMode.Text = "labelOpenFolderBorderDarkMode"; + // + // textBoxColorOpenFolderBorderDarkMode + // + this.textBoxColorOpenFolderBorderDarkMode.Location = new System.Drawing.Point(23, 0); + this.textBoxColorOpenFolderBorderDarkMode.Margin = new System.Windows.Forms.Padding(0); + this.textBoxColorOpenFolderBorderDarkMode.Name = "textBoxColorOpenFolderBorderDarkMode"; + this.textBoxColorOpenFolderBorderDarkMode.Size = new System.Drawing.Size(69, 23); + this.textBoxColorOpenFolderBorderDarkMode.TabIndex = 2; + this.textBoxColorOpenFolderBorderDarkMode.Text = "#ffffff"; + this.textBoxColorOpenFolderBorderDarkMode.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); + this.textBoxColorOpenFolderBorderDarkMode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); + this.textBoxColorOpenFolderBorderDarkMode.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); + // + // tableLayoutPanelSelectedItemDarkMode + // + this.tableLayoutPanelSelectedItemDarkMode.AutoSize = true; + this.tableLayoutPanelSelectedItemDarkMode.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.tableLayoutPanelSelectedItemDarkMode.ColumnCount = 3; + this.tableLayoutPanelSelectedItemDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelSelectedItemDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelSelectedItemDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); + this.tableLayoutPanelSelectedItemDarkMode.Controls.Add(this.pictureColorBoxSelectedItemDarkMode, 0, 0); + this.tableLayoutPanelSelectedItemDarkMode.Controls.Add(this.labelSelectedItemDarkMode, 2, 0); + this.tableLayoutPanelSelectedItemDarkMode.Controls.Add(this.textBoxColorSelecetedItemDarkMode, 1, 0); + this.tableLayoutPanelSelectedItemDarkMode.Location = new System.Drawing.Point(3, 217); + this.tableLayoutPanelSelectedItemDarkMode.Name = "tableLayoutPanelSelectedItemDarkMode"; + this.tableLayoutPanelSelectedItemDarkMode.RowCount = 1; + this.tableLayoutPanelSelectedItemDarkMode.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanelSelectedItemDarkMode.Size = new System.Drawing.Size(253, 23); + this.tableLayoutPanelSelectedItemDarkMode.TabIndex = 2; + // + // pictureColorBoxSelectedItemDarkMode + // + this.pictureColorBoxSelectedItemDarkMode.BackColor = System.Drawing.Color.White; + this.pictureColorBoxSelectedItemDarkMode.Cursor = System.Windows.Forms.Cursors.Hand; + this.pictureColorBoxSelectedItemDarkMode.Location = new System.Drawing.Point(0, 0); + this.pictureColorBoxSelectedItemDarkMode.Margin = new System.Windows.Forms.Padding(0); + this.pictureColorBoxSelectedItemDarkMode.Name = "pictureColorBoxSelectedItemDarkMode"; + this.pictureColorBoxSelectedItemDarkMode.Size = new System.Drawing.Size(23, 23); + this.pictureColorBoxSelectedItemDarkMode.TabIndex = 1; + this.pictureColorBoxSelectedItemDarkMode.TabStop = false; + this.pictureColorBoxSelectedItemDarkMode.Click += new System.EventHandler(this.PictureBoxClick); + // + // labelSelectedItemDarkMode + // + this.labelSelectedItemDarkMode.Anchor = System.Windows.Forms.AnchorStyles.Left; + this.labelSelectedItemDarkMode.AutoSize = true; + this.labelSelectedItemDarkMode.Location = new System.Drawing.Point(95, 4); + this.labelSelectedItemDarkMode.Name = "labelSelectedItemDarkMode"; + this.labelSelectedItemDarkMode.Size = new System.Drawing.Size(155, 15); + this.labelSelectedItemDarkMode.TabIndex = 0; + this.labelSelectedItemDarkMode.Text = "labelSelectedItemDarkMode"; + // + // textBoxColorSelecetedItemDarkMode + // + this.textBoxColorSelecetedItemDarkMode.Location = new System.Drawing.Point(23, 0); + this.textBoxColorSelecetedItemDarkMode.Margin = new System.Windows.Forms.Padding(0); + this.textBoxColorSelecetedItemDarkMode.MaxLength = 12; + this.textBoxColorSelecetedItemDarkMode.Name = "textBoxColorSelecetedItemDarkMode"; + this.textBoxColorSelecetedItemDarkMode.Size = new System.Drawing.Size(69, 23); + this.textBoxColorSelecetedItemDarkMode.TabIndex = 2; + this.textBoxColorSelecetedItemDarkMode.Text = "#ffffff"; + this.textBoxColorSelecetedItemDarkMode.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); + this.textBoxColorSelecetedItemDarkMode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); + this.textBoxColorSelecetedItemDarkMode.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); + // + // tableLayoutPanelSelectedItemBorderDarkMode + // + this.tableLayoutPanelSelectedItemBorderDarkMode.AutoSize = true; + this.tableLayoutPanelSelectedItemBorderDarkMode.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.tableLayoutPanelSelectedItemBorderDarkMode.ColumnCount = 3; + this.tableLayoutPanelSelectedItemBorderDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelSelectedItemBorderDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelSelectedItemBorderDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); + this.tableLayoutPanelSelectedItemBorderDarkMode.Controls.Add(this.pictureBoxSelectedItemBorderDarkMode, 0, 0); + this.tableLayoutPanelSelectedItemBorderDarkMode.Controls.Add(this.labelSelectedItemBorderDarkMode, 2, 0); + this.tableLayoutPanelSelectedItemBorderDarkMode.Controls.Add(this.textBoxColorSelectedItemBorderDarkMode, 1, 0); + this.tableLayoutPanelSelectedItemBorderDarkMode.Location = new System.Drawing.Point(3, 246); + this.tableLayoutPanelSelectedItemBorderDarkMode.Name = "tableLayoutPanelSelectedItemBorderDarkMode"; + this.tableLayoutPanelSelectedItemBorderDarkMode.RowCount = 1; + this.tableLayoutPanelSelectedItemBorderDarkMode.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanelSelectedItemBorderDarkMode.Size = new System.Drawing.Size(288, 23); + this.tableLayoutPanelSelectedItemBorderDarkMode.TabIndex = 2; + // + // pictureBoxSelectedItemBorderDarkMode + // + this.pictureBoxSelectedItemBorderDarkMode.BackColor = System.Drawing.Color.White; + this.pictureBoxSelectedItemBorderDarkMode.Cursor = System.Windows.Forms.Cursors.Hand; + this.pictureBoxSelectedItemBorderDarkMode.Location = new System.Drawing.Point(0, 0); + this.pictureBoxSelectedItemBorderDarkMode.Margin = new System.Windows.Forms.Padding(0); + this.pictureBoxSelectedItemBorderDarkMode.Name = "pictureBoxSelectedItemBorderDarkMode"; + this.pictureBoxSelectedItemBorderDarkMode.Size = new System.Drawing.Size(23, 23); + this.pictureBoxSelectedItemBorderDarkMode.TabIndex = 1; + this.pictureBoxSelectedItemBorderDarkMode.TabStop = false; + this.pictureBoxSelectedItemBorderDarkMode.Click += new System.EventHandler(this.PictureBoxClick); + // + // labelSelectedItemBorderDarkMode + // + this.labelSelectedItemBorderDarkMode.Anchor = System.Windows.Forms.AnchorStyles.Left; + this.labelSelectedItemBorderDarkMode.AutoSize = true; + this.labelSelectedItemBorderDarkMode.Location = new System.Drawing.Point(95, 4); + this.labelSelectedItemBorderDarkMode.Name = "labelSelectedItemBorderDarkMode"; + this.labelSelectedItemBorderDarkMode.Size = new System.Drawing.Size(190, 15); + this.labelSelectedItemBorderDarkMode.TabIndex = 0; + this.labelSelectedItemBorderDarkMode.Text = "labelSelectedItemBorderDarkMode"; + // + // textBoxColorSelectedItemBorderDarkMode + // + this.textBoxColorSelectedItemBorderDarkMode.Location = new System.Drawing.Point(23, 0); + this.textBoxColorSelectedItemBorderDarkMode.Margin = new System.Windows.Forms.Padding(0); + this.textBoxColorSelectedItemBorderDarkMode.MaxLength = 12; + this.textBoxColorSelectedItemBorderDarkMode.Name = "textBoxColorSelectedItemBorderDarkMode"; + this.textBoxColorSelectedItemBorderDarkMode.Size = new System.Drawing.Size(69, 23); + this.textBoxColorSelectedItemBorderDarkMode.TabIndex = 2; + this.textBoxColorSelectedItemBorderDarkMode.Text = "#ffffff"; + this.textBoxColorSelectedItemBorderDarkMode.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); + this.textBoxColorSelectedItemBorderDarkMode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); + this.textBoxColorSelectedItemBorderDarkMode.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); + // + // tableLayoutPanelWarningDarkMode + // + this.tableLayoutPanelWarningDarkMode.AutoSize = true; + this.tableLayoutPanelWarningDarkMode.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.tableLayoutPanelWarningDarkMode.ColumnCount = 3; + this.tableLayoutPanelWarningDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelWarningDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelWarningDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); + this.tableLayoutPanelWarningDarkMode.Controls.Add(this.pictureBoxWarningDarkMode, 0, 0); + this.tableLayoutPanelWarningDarkMode.Controls.Add(this.labelWarningDarkMode, 2, 0); + this.tableLayoutPanelWarningDarkMode.Controls.Add(this.textBoxColorWarningDarkMode, 1, 0); + this.tableLayoutPanelWarningDarkMode.Location = new System.Drawing.Point(3, 275); + this.tableLayoutPanelWarningDarkMode.Name = "tableLayoutPanelWarningDarkMode"; + this.tableLayoutPanelWarningDarkMode.RowCount = 1; + this.tableLayoutPanelWarningDarkMode.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanelWarningDarkMode.Size = new System.Drawing.Size(230, 23); + this.tableLayoutPanelWarningDarkMode.TabIndex = 2; + // + // pictureBoxWarningDarkMode + // + this.pictureBoxWarningDarkMode.BackColor = System.Drawing.Color.White; + this.pictureBoxWarningDarkMode.Cursor = System.Windows.Forms.Cursors.Hand; + this.pictureBoxWarningDarkMode.Location = new System.Drawing.Point(0, 0); + this.pictureBoxWarningDarkMode.Margin = new System.Windows.Forms.Padding(0); + this.pictureBoxWarningDarkMode.Name = "pictureBoxWarningDarkMode"; + this.pictureBoxWarningDarkMode.Size = new System.Drawing.Size(23, 23); + this.pictureBoxWarningDarkMode.TabIndex = 1; + this.pictureBoxWarningDarkMode.TabStop = false; + this.pictureBoxWarningDarkMode.Click += new System.EventHandler(this.PictureBoxClick); + // + // labelWarningDarkMode + // + this.labelWarningDarkMode.Anchor = System.Windows.Forms.AnchorStyles.Left; + this.labelWarningDarkMode.AutoSize = true; + this.labelWarningDarkMode.Location = new System.Drawing.Point(95, 4); + this.labelWarningDarkMode.Name = "labelWarningDarkMode"; + this.labelWarningDarkMode.Size = new System.Drawing.Size(132, 15); + this.labelWarningDarkMode.TabIndex = 0; + this.labelWarningDarkMode.Text = "labelWarningDarkMode"; + // + // textBoxColorWarningDarkMode + // + this.textBoxColorWarningDarkMode.Location = new System.Drawing.Point(23, 0); + this.textBoxColorWarningDarkMode.Margin = new System.Windows.Forms.Padding(0); + this.textBoxColorWarningDarkMode.MaxLength = 12; + this.textBoxColorWarningDarkMode.Name = "textBoxColorWarningDarkMode"; + this.textBoxColorWarningDarkMode.Size = new System.Drawing.Size(69, 23); + this.textBoxColorWarningDarkMode.TabIndex = 2; + this.textBoxColorWarningDarkMode.Text = "#ffffff"; + this.textBoxColorWarningDarkMode.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); + this.textBoxColorWarningDarkMode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); + this.textBoxColorWarningDarkMode.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); + // + // labelScrollbarDarkMode + // + this.labelScrollbarDarkMode.AutoSize = true; + this.labelScrollbarDarkMode.Location = new System.Drawing.Point(3, 301); + this.labelScrollbarDarkMode.Name = "labelScrollbarDarkMode"; + this.labelScrollbarDarkMode.Size = new System.Drawing.Size(133, 15); + this.labelScrollbarDarkMode.TabIndex = 3; + this.labelScrollbarDarkMode.Text = "labelScrollbarDarkMode"; + // + // tableLayoutPanelScrollbarBackgroundDarkMode + // + this.tableLayoutPanelScrollbarBackgroundDarkMode.AutoSize = true; + this.tableLayoutPanelScrollbarBackgroundDarkMode.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.tableLayoutPanelScrollbarBackgroundDarkMode.ColumnCount = 3; + this.tableLayoutPanelScrollbarBackgroundDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelScrollbarBackgroundDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelScrollbarBackgroundDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); + this.tableLayoutPanelScrollbarBackgroundDarkMode.Controls.Add(this.pictureBoxScrollbarBackgroundDarkMode, 0, 0); + this.tableLayoutPanelScrollbarBackgroundDarkMode.Controls.Add(this.textBoxColorScrollbarBackgroundDarkMode, 1, 0); + this.tableLayoutPanelScrollbarBackgroundDarkMode.Controls.Add(this.labelColorDarkModeScrollbarBackground, 2, 0); + this.tableLayoutPanelScrollbarBackgroundDarkMode.Location = new System.Drawing.Point(3, 319); + this.tableLayoutPanelScrollbarBackgroundDarkMode.Name = "tableLayoutPanelScrollbarBackgroundDarkMode"; + this.tableLayoutPanelScrollbarBackgroundDarkMode.RowCount = 1; + this.tableLayoutPanelScrollbarBackgroundDarkMode.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanelScrollbarBackgroundDarkMode.Size = new System.Drawing.Size(324, 23); + this.tableLayoutPanelScrollbarBackgroundDarkMode.TabIndex = 2; + // + // pictureBoxScrollbarBackgroundDarkMode + // + this.pictureBoxScrollbarBackgroundDarkMode.BackColor = System.Drawing.Color.White; + this.pictureBoxScrollbarBackgroundDarkMode.Cursor = System.Windows.Forms.Cursors.Hand; + this.pictureBoxScrollbarBackgroundDarkMode.Location = new System.Drawing.Point(0, 0); + this.pictureBoxScrollbarBackgroundDarkMode.Margin = new System.Windows.Forms.Padding(0); + this.pictureBoxScrollbarBackgroundDarkMode.Name = "pictureBoxScrollbarBackgroundDarkMode"; + this.pictureBoxScrollbarBackgroundDarkMode.Size = new System.Drawing.Size(23, 23); + this.pictureBoxScrollbarBackgroundDarkMode.TabIndex = 1; + this.pictureBoxScrollbarBackgroundDarkMode.TabStop = false; + this.pictureBoxScrollbarBackgroundDarkMode.Click += new System.EventHandler(this.PictureBoxClick); + // + // textBoxColorScrollbarBackgroundDarkMode + // + this.textBoxColorScrollbarBackgroundDarkMode.Location = new System.Drawing.Point(23, 0); + this.textBoxColorScrollbarBackgroundDarkMode.Margin = new System.Windows.Forms.Padding(0); + this.textBoxColorScrollbarBackgroundDarkMode.MaxLength = 12; + this.textBoxColorScrollbarBackgroundDarkMode.Name = "textBoxColorScrollbarBackgroundDarkMode"; + this.textBoxColorScrollbarBackgroundDarkMode.Size = new System.Drawing.Size(69, 23); + this.textBoxColorScrollbarBackgroundDarkMode.TabIndex = 2; + this.textBoxColorScrollbarBackgroundDarkMode.Text = "#ffffff"; + this.textBoxColorScrollbarBackgroundDarkMode.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); + this.textBoxColorScrollbarBackgroundDarkMode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); + this.textBoxColorScrollbarBackgroundDarkMode.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); + // + // labelColorDarkModeScrollbarBackground + // + this.labelColorDarkModeScrollbarBackground.Anchor = System.Windows.Forms.AnchorStyles.Left; + this.labelColorDarkModeScrollbarBackground.AutoSize = true; + this.labelColorDarkModeScrollbarBackground.Location = new System.Drawing.Point(95, 4); + this.labelColorDarkModeScrollbarBackground.Name = "labelColorDarkModeScrollbarBackground"; + this.labelColorDarkModeScrollbarBackground.Size = new System.Drawing.Size(226, 15); + this.labelColorDarkModeScrollbarBackground.TabIndex = 0; + this.labelColorDarkModeScrollbarBackground.Text = "labelColorDarkModeScrollbarBackground"; + // + // tableLayoutPanelSliderDarkMode + // + this.tableLayoutPanelSliderDarkMode.AutoSize = true; + this.tableLayoutPanelSliderDarkMode.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.tableLayoutPanelSliderDarkMode.ColumnCount = 3; + this.tableLayoutPanelSliderDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelSliderDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelSliderDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); + this.tableLayoutPanelSliderDarkMode.Controls.Add(this.pictureBoxSliderDarkMode, 0, 0); + this.tableLayoutPanelSliderDarkMode.Controls.Add(this.textBoxColorSliderDarkMode, 1, 0); + this.tableLayoutPanelSliderDarkMode.Controls.Add(this.labelColorDarkModeSlider, 2, 0); + this.tableLayoutPanelSliderDarkMode.Location = new System.Drawing.Point(3, 348); + this.tableLayoutPanelSliderDarkMode.Name = "tableLayoutPanelSliderDarkMode"; + this.tableLayoutPanelSliderDarkMode.RowCount = 1; + this.tableLayoutPanelSliderDarkMode.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanelSliderDarkMode.Size = new System.Drawing.Size(243, 23); + this.tableLayoutPanelSliderDarkMode.TabIndex = 2; + // + // pictureBoxSliderDarkMode + // + this.pictureBoxSliderDarkMode.BackColor = System.Drawing.Color.White; + this.pictureBoxSliderDarkMode.Cursor = System.Windows.Forms.Cursors.Hand; + this.pictureBoxSliderDarkMode.Location = new System.Drawing.Point(0, 0); + this.pictureBoxSliderDarkMode.Margin = new System.Windows.Forms.Padding(0); + this.pictureBoxSliderDarkMode.Name = "pictureBoxSliderDarkMode"; + this.pictureBoxSliderDarkMode.Size = new System.Drawing.Size(23, 23); + this.pictureBoxSliderDarkMode.TabIndex = 1; + this.pictureBoxSliderDarkMode.TabStop = false; + this.pictureBoxSliderDarkMode.Click += new System.EventHandler(this.PictureBoxClick); + // + // textBoxColorSliderDarkMode + // + this.textBoxColorSliderDarkMode.Location = new System.Drawing.Point(23, 0); + this.textBoxColorSliderDarkMode.Margin = new System.Windows.Forms.Padding(0); + this.textBoxColorSliderDarkMode.MaxLength = 12; + this.textBoxColorSliderDarkMode.Name = "textBoxColorSliderDarkMode"; + this.textBoxColorSliderDarkMode.Size = new System.Drawing.Size(69, 23); + this.textBoxColorSliderDarkMode.TabIndex = 2; + this.textBoxColorSliderDarkMode.Text = "#ffffff"; + this.textBoxColorSliderDarkMode.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); + this.textBoxColorSliderDarkMode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); + this.textBoxColorSliderDarkMode.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); + // + // labelColorDarkModeSlider + // + this.labelColorDarkModeSlider.Anchor = System.Windows.Forms.AnchorStyles.Left; + this.labelColorDarkModeSlider.AutoSize = true; + this.labelColorDarkModeSlider.Location = new System.Drawing.Point(95, 4); + this.labelColorDarkModeSlider.Name = "labelColorDarkModeSlider"; + this.labelColorDarkModeSlider.Size = new System.Drawing.Size(145, 15); + this.labelColorDarkModeSlider.TabIndex = 0; + this.labelColorDarkModeSlider.Text = "labelColorDarkModeSlider"; + // + // tableLayoutPanelSliderDraggingDarkMode + // + this.tableLayoutPanelSliderDraggingDarkMode.AutoSize = true; + this.tableLayoutPanelSliderDraggingDarkMode.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.tableLayoutPanelSliderDraggingDarkMode.ColumnCount = 3; + this.tableLayoutPanelSliderDraggingDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelSliderDraggingDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelSliderDraggingDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); + this.tableLayoutPanelSliderDraggingDarkMode.Controls.Add(this.pictureBoxSliderDraggingDarkMode, 0, 0); + this.tableLayoutPanelSliderDraggingDarkMode.Controls.Add(this.textBoxColorSliderDraggingDarkMode, 1, 0); + this.tableLayoutPanelSliderDraggingDarkMode.Controls.Add(this.labelColorDarkModeSliderDragging, 2, 0); + this.tableLayoutPanelSliderDraggingDarkMode.Location = new System.Drawing.Point(3, 377); + this.tableLayoutPanelSliderDraggingDarkMode.Name = "tableLayoutPanelSliderDraggingDarkMode"; + this.tableLayoutPanelSliderDraggingDarkMode.RowCount = 1; + this.tableLayoutPanelSliderDraggingDarkMode.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanelSliderDraggingDarkMode.Size = new System.Drawing.Size(292, 23); + this.tableLayoutPanelSliderDraggingDarkMode.TabIndex = 2; + // + // pictureBoxSliderDraggingDarkMode + // + this.pictureBoxSliderDraggingDarkMode.BackColor = System.Drawing.Color.White; + this.pictureBoxSliderDraggingDarkMode.Cursor = System.Windows.Forms.Cursors.Hand; + this.pictureBoxSliderDraggingDarkMode.Location = new System.Drawing.Point(0, 0); + this.pictureBoxSliderDraggingDarkMode.Margin = new System.Windows.Forms.Padding(0); + this.pictureBoxSliderDraggingDarkMode.Name = "pictureBoxSliderDraggingDarkMode"; + this.pictureBoxSliderDraggingDarkMode.Size = new System.Drawing.Size(23, 23); + this.pictureBoxSliderDraggingDarkMode.TabIndex = 1; + this.pictureBoxSliderDraggingDarkMode.TabStop = false; + this.pictureBoxSliderDraggingDarkMode.Click += new System.EventHandler(this.PictureBoxClick); + // + // textBoxColorSliderDraggingDarkMode + // + this.textBoxColorSliderDraggingDarkMode.Location = new System.Drawing.Point(23, 0); + this.textBoxColorSliderDraggingDarkMode.Margin = new System.Windows.Forms.Padding(0); + this.textBoxColorSliderDraggingDarkMode.MaxLength = 12; + this.textBoxColorSliderDraggingDarkMode.Name = "textBoxColorSliderDraggingDarkMode"; + this.textBoxColorSliderDraggingDarkMode.Size = new System.Drawing.Size(69, 23); + this.textBoxColorSliderDraggingDarkMode.TabIndex = 2; + this.textBoxColorSliderDraggingDarkMode.Text = "#ffffff"; + this.textBoxColorSliderDraggingDarkMode.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); + this.textBoxColorSliderDraggingDarkMode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); + this.textBoxColorSliderDraggingDarkMode.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); + // + // labelColorDarkModeSliderDragging + // + this.labelColorDarkModeSliderDragging.Anchor = System.Windows.Forms.AnchorStyles.Left; + this.labelColorDarkModeSliderDragging.AutoSize = true; + this.labelColorDarkModeSliderDragging.Location = new System.Drawing.Point(95, 4); + this.labelColorDarkModeSliderDragging.Name = "labelColorDarkModeSliderDragging"; + this.labelColorDarkModeSliderDragging.Size = new System.Drawing.Size(194, 15); + this.labelColorDarkModeSliderDragging.TabIndex = 0; + this.labelColorDarkModeSliderDragging.Text = "labelColorDarkModeSliderDragging"; + // + // tableLayoutPanelSliderHoverDarkMode + // + this.tableLayoutPanelSliderHoverDarkMode.AutoSize = true; + this.tableLayoutPanelSliderHoverDarkMode.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.tableLayoutPanelSliderHoverDarkMode.ColumnCount = 3; + this.tableLayoutPanelSliderHoverDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelSliderHoverDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelSliderHoverDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); + this.tableLayoutPanelSliderHoverDarkMode.Controls.Add(this.pictureBoxSliderHoverDarkMode, 0, 0); + this.tableLayoutPanelSliderHoverDarkMode.Controls.Add(this.textBoxColorSliderHoverDarkMode, 1, 0); + this.tableLayoutPanelSliderHoverDarkMode.Controls.Add(this.labelColorDarkModeSliderHover, 2, 0); + this.tableLayoutPanelSliderHoverDarkMode.Location = new System.Drawing.Point(3, 406); + this.tableLayoutPanelSliderHoverDarkMode.Name = "tableLayoutPanelSliderHoverDarkMode"; + this.tableLayoutPanelSliderHoverDarkMode.RowCount = 1; + this.tableLayoutPanelSliderHoverDarkMode.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanelSliderHoverDarkMode.Size = new System.Drawing.Size(275, 23); + this.tableLayoutPanelSliderHoverDarkMode.TabIndex = 2; + // + // pictureBoxSliderHoverDarkMode + // + this.pictureBoxSliderHoverDarkMode.BackColor = System.Drawing.Color.White; + this.pictureBoxSliderHoverDarkMode.Cursor = System.Windows.Forms.Cursors.Hand; + this.pictureBoxSliderHoverDarkMode.Location = new System.Drawing.Point(0, 0); + this.pictureBoxSliderHoverDarkMode.Margin = new System.Windows.Forms.Padding(0); + this.pictureBoxSliderHoverDarkMode.Name = "pictureBoxSliderHoverDarkMode"; + this.pictureBoxSliderHoverDarkMode.Size = new System.Drawing.Size(23, 23); + this.pictureBoxSliderHoverDarkMode.TabIndex = 1; + this.pictureBoxSliderHoverDarkMode.TabStop = false; + this.pictureBoxSliderHoverDarkMode.Click += new System.EventHandler(this.PictureBoxClick); + // + // textBoxColorSliderHoverDarkMode + // + this.textBoxColorSliderHoverDarkMode.Location = new System.Drawing.Point(23, 0); + this.textBoxColorSliderHoverDarkMode.Margin = new System.Windows.Forms.Padding(0); + this.textBoxColorSliderHoverDarkMode.MaxLength = 12; + this.textBoxColorSliderHoverDarkMode.Name = "textBoxColorSliderHoverDarkMode"; + this.textBoxColorSliderHoverDarkMode.Size = new System.Drawing.Size(69, 23); + this.textBoxColorSliderHoverDarkMode.TabIndex = 2; + this.textBoxColorSliderHoverDarkMode.Text = "#ffffff"; + this.textBoxColorSliderHoverDarkMode.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); + this.textBoxColorSliderHoverDarkMode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); + this.textBoxColorSliderHoverDarkMode.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); + // + // labelColorDarkModeSliderHover + // + this.labelColorDarkModeSliderHover.Anchor = System.Windows.Forms.AnchorStyles.Left; + this.labelColorDarkModeSliderHover.AutoSize = true; + this.labelColorDarkModeSliderHover.Location = new System.Drawing.Point(95, 4); + this.labelColorDarkModeSliderHover.Name = "labelColorDarkModeSliderHover"; + this.labelColorDarkModeSliderHover.Size = new System.Drawing.Size(177, 15); + this.labelColorDarkModeSliderHover.TabIndex = 0; + this.labelColorDarkModeSliderHover.Text = "labelColorDarkModeSliderHover"; + // + // tableLayoutPanelSliderArrowsAndTrackHoverDarkMode + // + this.tableLayoutPanelSliderArrowsAndTrackHoverDarkMode.AutoSize = true; + this.tableLayoutPanelSliderArrowsAndTrackHoverDarkMode.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.tableLayoutPanelSliderArrowsAndTrackHoverDarkMode.ColumnCount = 3; + this.tableLayoutPanelSliderArrowsAndTrackHoverDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelSliderArrowsAndTrackHoverDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelSliderArrowsAndTrackHoverDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); + this.tableLayoutPanelSliderArrowsAndTrackHoverDarkMode.Controls.Add(this.pictureBoxSliderArrowsAndTrackHoverDarkMode, 0, 0); + this.tableLayoutPanelSliderArrowsAndTrackHoverDarkMode.Controls.Add(this.textBoxColorSliderArrowsAndTrackHoverDarkMode, 1, 0); + this.tableLayoutPanelSliderArrowsAndTrackHoverDarkMode.Controls.Add(this.labelColorDarkModeSliderArrowsAndTrackHover, 2, 0); + this.tableLayoutPanelSliderArrowsAndTrackHoverDarkMode.Location = new System.Drawing.Point(3, 435); + this.tableLayoutPanelSliderArrowsAndTrackHoverDarkMode.Name = "tableLayoutPanelSliderArrowsAndTrackHoverDarkMode"; + this.tableLayoutPanelSliderArrowsAndTrackHoverDarkMode.RowCount = 1; + this.tableLayoutPanelSliderArrowsAndTrackHoverDarkMode.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanelSliderArrowsAndTrackHoverDarkMode.Size = new System.Drawing.Size(361, 23); + this.tableLayoutPanelSliderArrowsAndTrackHoverDarkMode.TabIndex = 2; + // + // pictureBoxSliderArrowsAndTrackHoverDarkMode + // + this.pictureBoxSliderArrowsAndTrackHoverDarkMode.BackColor = System.Drawing.Color.White; + this.pictureBoxSliderArrowsAndTrackHoverDarkMode.Cursor = System.Windows.Forms.Cursors.Hand; + this.pictureBoxSliderArrowsAndTrackHoverDarkMode.Location = new System.Drawing.Point(0, 0); + this.pictureBoxSliderArrowsAndTrackHoverDarkMode.Margin = new System.Windows.Forms.Padding(0); + this.pictureBoxSliderArrowsAndTrackHoverDarkMode.Name = "pictureBoxSliderArrowsAndTrackHoverDarkMode"; + this.pictureBoxSliderArrowsAndTrackHoverDarkMode.Size = new System.Drawing.Size(23, 23); + this.pictureBoxSliderArrowsAndTrackHoverDarkMode.TabIndex = 1; + this.pictureBoxSliderArrowsAndTrackHoverDarkMode.TabStop = false; + this.pictureBoxSliderArrowsAndTrackHoverDarkMode.Click += new System.EventHandler(this.PictureBoxClick); + // + // textBoxColorSliderArrowsAndTrackHoverDarkMode + // + this.textBoxColorSliderArrowsAndTrackHoverDarkMode.Location = new System.Drawing.Point(23, 0); + this.textBoxColorSliderArrowsAndTrackHoverDarkMode.Margin = new System.Windows.Forms.Padding(0); + this.textBoxColorSliderArrowsAndTrackHoverDarkMode.MaxLength = 12; + this.textBoxColorSliderArrowsAndTrackHoverDarkMode.Name = "textBoxColorSliderArrowsAndTrackHoverDarkMode"; + this.textBoxColorSliderArrowsAndTrackHoverDarkMode.Size = new System.Drawing.Size(69, 23); + this.textBoxColorSliderArrowsAndTrackHoverDarkMode.TabIndex = 2; + this.textBoxColorSliderArrowsAndTrackHoverDarkMode.Text = "#ffffff"; + this.textBoxColorSliderArrowsAndTrackHoverDarkMode.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); + this.textBoxColorSliderArrowsAndTrackHoverDarkMode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); + this.textBoxColorSliderArrowsAndTrackHoverDarkMode.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); + // + // labelColorDarkModeSliderArrowsAndTrackHover + // + this.labelColorDarkModeSliderArrowsAndTrackHover.Anchor = System.Windows.Forms.AnchorStyles.Left; + this.labelColorDarkModeSliderArrowsAndTrackHover.AutoSize = true; + this.labelColorDarkModeSliderArrowsAndTrackHover.Location = new System.Drawing.Point(95, 4); + this.labelColorDarkModeSliderArrowsAndTrackHover.Name = "labelColorDarkModeSliderArrowsAndTrackHover"; + this.labelColorDarkModeSliderArrowsAndTrackHover.Size = new System.Drawing.Size(263, 15); + this.labelColorDarkModeSliderArrowsAndTrackHover.TabIndex = 0; + this.labelColorDarkModeSliderArrowsAndTrackHover.Text = "labelColorDarkModeSliderArrowsAndTrackHover"; + // + // tableLayoutPanelArrowDarkMode + // + this.tableLayoutPanelArrowDarkMode.AutoSize = true; + this.tableLayoutPanelArrowDarkMode.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.tableLayoutPanelArrowDarkMode.ColumnCount = 3; + this.tableLayoutPanelArrowDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelArrowDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelArrowDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); + this.tableLayoutPanelArrowDarkMode.Controls.Add(this.pictureBoxArrowDarkMode, 0, 0); + this.tableLayoutPanelArrowDarkMode.Controls.Add(this.textBoxColorArrowDarkMode, 1, 0); + this.tableLayoutPanelArrowDarkMode.Controls.Add(this.labelColorDarkModeArrow, 2, 0); + this.tableLayoutPanelArrowDarkMode.Location = new System.Drawing.Point(3, 464); + this.tableLayoutPanelArrowDarkMode.Name = "tableLayoutPanelArrowDarkMode"; + this.tableLayoutPanelArrowDarkMode.RowCount = 1; + this.tableLayoutPanelArrowDarkMode.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanelArrowDarkMode.Size = new System.Drawing.Size(246, 23); + this.tableLayoutPanelArrowDarkMode.TabIndex = 2; + // + // pictureBoxArrowDarkMode + // + this.pictureBoxArrowDarkMode.BackColor = System.Drawing.Color.White; + this.pictureBoxArrowDarkMode.Cursor = System.Windows.Forms.Cursors.Hand; + this.pictureBoxArrowDarkMode.Location = new System.Drawing.Point(0, 0); + this.pictureBoxArrowDarkMode.Margin = new System.Windows.Forms.Padding(0); + this.pictureBoxArrowDarkMode.Name = "pictureBoxArrowDarkMode"; + this.pictureBoxArrowDarkMode.Size = new System.Drawing.Size(23, 23); + this.pictureBoxArrowDarkMode.TabIndex = 1; + this.pictureBoxArrowDarkMode.TabStop = false; + this.pictureBoxArrowDarkMode.Click += new System.EventHandler(this.PictureBoxClick); + // + // textBoxColorArrowDarkMode + // + this.textBoxColorArrowDarkMode.Location = new System.Drawing.Point(23, 0); + this.textBoxColorArrowDarkMode.Margin = new System.Windows.Forms.Padding(0); + this.textBoxColorArrowDarkMode.MaxLength = 12; + this.textBoxColorArrowDarkMode.Name = "textBoxColorArrowDarkMode"; + this.textBoxColorArrowDarkMode.Size = new System.Drawing.Size(69, 23); + this.textBoxColorArrowDarkMode.TabIndex = 2; + this.textBoxColorArrowDarkMode.Text = "#ffffff"; + this.textBoxColorArrowDarkMode.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); + this.textBoxColorArrowDarkMode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); + this.textBoxColorArrowDarkMode.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); + // + // labelColorDarkModeArrow + // + this.labelColorDarkModeArrow.Anchor = System.Windows.Forms.AnchorStyles.Left; + this.labelColorDarkModeArrow.AutoSize = true; + this.labelColorDarkModeArrow.Location = new System.Drawing.Point(95, 4); + this.labelColorDarkModeArrow.Name = "labelColorDarkModeArrow"; + this.labelColorDarkModeArrow.Size = new System.Drawing.Size(148, 15); + this.labelColorDarkModeArrow.TabIndex = 0; + this.labelColorDarkModeArrow.Text = "labelColorDarkModeArrow"; + // + // tableLayoutPanelArrowClickDarkMode + // + this.tableLayoutPanelArrowClickDarkMode.AutoSize = true; + this.tableLayoutPanelArrowClickDarkMode.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.tableLayoutPanelArrowClickDarkMode.ColumnCount = 3; + this.tableLayoutPanelArrowClickDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelArrowClickDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelArrowClickDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); + this.tableLayoutPanelArrowClickDarkMode.Controls.Add(this.pictureBoxArrowClickDarkMode, 0, 0); + this.tableLayoutPanelArrowClickDarkMode.Controls.Add(this.textBoxColorArrowClickDarkMode, 1, 0); + this.tableLayoutPanelArrowClickDarkMode.Controls.Add(this.labelColorDarkModeArrowClick, 2, 0); + this.tableLayoutPanelArrowClickDarkMode.Location = new System.Drawing.Point(3, 493); + this.tableLayoutPanelArrowClickDarkMode.Name = "tableLayoutPanelArrowClickDarkMode"; + this.tableLayoutPanelArrowClickDarkMode.RowCount = 1; + this.tableLayoutPanelArrowClickDarkMode.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanelArrowClickDarkMode.Size = new System.Drawing.Size(272, 23); + this.tableLayoutPanelArrowClickDarkMode.TabIndex = 2; + // + // pictureBoxArrowClickDarkMode + // + this.pictureBoxArrowClickDarkMode.BackColor = System.Drawing.Color.White; + this.pictureBoxArrowClickDarkMode.Cursor = System.Windows.Forms.Cursors.Hand; + this.pictureBoxArrowClickDarkMode.Location = new System.Drawing.Point(0, 0); + this.pictureBoxArrowClickDarkMode.Margin = new System.Windows.Forms.Padding(0); + this.pictureBoxArrowClickDarkMode.Name = "pictureBoxArrowClickDarkMode"; + this.pictureBoxArrowClickDarkMode.Size = new System.Drawing.Size(23, 23); + this.pictureBoxArrowClickDarkMode.TabIndex = 1; + this.pictureBoxArrowClickDarkMode.TabStop = false; + this.pictureBoxArrowClickDarkMode.Click += new System.EventHandler(this.PictureBoxClick); + // + // textBoxColorArrowClickDarkMode + // + this.textBoxColorArrowClickDarkMode.Location = new System.Drawing.Point(23, 0); + this.textBoxColorArrowClickDarkMode.Margin = new System.Windows.Forms.Padding(0); + this.textBoxColorArrowClickDarkMode.MaxLength = 12; + this.textBoxColorArrowClickDarkMode.Name = "textBoxColorArrowClickDarkMode"; + this.textBoxColorArrowClickDarkMode.Size = new System.Drawing.Size(69, 23); + this.textBoxColorArrowClickDarkMode.TabIndex = 2; + this.textBoxColorArrowClickDarkMode.Text = "#ffffff"; + this.textBoxColorArrowClickDarkMode.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); + this.textBoxColorArrowClickDarkMode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); + this.textBoxColorArrowClickDarkMode.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); + // + // labelColorDarkModeArrowClick + // + this.labelColorDarkModeArrowClick.Anchor = System.Windows.Forms.AnchorStyles.Left; + this.labelColorDarkModeArrowClick.AutoSize = true; + this.labelColorDarkModeArrowClick.Location = new System.Drawing.Point(95, 4); + this.labelColorDarkModeArrowClick.Name = "labelColorDarkModeArrowClick"; + this.labelColorDarkModeArrowClick.Size = new System.Drawing.Size(174, 15); + this.labelColorDarkModeArrowClick.TabIndex = 0; + this.labelColorDarkModeArrowClick.Text = "labelColorDarkModeArrowClick"; + // + // tableLayoutPanelArrowClickBackgroundDarkMode + // + this.tableLayoutPanelArrowClickBackgroundDarkMode.AutoSize = true; + this.tableLayoutPanelArrowClickBackgroundDarkMode.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.tableLayoutPanelArrowClickBackgroundDarkMode.ColumnCount = 3; + this.tableLayoutPanelArrowClickBackgroundDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelArrowClickBackgroundDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelArrowClickBackgroundDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); + this.tableLayoutPanelArrowClickBackgroundDarkMode.Controls.Add(this.pictureBoxArrowClickBackgroundDarkMode, 0, 0); + this.tableLayoutPanelArrowClickBackgroundDarkMode.Controls.Add(this.textBoxColorArrowClickBackgroundDarkMode, 1, 0); + this.tableLayoutPanelArrowClickBackgroundDarkMode.Controls.Add(this.labelColorDarkModeArrowClickBackground, 2, 0); + this.tableLayoutPanelArrowClickBackgroundDarkMode.Location = new System.Drawing.Point(3, 522); + this.tableLayoutPanelArrowClickBackgroundDarkMode.Name = "tableLayoutPanelArrowClickBackgroundDarkMode"; + this.tableLayoutPanelArrowClickBackgroundDarkMode.RowCount = 1; + this.tableLayoutPanelArrowClickBackgroundDarkMode.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanelArrowClickBackgroundDarkMode.Size = new System.Drawing.Size(336, 23); + this.tableLayoutPanelArrowClickBackgroundDarkMode.TabIndex = 2; + // + // pictureBoxArrowClickBackgroundDarkMode + // + this.pictureBoxArrowClickBackgroundDarkMode.BackColor = System.Drawing.Color.White; + this.pictureBoxArrowClickBackgroundDarkMode.Cursor = System.Windows.Forms.Cursors.Hand; + this.pictureBoxArrowClickBackgroundDarkMode.Location = new System.Drawing.Point(0, 0); + this.pictureBoxArrowClickBackgroundDarkMode.Margin = new System.Windows.Forms.Padding(0); + this.pictureBoxArrowClickBackgroundDarkMode.Name = "pictureBoxArrowClickBackgroundDarkMode"; + this.pictureBoxArrowClickBackgroundDarkMode.Size = new System.Drawing.Size(23, 23); + this.pictureBoxArrowClickBackgroundDarkMode.TabIndex = 1; + this.pictureBoxArrowClickBackgroundDarkMode.TabStop = false; + this.pictureBoxArrowClickBackgroundDarkMode.Click += new System.EventHandler(this.PictureBoxClick); + // + // textBoxColorArrowClickBackgroundDarkMode + // + this.textBoxColorArrowClickBackgroundDarkMode.Location = new System.Drawing.Point(23, 0); + this.textBoxColorArrowClickBackgroundDarkMode.Margin = new System.Windows.Forms.Padding(0); + this.textBoxColorArrowClickBackgroundDarkMode.MaxLength = 12; + this.textBoxColorArrowClickBackgroundDarkMode.Name = "textBoxColorArrowClickBackgroundDarkMode"; + this.textBoxColorArrowClickBackgroundDarkMode.Size = new System.Drawing.Size(69, 23); + this.textBoxColorArrowClickBackgroundDarkMode.TabIndex = 2; + this.textBoxColorArrowClickBackgroundDarkMode.Text = "#ffffff"; + this.textBoxColorArrowClickBackgroundDarkMode.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); + this.textBoxColorArrowClickBackgroundDarkMode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); + this.textBoxColorArrowClickBackgroundDarkMode.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); + // + // labelColorDarkModeArrowClickBackground + // + this.labelColorDarkModeArrowClickBackground.Anchor = System.Windows.Forms.AnchorStyles.Left; + this.labelColorDarkModeArrowClickBackground.AutoSize = true; + this.labelColorDarkModeArrowClickBackground.Location = new System.Drawing.Point(95, 4); + this.labelColorDarkModeArrowClickBackground.Name = "labelColorDarkModeArrowClickBackground"; + this.labelColorDarkModeArrowClickBackground.Size = new System.Drawing.Size(238, 15); + this.labelColorDarkModeArrowClickBackground.TabIndex = 0; + this.labelColorDarkModeArrowClickBackground.Text = "labelColorDarkModeArrowClickBackground"; + // + // tableLayoutPanelArrowHoverDarkMode + // + this.tableLayoutPanelArrowHoverDarkMode.AutoSize = true; + this.tableLayoutPanelArrowHoverDarkMode.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.tableLayoutPanelArrowHoverDarkMode.ColumnCount = 3; + this.tableLayoutPanelArrowHoverDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelArrowHoverDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelArrowHoverDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); + this.tableLayoutPanelArrowHoverDarkMode.Controls.Add(this.pictureBoxArrowHoverDarkMode, 0, 0); + this.tableLayoutPanelArrowHoverDarkMode.Controls.Add(this.textBoxColorArrowHoverDarkMode, 1, 0); + this.tableLayoutPanelArrowHoverDarkMode.Controls.Add(this.labelColorDarkModeArrowHover, 2, 0); + this.tableLayoutPanelArrowHoverDarkMode.Location = new System.Drawing.Point(3, 551); + this.tableLayoutPanelArrowHoverDarkMode.Name = "tableLayoutPanelArrowHoverDarkMode"; + this.tableLayoutPanelArrowHoverDarkMode.RowCount = 1; + this.tableLayoutPanelArrowHoverDarkMode.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanelArrowHoverDarkMode.Size = new System.Drawing.Size(278, 23); + this.tableLayoutPanelArrowHoverDarkMode.TabIndex = 2; + // + // pictureBoxArrowHoverDarkMode + // + this.pictureBoxArrowHoverDarkMode.BackColor = System.Drawing.Color.White; + this.pictureBoxArrowHoverDarkMode.Cursor = System.Windows.Forms.Cursors.Hand; + this.pictureBoxArrowHoverDarkMode.Location = new System.Drawing.Point(0, 0); + this.pictureBoxArrowHoverDarkMode.Margin = new System.Windows.Forms.Padding(0); + this.pictureBoxArrowHoverDarkMode.Name = "pictureBoxArrowHoverDarkMode"; + this.pictureBoxArrowHoverDarkMode.Size = new System.Drawing.Size(23, 23); + this.pictureBoxArrowHoverDarkMode.TabIndex = 1; + this.pictureBoxArrowHoverDarkMode.TabStop = false; + this.pictureBoxArrowHoverDarkMode.Click += new System.EventHandler(this.PictureBoxClick); + // + // textBoxColorArrowHoverDarkMode + // + this.textBoxColorArrowHoverDarkMode.Location = new System.Drawing.Point(23, 0); + this.textBoxColorArrowHoverDarkMode.Margin = new System.Windows.Forms.Padding(0); + this.textBoxColorArrowHoverDarkMode.MaxLength = 12; + this.textBoxColorArrowHoverDarkMode.Name = "textBoxColorArrowHoverDarkMode"; + this.textBoxColorArrowHoverDarkMode.Size = new System.Drawing.Size(69, 23); + this.textBoxColorArrowHoverDarkMode.TabIndex = 2; + this.textBoxColorArrowHoverDarkMode.Text = "#ffffff"; + this.textBoxColorArrowHoverDarkMode.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); + this.textBoxColorArrowHoverDarkMode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); + this.textBoxColorArrowHoverDarkMode.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); + // + // labelColorDarkModeArrowHover + // + this.labelColorDarkModeArrowHover.Anchor = System.Windows.Forms.AnchorStyles.Left; + this.labelColorDarkModeArrowHover.AutoSize = true; + this.labelColorDarkModeArrowHover.Location = new System.Drawing.Point(95, 4); + this.labelColorDarkModeArrowHover.Name = "labelColorDarkModeArrowHover"; + this.labelColorDarkModeArrowHover.Size = new System.Drawing.Size(180, 15); + this.labelColorDarkModeArrowHover.TabIndex = 0; + this.labelColorDarkModeArrowHover.Text = "labelColorDarkModeArrowHover"; + // + // tableLayoutPanelArrowHoverBackgroundDarkMode + // + this.tableLayoutPanelArrowHoverBackgroundDarkMode.AutoSize = true; + this.tableLayoutPanelArrowHoverBackgroundDarkMode.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.tableLayoutPanelArrowHoverBackgroundDarkMode.ColumnCount = 3; + this.tableLayoutPanelArrowHoverBackgroundDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelArrowHoverBackgroundDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanelArrowHoverBackgroundDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); + this.tableLayoutPanelArrowHoverBackgroundDarkMode.Controls.Add(this.pictureBoxArrowHoverBackgroundDarkMode, 0, 0); + this.tableLayoutPanelArrowHoverBackgroundDarkMode.Controls.Add(this.textBoxColorArrowHoverBackgroundDarkMode, 1, 0); + this.tableLayoutPanelArrowHoverBackgroundDarkMode.Controls.Add(this.labelColorDarkModeArrowHoverBackground, 2, 0); + this.tableLayoutPanelArrowHoverBackgroundDarkMode.Location = new System.Drawing.Point(3, 580); + this.tableLayoutPanelArrowHoverBackgroundDarkMode.Name = "tableLayoutPanelArrowHoverBackgroundDarkMode"; + this.tableLayoutPanelArrowHoverBackgroundDarkMode.RowCount = 1; + this.tableLayoutPanelArrowHoverBackgroundDarkMode.RowStyles.Add(new System.Windows.Forms.RowStyle()); + this.tableLayoutPanelArrowHoverBackgroundDarkMode.Size = new System.Drawing.Size(342, 23); + this.tableLayoutPanelArrowHoverBackgroundDarkMode.TabIndex = 2; + // + // pictureBoxArrowHoverBackgroundDarkMode + // + this.pictureBoxArrowHoverBackgroundDarkMode.BackColor = System.Drawing.Color.White; + this.pictureBoxArrowHoverBackgroundDarkMode.Cursor = System.Windows.Forms.Cursors.Hand; + this.pictureBoxArrowHoverBackgroundDarkMode.Location = new System.Drawing.Point(0, 0); + this.pictureBoxArrowHoverBackgroundDarkMode.Margin = new System.Windows.Forms.Padding(0); + this.pictureBoxArrowHoverBackgroundDarkMode.Name = "pictureBoxArrowHoverBackgroundDarkMode"; + this.pictureBoxArrowHoverBackgroundDarkMode.Size = new System.Drawing.Size(23, 23); + this.pictureBoxArrowHoverBackgroundDarkMode.TabIndex = 1; + this.pictureBoxArrowHoverBackgroundDarkMode.TabStop = false; + this.pictureBoxArrowHoverBackgroundDarkMode.Click += new System.EventHandler(this.PictureBoxClick); + // + // textBoxColorArrowHoverBackgroundDarkMode + // + this.textBoxColorArrowHoverBackgroundDarkMode.Location = new System.Drawing.Point(23, 0); + this.textBoxColorArrowHoverBackgroundDarkMode.Margin = new System.Windows.Forms.Padding(0); + this.textBoxColorArrowHoverBackgroundDarkMode.MaxLength = 12; + this.textBoxColorArrowHoverBackgroundDarkMode.Name = "textBoxColorArrowHoverBackgroundDarkMode"; + this.textBoxColorArrowHoverBackgroundDarkMode.Size = new System.Drawing.Size(69, 23); + this.textBoxColorArrowHoverBackgroundDarkMode.TabIndex = 2; + this.textBoxColorArrowHoverBackgroundDarkMode.Text = "#ffffff"; + this.textBoxColorArrowHoverBackgroundDarkMode.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); + this.textBoxColorArrowHoverBackgroundDarkMode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); + this.textBoxColorArrowHoverBackgroundDarkMode.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); + // + // labelColorDarkModeArrowHoverBackground + // + this.labelColorDarkModeArrowHoverBackground.Anchor = System.Windows.Forms.AnchorStyles.Left; + this.labelColorDarkModeArrowHoverBackground.AutoSize = true; + this.labelColorDarkModeArrowHoverBackground.Location = new System.Drawing.Point(95, 4); + this.labelColorDarkModeArrowHoverBackground.MaximumSize = new System.Drawing.Size(280, 0); + this.labelColorDarkModeArrowHoverBackground.Name = "labelColorDarkModeArrowHoverBackground"; + this.labelColorDarkModeArrowHoverBackground.Size = new System.Drawing.Size(244, 15); + this.labelColorDarkModeArrowHoverBackground.TabIndex = 0; + this.labelColorDarkModeArrowHoverBackground.Text = "labelColorDarkModeArrowHoverBackground"; + // + // buttonColorsDefaultDarkMode + // + this.buttonColorsDefaultDarkMode.AutoSize = true; + this.buttonColorsDefaultDarkMode.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.buttonColorsDefaultDarkMode.Location = new System.Drawing.Point(3, 609); + this.buttonColorsDefaultDarkMode.MinimumSize = new System.Drawing.Size(75, 23); + this.buttonColorsDefaultDarkMode.Name = "buttonColorsDefaultDarkMode"; + this.buttonColorsDefaultDarkMode.Size = new System.Drawing.Size(180, 25); + this.buttonColorsDefaultDarkMode.TabIndex = 2; + this.buttonColorsDefaultDarkMode.Text = "buttonColorsDarkModeDefault"; + this.buttonColorsDefaultDarkMode.UseVisualStyleBackColor = true; + this.buttonColorsDefaultDarkMode.Click += new System.EventHandler(this.ButtonDefaultColorsDark_Click); + // // tableLayoutPanelTitleDarkMode // this.tableLayoutPanelTitleDarkMode.AutoSize = true; @@ -2415,876 +3409,6 @@ namespace SystemTrayMenu.UserInterface this.textBoxColorBackgroundDarkMode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); this.textBoxColorBackgroundDarkMode.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); // - // tableLayoutPanelSearchFieldDarkMode - // - this.tableLayoutPanelSearchFieldDarkMode.AutoSize = true; - this.tableLayoutPanelSearchFieldDarkMode.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; - this.tableLayoutPanelSearchFieldDarkMode.ColumnCount = 3; - this.tableLayoutPanelSearchFieldDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelSearchFieldDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelSearchFieldDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); - this.tableLayoutPanelSearchFieldDarkMode.Controls.Add(this.pictureBoxSearchFieldDarkMode, 0, 0); - this.tableLayoutPanelSearchFieldDarkMode.Controls.Add(this.labelSearchFieldDarkMode, 2, 0); - this.tableLayoutPanelSearchFieldDarkMode.Controls.Add(this.textBoxColorSearchFieldDarkMode, 1, 0); - this.tableLayoutPanelSearchFieldDarkMode.Location = new System.Drawing.Point(3, 101); - this.tableLayoutPanelSearchFieldDarkMode.Name = "tableLayoutPanelSearchFieldDarkMode"; - this.tableLayoutPanelSearchFieldDarkMode.RowCount = 1; - this.tableLayoutPanelSearchFieldDarkMode.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanelSearchFieldDarkMode.Size = new System.Drawing.Size(245, 23); - this.tableLayoutPanelSearchFieldDarkMode.TabIndex = 2; - // - // pictureBoxSearchFieldDarkMode - // - this.pictureBoxSearchFieldDarkMode.BackColor = System.Drawing.Color.White; - this.pictureBoxSearchFieldDarkMode.Cursor = System.Windows.Forms.Cursors.Hand; - this.pictureBoxSearchFieldDarkMode.Location = new System.Drawing.Point(0, 0); - this.pictureBoxSearchFieldDarkMode.Margin = new System.Windows.Forms.Padding(0); - this.pictureBoxSearchFieldDarkMode.Name = "pictureBoxSearchFieldDarkMode"; - this.pictureBoxSearchFieldDarkMode.Size = new System.Drawing.Size(23, 23); - this.pictureBoxSearchFieldDarkMode.TabIndex = 1; - this.pictureBoxSearchFieldDarkMode.TabStop = false; - this.pictureBoxSearchFieldDarkMode.Click += new System.EventHandler(this.PictureBoxClick); - // - // labelSearchFieldDarkMode - // - this.labelSearchFieldDarkMode.Anchor = System.Windows.Forms.AnchorStyles.Left; - this.labelSearchFieldDarkMode.AutoSize = true; - this.labelSearchFieldDarkMode.Location = new System.Drawing.Point(95, 4); - this.labelSearchFieldDarkMode.Name = "labelSearchFieldDarkMode"; - this.labelSearchFieldDarkMode.Size = new System.Drawing.Size(147, 15); - this.labelSearchFieldDarkMode.TabIndex = 0; - this.labelSearchFieldDarkMode.Text = "labelSearchFieldDarkMode"; - // - // textBoxColorSearchFieldDarkMode - // - this.textBoxColorSearchFieldDarkMode.Location = new System.Drawing.Point(23, 0); - this.textBoxColorSearchFieldDarkMode.Margin = new System.Windows.Forms.Padding(0); - this.textBoxColorSearchFieldDarkMode.MaxLength = 12; - this.textBoxColorSearchFieldDarkMode.Name = "textBoxColorSearchFieldDarkMode"; - this.textBoxColorSearchFieldDarkMode.Size = new System.Drawing.Size(69, 23); - this.textBoxColorSearchFieldDarkMode.TabIndex = 2; - this.textBoxColorSearchFieldDarkMode.Text = "#ffffff"; - this.textBoxColorSearchFieldDarkMode.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); - this.textBoxColorSearchFieldDarkMode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); - this.textBoxColorSearchFieldDarkMode.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); - // - // tableLayoutPanelOpenFolderDarkMode - // - this.tableLayoutPanelOpenFolderDarkMode.AutoSize = true; - this.tableLayoutPanelOpenFolderDarkMode.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; - this.tableLayoutPanelOpenFolderDarkMode.ColumnCount = 3; - this.tableLayoutPanelOpenFolderDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelOpenFolderDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelOpenFolderDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); - this.tableLayoutPanelOpenFolderDarkMode.Controls.Add(this.pictureBoxOpenFolderDarkMode, 0, 0); - this.tableLayoutPanelOpenFolderDarkMode.Controls.Add(this.labelOpenFolderDarkMode, 2, 0); - this.tableLayoutPanelOpenFolderDarkMode.Controls.Add(this.textBoxColorOpenFolderDarkMode, 1, 0); - this.tableLayoutPanelOpenFolderDarkMode.Location = new System.Drawing.Point(3, 130); - this.tableLayoutPanelOpenFolderDarkMode.Name = "tableLayoutPanelOpenFolderDarkMode"; - this.tableLayoutPanelOpenFolderDarkMode.RowCount = 1; - this.tableLayoutPanelOpenFolderDarkMode.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanelOpenFolderDarkMode.Size = new System.Drawing.Size(247, 23); - this.tableLayoutPanelOpenFolderDarkMode.TabIndex = 2; - // - // pictureBoxOpenFolderDarkMode - // - this.pictureBoxOpenFolderDarkMode.BackColor = System.Drawing.Color.White; - this.pictureBoxOpenFolderDarkMode.Cursor = System.Windows.Forms.Cursors.Hand; - this.pictureBoxOpenFolderDarkMode.Location = new System.Drawing.Point(0, 0); - this.pictureBoxOpenFolderDarkMode.Margin = new System.Windows.Forms.Padding(0); - this.pictureBoxOpenFolderDarkMode.Name = "pictureBoxOpenFolderDarkMode"; - this.pictureBoxOpenFolderDarkMode.Size = new System.Drawing.Size(23, 23); - this.pictureBoxOpenFolderDarkMode.TabIndex = 1; - this.pictureBoxOpenFolderDarkMode.TabStop = false; - this.pictureBoxOpenFolderDarkMode.Click += new System.EventHandler(this.PictureBoxClick); - // - // labelOpenFolderDarkMode - // - this.labelOpenFolderDarkMode.Anchor = System.Windows.Forms.AnchorStyles.Left; - this.labelOpenFolderDarkMode.AutoSize = true; - this.labelOpenFolderDarkMode.Location = new System.Drawing.Point(95, 4); - this.labelOpenFolderDarkMode.Name = "labelOpenFolderDarkMode"; - this.labelOpenFolderDarkMode.Size = new System.Drawing.Size(149, 15); - this.labelOpenFolderDarkMode.TabIndex = 0; - this.labelOpenFolderDarkMode.Text = "labelOpenFolderDarkMode"; - // - // textBoxColorOpenFolderDarkMode - // - this.textBoxColorOpenFolderDarkMode.Location = new System.Drawing.Point(23, 0); - this.textBoxColorOpenFolderDarkMode.Margin = new System.Windows.Forms.Padding(0); - this.textBoxColorOpenFolderDarkMode.MaxLength = 12; - this.textBoxColorOpenFolderDarkMode.Name = "textBoxColorOpenFolderDarkMode"; - this.textBoxColorOpenFolderDarkMode.Size = new System.Drawing.Size(69, 23); - this.textBoxColorOpenFolderDarkMode.TabIndex = 2; - this.textBoxColorOpenFolderDarkMode.Text = "#ffffff"; - this.textBoxColorOpenFolderDarkMode.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); - this.textBoxColorOpenFolderDarkMode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); - this.textBoxColorOpenFolderDarkMode.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); - // - // tableLayoutPanelOpenFolderBorderDarkMode - // - this.tableLayoutPanelOpenFolderBorderDarkMode.AutoSize = true; - this.tableLayoutPanelOpenFolderBorderDarkMode.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; - this.tableLayoutPanelOpenFolderBorderDarkMode.ColumnCount = 3; - this.tableLayoutPanelOpenFolderBorderDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelOpenFolderBorderDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelOpenFolderBorderDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); - this.tableLayoutPanelOpenFolderBorderDarkMode.Controls.Add(this.pictureBoxOpenFolderBorderDarkMode, 0, 0); - this.tableLayoutPanelOpenFolderBorderDarkMode.Controls.Add(this.labelOpenFolderBorderDarkMode, 2, 0); - this.tableLayoutPanelOpenFolderBorderDarkMode.Controls.Add(this.textBoxColorOpenFolderBorderDarkMode, 1, 0); - this.tableLayoutPanelOpenFolderBorderDarkMode.Location = new System.Drawing.Point(3, 159); - this.tableLayoutPanelOpenFolderBorderDarkMode.Name = "tableLayoutPanelOpenFolderBorderDarkMode"; - this.tableLayoutPanelOpenFolderBorderDarkMode.RowCount = 1; - this.tableLayoutPanelOpenFolderBorderDarkMode.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanelOpenFolderBorderDarkMode.Size = new System.Drawing.Size(282, 23); - this.tableLayoutPanelOpenFolderBorderDarkMode.TabIndex = 2; - // - // pictureBoxOpenFolderBorderDarkMode - // - this.pictureBoxOpenFolderBorderDarkMode.BackColor = System.Drawing.Color.White; - this.pictureBoxOpenFolderBorderDarkMode.Cursor = System.Windows.Forms.Cursors.Hand; - this.pictureBoxOpenFolderBorderDarkMode.Location = new System.Drawing.Point(0, 0); - this.pictureBoxOpenFolderBorderDarkMode.Margin = new System.Windows.Forms.Padding(0); - this.pictureBoxOpenFolderBorderDarkMode.Name = "pictureBoxOpenFolderBorderDarkMode"; - this.pictureBoxOpenFolderBorderDarkMode.Size = new System.Drawing.Size(23, 23); - this.pictureBoxOpenFolderBorderDarkMode.TabIndex = 1; - this.pictureBoxOpenFolderBorderDarkMode.TabStop = false; - this.pictureBoxOpenFolderBorderDarkMode.Click += new System.EventHandler(this.PictureBoxClick); - // - // labelOpenFolderBorderDarkMode - // - this.labelOpenFolderBorderDarkMode.Anchor = System.Windows.Forms.AnchorStyles.Left; - this.labelOpenFolderBorderDarkMode.AutoSize = true; - this.labelOpenFolderBorderDarkMode.Location = new System.Drawing.Point(95, 4); - this.labelOpenFolderBorderDarkMode.Name = "labelOpenFolderBorderDarkMode"; - this.labelOpenFolderBorderDarkMode.Size = new System.Drawing.Size(184, 15); - this.labelOpenFolderBorderDarkMode.TabIndex = 0; - this.labelOpenFolderBorderDarkMode.Text = "labelOpenFolderBorderDarkMode"; - // - // textBoxColorOpenFolderBorderDarkMode - // - this.textBoxColorOpenFolderBorderDarkMode.Location = new System.Drawing.Point(23, 0); - this.textBoxColorOpenFolderBorderDarkMode.Margin = new System.Windows.Forms.Padding(0); - this.textBoxColorOpenFolderBorderDarkMode.Name = "textBoxColorOpenFolderBorderDarkMode"; - this.textBoxColorOpenFolderBorderDarkMode.Size = new System.Drawing.Size(69, 23); - this.textBoxColorOpenFolderBorderDarkMode.TabIndex = 2; - this.textBoxColorOpenFolderBorderDarkMode.Text = "#ffffff"; - this.textBoxColorOpenFolderBorderDarkMode.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); - this.textBoxColorOpenFolderBorderDarkMode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); - this.textBoxColorOpenFolderBorderDarkMode.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); - // - // tableLayoutPanelSelectedItemDarkMode - // - this.tableLayoutPanelSelectedItemDarkMode.AutoSize = true; - this.tableLayoutPanelSelectedItemDarkMode.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; - this.tableLayoutPanelSelectedItemDarkMode.ColumnCount = 3; - this.tableLayoutPanelSelectedItemDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelSelectedItemDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelSelectedItemDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); - this.tableLayoutPanelSelectedItemDarkMode.Controls.Add(this.pictureColorBoxSelectedItemDarkMode, 0, 0); - this.tableLayoutPanelSelectedItemDarkMode.Controls.Add(this.labelSelectedItemDarkMode, 2, 0); - this.tableLayoutPanelSelectedItemDarkMode.Controls.Add(this.textBoxColorSelecetedItemDarkMode, 1, 0); - this.tableLayoutPanelSelectedItemDarkMode.Location = new System.Drawing.Point(3, 188); - this.tableLayoutPanelSelectedItemDarkMode.Name = "tableLayoutPanelSelectedItemDarkMode"; - this.tableLayoutPanelSelectedItemDarkMode.RowCount = 1; - this.tableLayoutPanelSelectedItemDarkMode.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanelSelectedItemDarkMode.Size = new System.Drawing.Size(253, 23); - this.tableLayoutPanelSelectedItemDarkMode.TabIndex = 2; - // - // pictureColorBoxSelectedItemDarkMode - // - this.pictureColorBoxSelectedItemDarkMode.BackColor = System.Drawing.Color.White; - this.pictureColorBoxSelectedItemDarkMode.Cursor = System.Windows.Forms.Cursors.Hand; - this.pictureColorBoxSelectedItemDarkMode.Location = new System.Drawing.Point(0, 0); - this.pictureColorBoxSelectedItemDarkMode.Margin = new System.Windows.Forms.Padding(0); - this.pictureColorBoxSelectedItemDarkMode.Name = "pictureColorBoxSelectedItemDarkMode"; - this.pictureColorBoxSelectedItemDarkMode.Size = new System.Drawing.Size(23, 23); - this.pictureColorBoxSelectedItemDarkMode.TabIndex = 1; - this.pictureColorBoxSelectedItemDarkMode.TabStop = false; - this.pictureColorBoxSelectedItemDarkMode.Click += new System.EventHandler(this.PictureBoxClick); - // - // labelSelectedItemDarkMode - // - this.labelSelectedItemDarkMode.Anchor = System.Windows.Forms.AnchorStyles.Left; - this.labelSelectedItemDarkMode.AutoSize = true; - this.labelSelectedItemDarkMode.Location = new System.Drawing.Point(95, 4); - this.labelSelectedItemDarkMode.Name = "labelSelectedItemDarkMode"; - this.labelSelectedItemDarkMode.Size = new System.Drawing.Size(155, 15); - this.labelSelectedItemDarkMode.TabIndex = 0; - this.labelSelectedItemDarkMode.Text = "labelSelectedItemDarkMode"; - // - // textBoxColorSelecetedItemDarkMode - // - this.textBoxColorSelecetedItemDarkMode.Location = new System.Drawing.Point(23, 0); - this.textBoxColorSelecetedItemDarkMode.Margin = new System.Windows.Forms.Padding(0); - this.textBoxColorSelecetedItemDarkMode.MaxLength = 12; - this.textBoxColorSelecetedItemDarkMode.Name = "textBoxColorSelecetedItemDarkMode"; - this.textBoxColorSelecetedItemDarkMode.Size = new System.Drawing.Size(69, 23); - this.textBoxColorSelecetedItemDarkMode.TabIndex = 2; - this.textBoxColorSelecetedItemDarkMode.Text = "#ffffff"; - this.textBoxColorSelecetedItemDarkMode.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); - this.textBoxColorSelecetedItemDarkMode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); - this.textBoxColorSelecetedItemDarkMode.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); - // - // tableLayoutPanelSelectedItemBorderDarkMode - // - this.tableLayoutPanelSelectedItemBorderDarkMode.AutoSize = true; - this.tableLayoutPanelSelectedItemBorderDarkMode.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; - this.tableLayoutPanelSelectedItemBorderDarkMode.ColumnCount = 3; - this.tableLayoutPanelSelectedItemBorderDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelSelectedItemBorderDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelSelectedItemBorderDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); - this.tableLayoutPanelSelectedItemBorderDarkMode.Controls.Add(this.pictureBoxSelectedItemBorderDarkMode, 0, 0); - this.tableLayoutPanelSelectedItemBorderDarkMode.Controls.Add(this.labelSelectedItemBorderDarkMode, 2, 0); - this.tableLayoutPanelSelectedItemBorderDarkMode.Controls.Add(this.textBoxColorSelectedItemBorderDarkMode, 1, 0); - this.tableLayoutPanelSelectedItemBorderDarkMode.Location = new System.Drawing.Point(3, 217); - this.tableLayoutPanelSelectedItemBorderDarkMode.Name = "tableLayoutPanelSelectedItemBorderDarkMode"; - this.tableLayoutPanelSelectedItemBorderDarkMode.RowCount = 1; - this.tableLayoutPanelSelectedItemBorderDarkMode.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanelSelectedItemBorderDarkMode.Size = new System.Drawing.Size(288, 23); - this.tableLayoutPanelSelectedItemBorderDarkMode.TabIndex = 2; - // - // pictureBoxSelectedItemBorderDarkMode - // - this.pictureBoxSelectedItemBorderDarkMode.BackColor = System.Drawing.Color.White; - this.pictureBoxSelectedItemBorderDarkMode.Cursor = System.Windows.Forms.Cursors.Hand; - this.pictureBoxSelectedItemBorderDarkMode.Location = new System.Drawing.Point(0, 0); - this.pictureBoxSelectedItemBorderDarkMode.Margin = new System.Windows.Forms.Padding(0); - this.pictureBoxSelectedItemBorderDarkMode.Name = "pictureBoxSelectedItemBorderDarkMode"; - this.pictureBoxSelectedItemBorderDarkMode.Size = new System.Drawing.Size(23, 23); - this.pictureBoxSelectedItemBorderDarkMode.TabIndex = 1; - this.pictureBoxSelectedItemBorderDarkMode.TabStop = false; - this.pictureBoxSelectedItemBorderDarkMode.Click += new System.EventHandler(this.PictureBoxClick); - // - // labelSelectedItemBorderDarkMode - // - this.labelSelectedItemBorderDarkMode.Anchor = System.Windows.Forms.AnchorStyles.Left; - this.labelSelectedItemBorderDarkMode.AutoSize = true; - this.labelSelectedItemBorderDarkMode.Location = new System.Drawing.Point(95, 4); - this.labelSelectedItemBorderDarkMode.Name = "labelSelectedItemBorderDarkMode"; - this.labelSelectedItemBorderDarkMode.Size = new System.Drawing.Size(190, 15); - this.labelSelectedItemBorderDarkMode.TabIndex = 0; - this.labelSelectedItemBorderDarkMode.Text = "labelSelectedItemBorderDarkMode"; - // - // textBoxColorSelectedItemBorderDarkMode - // - this.textBoxColorSelectedItemBorderDarkMode.Location = new System.Drawing.Point(23, 0); - this.textBoxColorSelectedItemBorderDarkMode.Margin = new System.Windows.Forms.Padding(0); - this.textBoxColorSelectedItemBorderDarkMode.MaxLength = 12; - this.textBoxColorSelectedItemBorderDarkMode.Name = "textBoxColorSelectedItemBorderDarkMode"; - this.textBoxColorSelectedItemBorderDarkMode.Size = new System.Drawing.Size(69, 23); - this.textBoxColorSelectedItemBorderDarkMode.TabIndex = 2; - this.textBoxColorSelectedItemBorderDarkMode.Text = "#ffffff"; - this.textBoxColorSelectedItemBorderDarkMode.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); - this.textBoxColorSelectedItemBorderDarkMode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); - this.textBoxColorSelectedItemBorderDarkMode.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); - // - // tableLayoutPanelWarningDarkMode - // - this.tableLayoutPanelWarningDarkMode.AutoSize = true; - this.tableLayoutPanelWarningDarkMode.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; - this.tableLayoutPanelWarningDarkMode.ColumnCount = 3; - this.tableLayoutPanelWarningDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelWarningDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelWarningDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); - this.tableLayoutPanelWarningDarkMode.Controls.Add(this.pictureBoxWarningDarkMode, 0, 0); - this.tableLayoutPanelWarningDarkMode.Controls.Add(this.labelWarningDarkMode, 2, 0); - this.tableLayoutPanelWarningDarkMode.Controls.Add(this.textBoxColorWarningDarkMode, 1, 0); - this.tableLayoutPanelWarningDarkMode.Location = new System.Drawing.Point(3, 246); - this.tableLayoutPanelWarningDarkMode.Name = "tableLayoutPanelWarningDarkMode"; - this.tableLayoutPanelWarningDarkMode.RowCount = 1; - this.tableLayoutPanelWarningDarkMode.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanelWarningDarkMode.Size = new System.Drawing.Size(230, 23); - this.tableLayoutPanelWarningDarkMode.TabIndex = 2; - // - // pictureBoxWarningDarkMode - // - this.pictureBoxWarningDarkMode.BackColor = System.Drawing.Color.White; - this.pictureBoxWarningDarkMode.Cursor = System.Windows.Forms.Cursors.Hand; - this.pictureBoxWarningDarkMode.Location = new System.Drawing.Point(0, 0); - this.pictureBoxWarningDarkMode.Margin = new System.Windows.Forms.Padding(0); - this.pictureBoxWarningDarkMode.Name = "pictureBoxWarningDarkMode"; - this.pictureBoxWarningDarkMode.Size = new System.Drawing.Size(23, 23); - this.pictureBoxWarningDarkMode.TabIndex = 1; - this.pictureBoxWarningDarkMode.TabStop = false; - this.pictureBoxWarningDarkMode.Click += new System.EventHandler(this.PictureBoxClick); - // - // labelWarningDarkMode - // - this.labelWarningDarkMode.Anchor = System.Windows.Forms.AnchorStyles.Left; - this.labelWarningDarkMode.AutoSize = true; - this.labelWarningDarkMode.Location = new System.Drawing.Point(95, 4); - this.labelWarningDarkMode.Name = "labelWarningDarkMode"; - this.labelWarningDarkMode.Size = new System.Drawing.Size(132, 15); - this.labelWarningDarkMode.TabIndex = 0; - this.labelWarningDarkMode.Text = "labelWarningDarkMode"; - // - // textBoxColorWarningDarkMode - // - this.textBoxColorWarningDarkMode.Location = new System.Drawing.Point(23, 0); - this.textBoxColorWarningDarkMode.Margin = new System.Windows.Forms.Padding(0); - this.textBoxColorWarningDarkMode.MaxLength = 12; - this.textBoxColorWarningDarkMode.Name = "textBoxColorWarningDarkMode"; - this.textBoxColorWarningDarkMode.Size = new System.Drawing.Size(69, 23); - this.textBoxColorWarningDarkMode.TabIndex = 2; - this.textBoxColorWarningDarkMode.Text = "#ffffff"; - this.textBoxColorWarningDarkMode.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); - this.textBoxColorWarningDarkMode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); - this.textBoxColorWarningDarkMode.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); - // - // labelScrollbarDarkMode - // - this.labelScrollbarDarkMode.AutoSize = true; - this.labelScrollbarDarkMode.Location = new System.Drawing.Point(3, 272); - this.labelScrollbarDarkMode.Name = "labelScrollbarDarkMode"; - this.labelScrollbarDarkMode.Size = new System.Drawing.Size(133, 15); - this.labelScrollbarDarkMode.TabIndex = 3; - this.labelScrollbarDarkMode.Text = "labelScrollbarDarkMode"; - // - // tableLayoutPanelScrollbarBackgroundDarkMode - // - this.tableLayoutPanelScrollbarBackgroundDarkMode.AutoSize = true; - this.tableLayoutPanelScrollbarBackgroundDarkMode.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; - this.tableLayoutPanelScrollbarBackgroundDarkMode.ColumnCount = 3; - this.tableLayoutPanelScrollbarBackgroundDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelScrollbarBackgroundDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelScrollbarBackgroundDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); - this.tableLayoutPanelScrollbarBackgroundDarkMode.Controls.Add(this.pictureBoxScrollbarBackgroundDarkMode, 0, 0); - this.tableLayoutPanelScrollbarBackgroundDarkMode.Controls.Add(this.textBoxColorScrollbarBackgroundDarkMode, 1, 0); - this.tableLayoutPanelScrollbarBackgroundDarkMode.Controls.Add(this.labelColorDarkModeScrollbarBackground, 2, 0); - this.tableLayoutPanelScrollbarBackgroundDarkMode.Location = new System.Drawing.Point(3, 290); - this.tableLayoutPanelScrollbarBackgroundDarkMode.Name = "tableLayoutPanelScrollbarBackgroundDarkMode"; - this.tableLayoutPanelScrollbarBackgroundDarkMode.RowCount = 1; - this.tableLayoutPanelScrollbarBackgroundDarkMode.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanelScrollbarBackgroundDarkMode.Size = new System.Drawing.Size(324, 23); - this.tableLayoutPanelScrollbarBackgroundDarkMode.TabIndex = 2; - // - // pictureBoxScrollbarBackgroundDarkMode - // - this.pictureBoxScrollbarBackgroundDarkMode.BackColor = System.Drawing.Color.White; - this.pictureBoxScrollbarBackgroundDarkMode.Cursor = System.Windows.Forms.Cursors.Hand; - this.pictureBoxScrollbarBackgroundDarkMode.Location = new System.Drawing.Point(0, 0); - this.pictureBoxScrollbarBackgroundDarkMode.Margin = new System.Windows.Forms.Padding(0); - this.pictureBoxScrollbarBackgroundDarkMode.Name = "pictureBoxScrollbarBackgroundDarkMode"; - this.pictureBoxScrollbarBackgroundDarkMode.Size = new System.Drawing.Size(23, 23); - this.pictureBoxScrollbarBackgroundDarkMode.TabIndex = 1; - this.pictureBoxScrollbarBackgroundDarkMode.TabStop = false; - this.pictureBoxScrollbarBackgroundDarkMode.Click += new System.EventHandler(this.PictureBoxClick); - // - // textBoxColorScrollbarBackgroundDarkMode - // - this.textBoxColorScrollbarBackgroundDarkMode.Location = new System.Drawing.Point(23, 0); - this.textBoxColorScrollbarBackgroundDarkMode.Margin = new System.Windows.Forms.Padding(0); - this.textBoxColorScrollbarBackgroundDarkMode.MaxLength = 12; - this.textBoxColorScrollbarBackgroundDarkMode.Name = "textBoxColorScrollbarBackgroundDarkMode"; - this.textBoxColorScrollbarBackgroundDarkMode.Size = new System.Drawing.Size(69, 23); - this.textBoxColorScrollbarBackgroundDarkMode.TabIndex = 2; - this.textBoxColorScrollbarBackgroundDarkMode.Text = "#ffffff"; - this.textBoxColorScrollbarBackgroundDarkMode.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); - this.textBoxColorScrollbarBackgroundDarkMode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); - this.textBoxColorScrollbarBackgroundDarkMode.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); - // - // labelColorDarkModeScrollbarBackground - // - this.labelColorDarkModeScrollbarBackground.Anchor = System.Windows.Forms.AnchorStyles.Left; - this.labelColorDarkModeScrollbarBackground.AutoSize = true; - this.labelColorDarkModeScrollbarBackground.Location = new System.Drawing.Point(95, 4); - this.labelColorDarkModeScrollbarBackground.Name = "labelColorDarkModeScrollbarBackground"; - this.labelColorDarkModeScrollbarBackground.Size = new System.Drawing.Size(226, 15); - this.labelColorDarkModeScrollbarBackground.TabIndex = 0; - this.labelColorDarkModeScrollbarBackground.Text = "labelColorDarkModeScrollbarBackground"; - // - // tableLayoutPanelSliderDarkMode - // - this.tableLayoutPanelSliderDarkMode.AutoSize = true; - this.tableLayoutPanelSliderDarkMode.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; - this.tableLayoutPanelSliderDarkMode.ColumnCount = 3; - this.tableLayoutPanelSliderDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelSliderDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelSliderDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); - this.tableLayoutPanelSliderDarkMode.Controls.Add(this.pictureBoxSliderDarkMode, 0, 0); - this.tableLayoutPanelSliderDarkMode.Controls.Add(this.textBoxColorSliderDarkMode, 1, 0); - this.tableLayoutPanelSliderDarkMode.Controls.Add(this.labelColorDarkModeSlider, 2, 0); - this.tableLayoutPanelSliderDarkMode.Location = new System.Drawing.Point(3, 319); - this.tableLayoutPanelSliderDarkMode.Name = "tableLayoutPanelSliderDarkMode"; - this.tableLayoutPanelSliderDarkMode.RowCount = 1; - this.tableLayoutPanelSliderDarkMode.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanelSliderDarkMode.Size = new System.Drawing.Size(243, 23); - this.tableLayoutPanelSliderDarkMode.TabIndex = 2; - // - // pictureBoxSliderDarkMode - // - this.pictureBoxSliderDarkMode.BackColor = System.Drawing.Color.White; - this.pictureBoxSliderDarkMode.Cursor = System.Windows.Forms.Cursors.Hand; - this.pictureBoxSliderDarkMode.Location = new System.Drawing.Point(0, 0); - this.pictureBoxSliderDarkMode.Margin = new System.Windows.Forms.Padding(0); - this.pictureBoxSliderDarkMode.Name = "pictureBoxSliderDarkMode"; - this.pictureBoxSliderDarkMode.Size = new System.Drawing.Size(23, 23); - this.pictureBoxSliderDarkMode.TabIndex = 1; - this.pictureBoxSliderDarkMode.TabStop = false; - this.pictureBoxSliderDarkMode.Click += new System.EventHandler(this.PictureBoxClick); - // - // textBoxColorSliderDarkMode - // - this.textBoxColorSliderDarkMode.Location = new System.Drawing.Point(23, 0); - this.textBoxColorSliderDarkMode.Margin = new System.Windows.Forms.Padding(0); - this.textBoxColorSliderDarkMode.MaxLength = 12; - this.textBoxColorSliderDarkMode.Name = "textBoxColorSliderDarkMode"; - this.textBoxColorSliderDarkMode.Size = new System.Drawing.Size(69, 23); - this.textBoxColorSliderDarkMode.TabIndex = 2; - this.textBoxColorSliderDarkMode.Text = "#ffffff"; - this.textBoxColorSliderDarkMode.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); - this.textBoxColorSliderDarkMode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); - this.textBoxColorSliderDarkMode.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); - // - // labelColorDarkModeSlider - // - this.labelColorDarkModeSlider.Anchor = System.Windows.Forms.AnchorStyles.Left; - this.labelColorDarkModeSlider.AutoSize = true; - this.labelColorDarkModeSlider.Location = new System.Drawing.Point(95, 4); - this.labelColorDarkModeSlider.Name = "labelColorDarkModeSlider"; - this.labelColorDarkModeSlider.Size = new System.Drawing.Size(145, 15); - this.labelColorDarkModeSlider.TabIndex = 0; - this.labelColorDarkModeSlider.Text = "labelColorDarkModeSlider"; - // - // tableLayoutPanelSliderDraggingDarkMode - // - this.tableLayoutPanelSliderDraggingDarkMode.AutoSize = true; - this.tableLayoutPanelSliderDraggingDarkMode.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; - this.tableLayoutPanelSliderDraggingDarkMode.ColumnCount = 3; - this.tableLayoutPanelSliderDraggingDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelSliderDraggingDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelSliderDraggingDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); - this.tableLayoutPanelSliderDraggingDarkMode.Controls.Add(this.pictureBoxSliderDraggingDarkMode, 0, 0); - this.tableLayoutPanelSliderDraggingDarkMode.Controls.Add(this.textBoxColorSliderDraggingDarkMode, 1, 0); - this.tableLayoutPanelSliderDraggingDarkMode.Controls.Add(this.labelColorDarkModeSliderDragging, 2, 0); - this.tableLayoutPanelSliderDraggingDarkMode.Location = new System.Drawing.Point(3, 348); - this.tableLayoutPanelSliderDraggingDarkMode.Name = "tableLayoutPanelSliderDraggingDarkMode"; - this.tableLayoutPanelSliderDraggingDarkMode.RowCount = 1; - this.tableLayoutPanelSliderDraggingDarkMode.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanelSliderDraggingDarkMode.Size = new System.Drawing.Size(292, 23); - this.tableLayoutPanelSliderDraggingDarkMode.TabIndex = 2; - // - // pictureBoxSliderDraggingDarkMode - // - this.pictureBoxSliderDraggingDarkMode.BackColor = System.Drawing.Color.White; - this.pictureBoxSliderDraggingDarkMode.Cursor = System.Windows.Forms.Cursors.Hand; - this.pictureBoxSliderDraggingDarkMode.Location = new System.Drawing.Point(0, 0); - this.pictureBoxSliderDraggingDarkMode.Margin = new System.Windows.Forms.Padding(0); - this.pictureBoxSliderDraggingDarkMode.Name = "pictureBoxSliderDraggingDarkMode"; - this.pictureBoxSliderDraggingDarkMode.Size = new System.Drawing.Size(23, 23); - this.pictureBoxSliderDraggingDarkMode.TabIndex = 1; - this.pictureBoxSliderDraggingDarkMode.TabStop = false; - this.pictureBoxSliderDraggingDarkMode.Click += new System.EventHandler(this.PictureBoxClick); - // - // textBoxColorSliderDraggingDarkMode - // - this.textBoxColorSliderDraggingDarkMode.Location = new System.Drawing.Point(23, 0); - this.textBoxColorSliderDraggingDarkMode.Margin = new System.Windows.Forms.Padding(0); - this.textBoxColorSliderDraggingDarkMode.MaxLength = 12; - this.textBoxColorSliderDraggingDarkMode.Name = "textBoxColorSliderDraggingDarkMode"; - this.textBoxColorSliderDraggingDarkMode.Size = new System.Drawing.Size(69, 23); - this.textBoxColorSliderDraggingDarkMode.TabIndex = 2; - this.textBoxColorSliderDraggingDarkMode.Text = "#ffffff"; - this.textBoxColorSliderDraggingDarkMode.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); - this.textBoxColorSliderDraggingDarkMode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); - this.textBoxColorSliderDraggingDarkMode.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); - // - // labelColorDarkModeSliderDragging - // - this.labelColorDarkModeSliderDragging.Anchor = System.Windows.Forms.AnchorStyles.Left; - this.labelColorDarkModeSliderDragging.AutoSize = true; - this.labelColorDarkModeSliderDragging.Location = new System.Drawing.Point(95, 4); - this.labelColorDarkModeSliderDragging.Name = "labelColorDarkModeSliderDragging"; - this.labelColorDarkModeSliderDragging.Size = new System.Drawing.Size(194, 15); - this.labelColorDarkModeSliderDragging.TabIndex = 0; - this.labelColorDarkModeSliderDragging.Text = "labelColorDarkModeSliderDragging"; - // - // tableLayoutPanelSliderHoverDarkMode - // - this.tableLayoutPanelSliderHoverDarkMode.AutoSize = true; - this.tableLayoutPanelSliderHoverDarkMode.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; - this.tableLayoutPanelSliderHoverDarkMode.ColumnCount = 3; - this.tableLayoutPanelSliderHoverDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelSliderHoverDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelSliderHoverDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); - this.tableLayoutPanelSliderHoverDarkMode.Controls.Add(this.pictureBoxSliderHoverDarkMode, 0, 0); - this.tableLayoutPanelSliderHoverDarkMode.Controls.Add(this.textBoxColorSliderHoverDarkMode, 1, 0); - this.tableLayoutPanelSliderHoverDarkMode.Controls.Add(this.labelColorDarkModeSliderHover, 2, 0); - this.tableLayoutPanelSliderHoverDarkMode.Location = new System.Drawing.Point(3, 377); - this.tableLayoutPanelSliderHoverDarkMode.Name = "tableLayoutPanelSliderHoverDarkMode"; - this.tableLayoutPanelSliderHoverDarkMode.RowCount = 1; - this.tableLayoutPanelSliderHoverDarkMode.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanelSliderHoverDarkMode.Size = new System.Drawing.Size(275, 23); - this.tableLayoutPanelSliderHoverDarkMode.TabIndex = 2; - // - // pictureBoxSliderHoverDarkMode - // - this.pictureBoxSliderHoverDarkMode.BackColor = System.Drawing.Color.White; - this.pictureBoxSliderHoverDarkMode.Cursor = System.Windows.Forms.Cursors.Hand; - this.pictureBoxSliderHoverDarkMode.Location = new System.Drawing.Point(0, 0); - this.pictureBoxSliderHoverDarkMode.Margin = new System.Windows.Forms.Padding(0); - this.pictureBoxSliderHoverDarkMode.Name = "pictureBoxSliderHoverDarkMode"; - this.pictureBoxSliderHoverDarkMode.Size = new System.Drawing.Size(23, 23); - this.pictureBoxSliderHoverDarkMode.TabIndex = 1; - this.pictureBoxSliderHoverDarkMode.TabStop = false; - this.pictureBoxSliderHoverDarkMode.Click += new System.EventHandler(this.PictureBoxClick); - // - // textBoxColorSliderHoverDarkMode - // - this.textBoxColorSliderHoverDarkMode.Location = new System.Drawing.Point(23, 0); - this.textBoxColorSliderHoverDarkMode.Margin = new System.Windows.Forms.Padding(0); - this.textBoxColorSliderHoverDarkMode.MaxLength = 12; - this.textBoxColorSliderHoverDarkMode.Name = "textBoxColorSliderHoverDarkMode"; - this.textBoxColorSliderHoverDarkMode.Size = new System.Drawing.Size(69, 23); - this.textBoxColorSliderHoverDarkMode.TabIndex = 2; - this.textBoxColorSliderHoverDarkMode.Text = "#ffffff"; - this.textBoxColorSliderHoverDarkMode.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); - this.textBoxColorSliderHoverDarkMode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); - this.textBoxColorSliderHoverDarkMode.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); - // - // labelColorDarkModeSliderHover - // - this.labelColorDarkModeSliderHover.Anchor = System.Windows.Forms.AnchorStyles.Left; - this.labelColorDarkModeSliderHover.AutoSize = true; - this.labelColorDarkModeSliderHover.Location = new System.Drawing.Point(95, 4); - this.labelColorDarkModeSliderHover.Name = "labelColorDarkModeSliderHover"; - this.labelColorDarkModeSliderHover.Size = new System.Drawing.Size(177, 15); - this.labelColorDarkModeSliderHover.TabIndex = 0; - this.labelColorDarkModeSliderHover.Text = "labelColorDarkModeSliderHover"; - // - // tableLayoutPanelSliderArrowsAndTrackHoverDarkMode - // - this.tableLayoutPanelSliderArrowsAndTrackHoverDarkMode.AutoSize = true; - this.tableLayoutPanelSliderArrowsAndTrackHoverDarkMode.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; - this.tableLayoutPanelSliderArrowsAndTrackHoverDarkMode.ColumnCount = 3; - this.tableLayoutPanelSliderArrowsAndTrackHoverDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelSliderArrowsAndTrackHoverDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelSliderArrowsAndTrackHoverDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); - this.tableLayoutPanelSliderArrowsAndTrackHoverDarkMode.Controls.Add(this.pictureBoxSliderArrowsAndTrackHoverDarkMode, 0, 0); - this.tableLayoutPanelSliderArrowsAndTrackHoverDarkMode.Controls.Add(this.textBoxColorSliderArrowsAndTrackHoverDarkMode, 1, 0); - this.tableLayoutPanelSliderArrowsAndTrackHoverDarkMode.Controls.Add(this.labelColorDarkModeSliderArrowsAndTrackHover, 2, 0); - this.tableLayoutPanelSliderArrowsAndTrackHoverDarkMode.Location = new System.Drawing.Point(3, 406); - this.tableLayoutPanelSliderArrowsAndTrackHoverDarkMode.Name = "tableLayoutPanelSliderArrowsAndTrackHoverDarkMode"; - this.tableLayoutPanelSliderArrowsAndTrackHoverDarkMode.RowCount = 1; - this.tableLayoutPanelSliderArrowsAndTrackHoverDarkMode.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanelSliderArrowsAndTrackHoverDarkMode.Size = new System.Drawing.Size(361, 23); - this.tableLayoutPanelSliderArrowsAndTrackHoverDarkMode.TabIndex = 2; - // - // pictureBoxSliderArrowsAndTrackHoverDarkMode - // - this.pictureBoxSliderArrowsAndTrackHoverDarkMode.BackColor = System.Drawing.Color.White; - this.pictureBoxSliderArrowsAndTrackHoverDarkMode.Cursor = System.Windows.Forms.Cursors.Hand; - this.pictureBoxSliderArrowsAndTrackHoverDarkMode.Location = new System.Drawing.Point(0, 0); - this.pictureBoxSliderArrowsAndTrackHoverDarkMode.Margin = new System.Windows.Forms.Padding(0); - this.pictureBoxSliderArrowsAndTrackHoverDarkMode.Name = "pictureBoxSliderArrowsAndTrackHoverDarkMode"; - this.pictureBoxSliderArrowsAndTrackHoverDarkMode.Size = new System.Drawing.Size(23, 23); - this.pictureBoxSliderArrowsAndTrackHoverDarkMode.TabIndex = 1; - this.pictureBoxSliderArrowsAndTrackHoverDarkMode.TabStop = false; - this.pictureBoxSliderArrowsAndTrackHoverDarkMode.Click += new System.EventHandler(this.PictureBoxClick); - // - // textBoxColorSliderArrowsAndTrackHoverDarkMode - // - this.textBoxColorSliderArrowsAndTrackHoverDarkMode.Location = new System.Drawing.Point(23, 0); - this.textBoxColorSliderArrowsAndTrackHoverDarkMode.Margin = new System.Windows.Forms.Padding(0); - this.textBoxColorSliderArrowsAndTrackHoverDarkMode.MaxLength = 12; - this.textBoxColorSliderArrowsAndTrackHoverDarkMode.Name = "textBoxColorSliderArrowsAndTrackHoverDarkMode"; - this.textBoxColorSliderArrowsAndTrackHoverDarkMode.Size = new System.Drawing.Size(69, 23); - this.textBoxColorSliderArrowsAndTrackHoverDarkMode.TabIndex = 2; - this.textBoxColorSliderArrowsAndTrackHoverDarkMode.Text = "#ffffff"; - this.textBoxColorSliderArrowsAndTrackHoverDarkMode.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); - this.textBoxColorSliderArrowsAndTrackHoverDarkMode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); - this.textBoxColorSliderArrowsAndTrackHoverDarkMode.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); - // - // labelColorDarkModeSliderArrowsAndTrackHover - // - this.labelColorDarkModeSliderArrowsAndTrackHover.Anchor = System.Windows.Forms.AnchorStyles.Left; - this.labelColorDarkModeSliderArrowsAndTrackHover.AutoSize = true; - this.labelColorDarkModeSliderArrowsAndTrackHover.Location = new System.Drawing.Point(95, 4); - this.labelColorDarkModeSliderArrowsAndTrackHover.Name = "labelColorDarkModeSliderArrowsAndTrackHover"; - this.labelColorDarkModeSliderArrowsAndTrackHover.Size = new System.Drawing.Size(263, 15); - this.labelColorDarkModeSliderArrowsAndTrackHover.TabIndex = 0; - this.labelColorDarkModeSliderArrowsAndTrackHover.Text = "labelColorDarkModeSliderArrowsAndTrackHover"; - // - // tableLayoutPanelArrowDarkMode - // - this.tableLayoutPanelArrowDarkMode.AutoSize = true; - this.tableLayoutPanelArrowDarkMode.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; - this.tableLayoutPanelArrowDarkMode.ColumnCount = 3; - this.tableLayoutPanelArrowDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelArrowDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelArrowDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); - this.tableLayoutPanelArrowDarkMode.Controls.Add(this.pictureBoxArrowDarkMode, 0, 0); - this.tableLayoutPanelArrowDarkMode.Controls.Add(this.textBoxColorArrowDarkMode, 1, 0); - this.tableLayoutPanelArrowDarkMode.Controls.Add(this.labelColorDarkModeArrow, 2, 0); - this.tableLayoutPanelArrowDarkMode.Location = new System.Drawing.Point(3, 435); - this.tableLayoutPanelArrowDarkMode.Name = "tableLayoutPanelArrowDarkMode"; - this.tableLayoutPanelArrowDarkMode.RowCount = 1; - this.tableLayoutPanelArrowDarkMode.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanelArrowDarkMode.Size = new System.Drawing.Size(246, 23); - this.tableLayoutPanelArrowDarkMode.TabIndex = 2; - // - // pictureBoxArrowDarkMode - // - this.pictureBoxArrowDarkMode.BackColor = System.Drawing.Color.White; - this.pictureBoxArrowDarkMode.Cursor = System.Windows.Forms.Cursors.Hand; - this.pictureBoxArrowDarkMode.Location = new System.Drawing.Point(0, 0); - this.pictureBoxArrowDarkMode.Margin = new System.Windows.Forms.Padding(0); - this.pictureBoxArrowDarkMode.Name = "pictureBoxArrowDarkMode"; - this.pictureBoxArrowDarkMode.Size = new System.Drawing.Size(23, 23); - this.pictureBoxArrowDarkMode.TabIndex = 1; - this.pictureBoxArrowDarkMode.TabStop = false; - this.pictureBoxArrowDarkMode.Click += new System.EventHandler(this.PictureBoxClick); - // - // textBoxColorArrowDarkMode - // - this.textBoxColorArrowDarkMode.Location = new System.Drawing.Point(23, 0); - this.textBoxColorArrowDarkMode.Margin = new System.Windows.Forms.Padding(0); - this.textBoxColorArrowDarkMode.MaxLength = 12; - this.textBoxColorArrowDarkMode.Name = "textBoxColorArrowDarkMode"; - this.textBoxColorArrowDarkMode.Size = new System.Drawing.Size(69, 23); - this.textBoxColorArrowDarkMode.TabIndex = 2; - this.textBoxColorArrowDarkMode.Text = "#ffffff"; - this.textBoxColorArrowDarkMode.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); - this.textBoxColorArrowDarkMode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); - this.textBoxColorArrowDarkMode.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); - // - // labelColorDarkModeArrow - // - this.labelColorDarkModeArrow.Anchor = System.Windows.Forms.AnchorStyles.Left; - this.labelColorDarkModeArrow.AutoSize = true; - this.labelColorDarkModeArrow.Location = new System.Drawing.Point(95, 4); - this.labelColorDarkModeArrow.Name = "labelColorDarkModeArrow"; - this.labelColorDarkModeArrow.Size = new System.Drawing.Size(148, 15); - this.labelColorDarkModeArrow.TabIndex = 0; - this.labelColorDarkModeArrow.Text = "labelColorDarkModeArrow"; - // - // tableLayoutPanelArrowClickDarkMode - // - this.tableLayoutPanelArrowClickDarkMode.AutoSize = true; - this.tableLayoutPanelArrowClickDarkMode.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; - this.tableLayoutPanelArrowClickDarkMode.ColumnCount = 3; - this.tableLayoutPanelArrowClickDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelArrowClickDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelArrowClickDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); - this.tableLayoutPanelArrowClickDarkMode.Controls.Add(this.pictureBoxArrowClickDarkMode, 0, 0); - this.tableLayoutPanelArrowClickDarkMode.Controls.Add(this.textBoxColorArrowClickDarkMode, 1, 0); - this.tableLayoutPanelArrowClickDarkMode.Controls.Add(this.labelColorDarkModeArrowClick, 2, 0); - this.tableLayoutPanelArrowClickDarkMode.Location = new System.Drawing.Point(3, 464); - this.tableLayoutPanelArrowClickDarkMode.Name = "tableLayoutPanelArrowClickDarkMode"; - this.tableLayoutPanelArrowClickDarkMode.RowCount = 1; - this.tableLayoutPanelArrowClickDarkMode.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanelArrowClickDarkMode.Size = new System.Drawing.Size(272, 23); - this.tableLayoutPanelArrowClickDarkMode.TabIndex = 2; - // - // pictureBoxArrowClickDarkMode - // - this.pictureBoxArrowClickDarkMode.BackColor = System.Drawing.Color.White; - this.pictureBoxArrowClickDarkMode.Cursor = System.Windows.Forms.Cursors.Hand; - this.pictureBoxArrowClickDarkMode.Location = new System.Drawing.Point(0, 0); - this.pictureBoxArrowClickDarkMode.Margin = new System.Windows.Forms.Padding(0); - this.pictureBoxArrowClickDarkMode.Name = "pictureBoxArrowClickDarkMode"; - this.pictureBoxArrowClickDarkMode.Size = new System.Drawing.Size(23, 23); - this.pictureBoxArrowClickDarkMode.TabIndex = 1; - this.pictureBoxArrowClickDarkMode.TabStop = false; - this.pictureBoxArrowClickDarkMode.Click += new System.EventHandler(this.PictureBoxClick); - // - // textBoxColorArrowClickDarkMode - // - this.textBoxColorArrowClickDarkMode.Location = new System.Drawing.Point(23, 0); - this.textBoxColorArrowClickDarkMode.Margin = new System.Windows.Forms.Padding(0); - this.textBoxColorArrowClickDarkMode.MaxLength = 12; - this.textBoxColorArrowClickDarkMode.Name = "textBoxColorArrowClickDarkMode"; - this.textBoxColorArrowClickDarkMode.Size = new System.Drawing.Size(69, 23); - this.textBoxColorArrowClickDarkMode.TabIndex = 2; - this.textBoxColorArrowClickDarkMode.Text = "#ffffff"; - this.textBoxColorArrowClickDarkMode.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); - this.textBoxColorArrowClickDarkMode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); - this.textBoxColorArrowClickDarkMode.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); - // - // labelColorDarkModeArrowClick - // - this.labelColorDarkModeArrowClick.Anchor = System.Windows.Forms.AnchorStyles.Left; - this.labelColorDarkModeArrowClick.AutoSize = true; - this.labelColorDarkModeArrowClick.Location = new System.Drawing.Point(95, 4); - this.labelColorDarkModeArrowClick.Name = "labelColorDarkModeArrowClick"; - this.labelColorDarkModeArrowClick.Size = new System.Drawing.Size(174, 15); - this.labelColorDarkModeArrowClick.TabIndex = 0; - this.labelColorDarkModeArrowClick.Text = "labelColorDarkModeArrowClick"; - // - // tableLayoutPanelArrowClickBackgroundDarkMode - // - this.tableLayoutPanelArrowClickBackgroundDarkMode.AutoSize = true; - this.tableLayoutPanelArrowClickBackgroundDarkMode.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; - this.tableLayoutPanelArrowClickBackgroundDarkMode.ColumnCount = 3; - this.tableLayoutPanelArrowClickBackgroundDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelArrowClickBackgroundDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelArrowClickBackgroundDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); - this.tableLayoutPanelArrowClickBackgroundDarkMode.Controls.Add(this.pictureBoxArrowClickBackgroundDarkMode, 0, 0); - this.tableLayoutPanelArrowClickBackgroundDarkMode.Controls.Add(this.textBoxColorArrowClickBackgroundDarkMode, 1, 0); - this.tableLayoutPanelArrowClickBackgroundDarkMode.Controls.Add(this.labelColorDarkModeArrowClickBackground, 2, 0); - this.tableLayoutPanelArrowClickBackgroundDarkMode.Location = new System.Drawing.Point(3, 493); - this.tableLayoutPanelArrowClickBackgroundDarkMode.Name = "tableLayoutPanelArrowClickBackgroundDarkMode"; - this.tableLayoutPanelArrowClickBackgroundDarkMode.RowCount = 1; - this.tableLayoutPanelArrowClickBackgroundDarkMode.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanelArrowClickBackgroundDarkMode.Size = new System.Drawing.Size(336, 23); - this.tableLayoutPanelArrowClickBackgroundDarkMode.TabIndex = 2; - // - // pictureBoxArrowClickBackgroundDarkMode - // - this.pictureBoxArrowClickBackgroundDarkMode.BackColor = System.Drawing.Color.White; - this.pictureBoxArrowClickBackgroundDarkMode.Cursor = System.Windows.Forms.Cursors.Hand; - this.pictureBoxArrowClickBackgroundDarkMode.Location = new System.Drawing.Point(0, 0); - this.pictureBoxArrowClickBackgroundDarkMode.Margin = new System.Windows.Forms.Padding(0); - this.pictureBoxArrowClickBackgroundDarkMode.Name = "pictureBoxArrowClickBackgroundDarkMode"; - this.pictureBoxArrowClickBackgroundDarkMode.Size = new System.Drawing.Size(23, 23); - this.pictureBoxArrowClickBackgroundDarkMode.TabIndex = 1; - this.pictureBoxArrowClickBackgroundDarkMode.TabStop = false; - this.pictureBoxArrowClickBackgroundDarkMode.Click += new System.EventHandler(this.PictureBoxClick); - // - // textBoxColorArrowClickBackgroundDarkMode - // - this.textBoxColorArrowClickBackgroundDarkMode.Location = new System.Drawing.Point(23, 0); - this.textBoxColorArrowClickBackgroundDarkMode.Margin = new System.Windows.Forms.Padding(0); - this.textBoxColorArrowClickBackgroundDarkMode.MaxLength = 12; - this.textBoxColorArrowClickBackgroundDarkMode.Name = "textBoxColorArrowClickBackgroundDarkMode"; - this.textBoxColorArrowClickBackgroundDarkMode.Size = new System.Drawing.Size(69, 23); - this.textBoxColorArrowClickBackgroundDarkMode.TabIndex = 2; - this.textBoxColorArrowClickBackgroundDarkMode.Text = "#ffffff"; - this.textBoxColorArrowClickBackgroundDarkMode.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); - this.textBoxColorArrowClickBackgroundDarkMode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); - this.textBoxColorArrowClickBackgroundDarkMode.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); - // - // labelColorDarkModeArrowClickBackground - // - this.labelColorDarkModeArrowClickBackground.Anchor = System.Windows.Forms.AnchorStyles.Left; - this.labelColorDarkModeArrowClickBackground.AutoSize = true; - this.labelColorDarkModeArrowClickBackground.Location = new System.Drawing.Point(95, 4); - this.labelColorDarkModeArrowClickBackground.Name = "labelColorDarkModeArrowClickBackground"; - this.labelColorDarkModeArrowClickBackground.Size = new System.Drawing.Size(238, 15); - this.labelColorDarkModeArrowClickBackground.TabIndex = 0; - this.labelColorDarkModeArrowClickBackground.Text = "labelColorDarkModeArrowClickBackground"; - // - // tableLayoutPanelArrowHoverDarkMode - // - this.tableLayoutPanelArrowHoverDarkMode.AutoSize = true; - this.tableLayoutPanelArrowHoverDarkMode.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; - this.tableLayoutPanelArrowHoverDarkMode.ColumnCount = 3; - this.tableLayoutPanelArrowHoverDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelArrowHoverDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelArrowHoverDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); - this.tableLayoutPanelArrowHoverDarkMode.Controls.Add(this.pictureBoxArrowHoverDarkMode, 0, 0); - this.tableLayoutPanelArrowHoverDarkMode.Controls.Add(this.textBoxColorArrowHoverDarkMode, 1, 0); - this.tableLayoutPanelArrowHoverDarkMode.Controls.Add(this.labelColorDarkModeArrowHover, 2, 0); - this.tableLayoutPanelArrowHoverDarkMode.Location = new System.Drawing.Point(3, 522); - this.tableLayoutPanelArrowHoverDarkMode.Name = "tableLayoutPanelArrowHoverDarkMode"; - this.tableLayoutPanelArrowHoverDarkMode.RowCount = 1; - this.tableLayoutPanelArrowHoverDarkMode.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanelArrowHoverDarkMode.Size = new System.Drawing.Size(278, 23); - this.tableLayoutPanelArrowHoverDarkMode.TabIndex = 2; - // - // pictureBoxArrowHoverDarkMode - // - this.pictureBoxArrowHoverDarkMode.BackColor = System.Drawing.Color.White; - this.pictureBoxArrowHoverDarkMode.Cursor = System.Windows.Forms.Cursors.Hand; - this.pictureBoxArrowHoverDarkMode.Location = new System.Drawing.Point(0, 0); - this.pictureBoxArrowHoverDarkMode.Margin = new System.Windows.Forms.Padding(0); - this.pictureBoxArrowHoverDarkMode.Name = "pictureBoxArrowHoverDarkMode"; - this.pictureBoxArrowHoverDarkMode.Size = new System.Drawing.Size(23, 23); - this.pictureBoxArrowHoverDarkMode.TabIndex = 1; - this.pictureBoxArrowHoverDarkMode.TabStop = false; - this.pictureBoxArrowHoverDarkMode.Click += new System.EventHandler(this.PictureBoxClick); - // - // textBoxColorArrowHoverDarkMode - // - this.textBoxColorArrowHoverDarkMode.Location = new System.Drawing.Point(23, 0); - this.textBoxColorArrowHoverDarkMode.Margin = new System.Windows.Forms.Padding(0); - this.textBoxColorArrowHoverDarkMode.MaxLength = 12; - this.textBoxColorArrowHoverDarkMode.Name = "textBoxColorArrowHoverDarkMode"; - this.textBoxColorArrowHoverDarkMode.Size = new System.Drawing.Size(69, 23); - this.textBoxColorArrowHoverDarkMode.TabIndex = 2; - this.textBoxColorArrowHoverDarkMode.Text = "#ffffff"; - this.textBoxColorArrowHoverDarkMode.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); - this.textBoxColorArrowHoverDarkMode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); - this.textBoxColorArrowHoverDarkMode.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); - // - // labelColorDarkModeArrowHover - // - this.labelColorDarkModeArrowHover.Anchor = System.Windows.Forms.AnchorStyles.Left; - this.labelColorDarkModeArrowHover.AutoSize = true; - this.labelColorDarkModeArrowHover.Location = new System.Drawing.Point(95, 4); - this.labelColorDarkModeArrowHover.Name = "labelColorDarkModeArrowHover"; - this.labelColorDarkModeArrowHover.Size = new System.Drawing.Size(180, 15); - this.labelColorDarkModeArrowHover.TabIndex = 0; - this.labelColorDarkModeArrowHover.Text = "labelColorDarkModeArrowHover"; - // - // tableLayoutPanelArrowHoverBackgroundDarkMode - // - this.tableLayoutPanelArrowHoverBackgroundDarkMode.AutoSize = true; - this.tableLayoutPanelArrowHoverBackgroundDarkMode.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; - this.tableLayoutPanelArrowHoverBackgroundDarkMode.ColumnCount = 3; - this.tableLayoutPanelArrowHoverBackgroundDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelArrowHoverBackgroundDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); - this.tableLayoutPanelArrowHoverBackgroundDarkMode.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); - this.tableLayoutPanelArrowHoverBackgroundDarkMode.Controls.Add(this.pictureBoxArrowHoverBackgroundDarkMode, 0, 0); - this.tableLayoutPanelArrowHoverBackgroundDarkMode.Controls.Add(this.textBoxColorArrowHoverBackgroundDarkMode, 1, 0); - this.tableLayoutPanelArrowHoverBackgroundDarkMode.Controls.Add(this.labelColorDarkModeArrowHoverBackground, 2, 0); - this.tableLayoutPanelArrowHoverBackgroundDarkMode.Location = new System.Drawing.Point(3, 551); - this.tableLayoutPanelArrowHoverBackgroundDarkMode.Name = "tableLayoutPanelArrowHoverBackgroundDarkMode"; - this.tableLayoutPanelArrowHoverBackgroundDarkMode.RowCount = 1; - this.tableLayoutPanelArrowHoverBackgroundDarkMode.RowStyles.Add(new System.Windows.Forms.RowStyle()); - this.tableLayoutPanelArrowHoverBackgroundDarkMode.Size = new System.Drawing.Size(342, 23); - this.tableLayoutPanelArrowHoverBackgroundDarkMode.TabIndex = 2; - // - // pictureBoxArrowHoverBackgroundDarkMode - // - this.pictureBoxArrowHoverBackgroundDarkMode.BackColor = System.Drawing.Color.White; - this.pictureBoxArrowHoverBackgroundDarkMode.Cursor = System.Windows.Forms.Cursors.Hand; - this.pictureBoxArrowHoverBackgroundDarkMode.Location = new System.Drawing.Point(0, 0); - this.pictureBoxArrowHoverBackgroundDarkMode.Margin = new System.Windows.Forms.Padding(0); - this.pictureBoxArrowHoverBackgroundDarkMode.Name = "pictureBoxArrowHoverBackgroundDarkMode"; - this.pictureBoxArrowHoverBackgroundDarkMode.Size = new System.Drawing.Size(23, 23); - this.pictureBoxArrowHoverBackgroundDarkMode.TabIndex = 1; - this.pictureBoxArrowHoverBackgroundDarkMode.TabStop = false; - this.pictureBoxArrowHoverBackgroundDarkMode.Click += new System.EventHandler(this.PictureBoxClick); - // - // textBoxColorArrowHoverBackgroundDarkMode - // - this.textBoxColorArrowHoverBackgroundDarkMode.Location = new System.Drawing.Point(23, 0); - this.textBoxColorArrowHoverBackgroundDarkMode.Margin = new System.Windows.Forms.Padding(0); - this.textBoxColorArrowHoverBackgroundDarkMode.MaxLength = 12; - this.textBoxColorArrowHoverBackgroundDarkMode.Name = "textBoxColorArrowHoverBackgroundDarkMode"; - this.textBoxColorArrowHoverBackgroundDarkMode.Size = new System.Drawing.Size(69, 23); - this.textBoxColorArrowHoverBackgroundDarkMode.TabIndex = 2; - this.textBoxColorArrowHoverBackgroundDarkMode.Text = "#ffffff"; - this.textBoxColorArrowHoverBackgroundDarkMode.TextChanged += new System.EventHandler(this.TextBoxColorsChanged); - this.textBoxColorArrowHoverBackgroundDarkMode.KeyDown += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyDown); - this.textBoxColorArrowHoverBackgroundDarkMode.KeyUp += new System.Windows.Forms.KeyEventHandler(this.StopPlayingDingSoundEnterKeyPressed_KeyUp); - // - // labelColorDarkModeArrowHoverBackground - // - this.labelColorDarkModeArrowHoverBackground.Anchor = System.Windows.Forms.AnchorStyles.Left; - this.labelColorDarkModeArrowHoverBackground.AutoSize = true; - this.labelColorDarkModeArrowHoverBackground.Location = new System.Drawing.Point(95, 4); - this.labelColorDarkModeArrowHoverBackground.MaximumSize = new System.Drawing.Size(280, 0); - this.labelColorDarkModeArrowHoverBackground.Name = "labelColorDarkModeArrowHoverBackground"; - this.labelColorDarkModeArrowHoverBackground.Size = new System.Drawing.Size(244, 15); - this.labelColorDarkModeArrowHoverBackground.TabIndex = 0; - this.labelColorDarkModeArrowHoverBackground.Text = "labelColorDarkModeArrowHoverBackground"; - // - // buttonColorsDefaultDarkMode - // - this.buttonColorsDefaultDarkMode.AutoSize = true; - this.buttonColorsDefaultDarkMode.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; - this.buttonColorsDefaultDarkMode.Location = new System.Drawing.Point(3, 580); - this.buttonColorsDefaultDarkMode.MinimumSize = new System.Drawing.Size(75, 23); - this.buttonColorsDefaultDarkMode.Name = "buttonColorsDefaultDarkMode"; - this.buttonColorsDefaultDarkMode.Size = new System.Drawing.Size(180, 25); - this.buttonColorsDefaultDarkMode.TabIndex = 2; - this.buttonColorsDefaultDarkMode.Text = "buttonColorsDarkModeDefault"; - this.buttonColorsDefaultDarkMode.UseVisualStyleBackColor = true; - this.buttonColorsDefaultDarkMode.Click += new System.EventHandler(this.ButtonDefaultColorsDark_Click); - // // tableLayoutPanelBottom // this.tableLayoutPanelBottom.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); @@ -3419,70 +3543,70 @@ namespace SystemTrayMenu.UserInterface this.groupBoxColorsLightMode.PerformLayout(); this.tableLayoutPanelColorsAndDefault.ResumeLayout(false); this.tableLayoutPanelColorsAndDefault.PerformLayout(); + this.tableLayoutPanelBackgroundBorder.ResumeLayout(false); + this.tableLayoutPanelBackgroundBorder.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxBackgroundBorder)).EndInit(); this.tableLayoutPanelTitle.ResumeLayout(false); this.tableLayoutPanelTitle.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBoxTitle)).EndInit(); this.tableLayoutPanelBackground.ResumeLayout(false); this.tableLayoutPanelBackground.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBoxBackground)).EndInit(); - this.tableLayoutPanelSearchField.ResumeLayout(false); - this.tableLayoutPanelSearchField.PerformLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBoxSearchField)).EndInit(); - this.tableLayoutPanelOpenFolder.ResumeLayout(false); - this.tableLayoutPanelOpenFolder.PerformLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBoxOpenFolder)).EndInit(); - this.tableLayoutPanelOpenFolderBorder.ResumeLayout(false); - this.tableLayoutPanelOpenFolderBorder.PerformLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBoxOpenFolderBorder)).EndInit(); - this.tableLayoutPanelSelectedItem.ResumeLayout(false); - this.tableLayoutPanelSelectedItem.PerformLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBoxSelectedItem)).EndInit(); - this.tableLayoutPanelSelectedItemBorder.ResumeLayout(false); - this.tableLayoutPanelSelectedItemBorder.PerformLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBoxSelectedItemBorder)).EndInit(); - this.tableLayoutPanelWarning.ResumeLayout(false); - this.tableLayoutPanelWarning.PerformLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBoxWarning)).EndInit(); - this.tableLayoutPanelScrollbarBackground.ResumeLayout(false); - this.tableLayoutPanelScrollbarBackground.PerformLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBoxScrollbarBackground)).EndInit(); - this.tableLayoutPanelSlider.ResumeLayout(false); - this.tableLayoutPanelSlider.PerformLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBoxSlider)).EndInit(); - this.tableLayoutPanelSliderDragging.ResumeLayout(false); - this.tableLayoutPanelSliderDragging.PerformLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBoxSliderDragging)).EndInit(); - this.tableLayoutPanelSliderHover.ResumeLayout(false); - this.tableLayoutPanelSliderHover.PerformLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBoxSliderHover)).EndInit(); - this.tableLayoutPanelSliderArrowsAndTrackHover.ResumeLayout(false); - this.tableLayoutPanelSliderArrowsAndTrackHover.PerformLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBoxSliderArrowsAndTrackHover)).EndInit(); - this.tableLayoutPanelArrow.ResumeLayout(false); - this.tableLayoutPanelArrow.PerformLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBoxArrow)).EndInit(); - this.tableLayoutPanelArrowClick.ResumeLayout(false); - this.tableLayoutPanelArrowClick.PerformLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBoxArrowClick)).EndInit(); - this.tableLayoutPanelArrowClickBackground.ResumeLayout(false); - this.tableLayoutPanelArrowClickBackground.PerformLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBoxArrowClickBackground)).EndInit(); - this.tableLayoutPanelArrowHover.ResumeLayout(false); - this.tableLayoutPanelArrowHover.PerformLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBoxArrowHover)).EndInit(); this.tableLayoutPanelArrowHoverBackground.ResumeLayout(false); this.tableLayoutPanelArrowHoverBackground.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBoxArrowHoverBackground)).EndInit(); + this.tableLayoutPanelArrowHover.ResumeLayout(false); + this.tableLayoutPanelArrowHover.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxArrowHover)).EndInit(); + this.tableLayoutPanelArrowClickBackground.ResumeLayout(false); + this.tableLayoutPanelArrowClickBackground.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxArrowClickBackground)).EndInit(); + this.tableLayoutPanelArrowClick.ResumeLayout(false); + this.tableLayoutPanelArrowClick.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxArrowClick)).EndInit(); + this.tableLayoutPanelArrow.ResumeLayout(false); + this.tableLayoutPanelArrow.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxArrow)).EndInit(); + this.tableLayoutPanelSliderArrowsAndTrackHover.ResumeLayout(false); + this.tableLayoutPanelSliderArrowsAndTrackHover.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxSliderArrowsAndTrackHover)).EndInit(); + this.tableLayoutPanelSliderHover.ResumeLayout(false); + this.tableLayoutPanelSliderHover.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxSliderHover)).EndInit(); + this.tableLayoutPanelSliderDragging.ResumeLayout(false); + this.tableLayoutPanelSliderDragging.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxSliderDragging)).EndInit(); + this.tableLayoutPanelSlider.ResumeLayout(false); + this.tableLayoutPanelSlider.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxSlider)).EndInit(); + this.tableLayoutPanelScrollbarBackground.ResumeLayout(false); + this.tableLayoutPanelScrollbarBackground.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxScrollbarBackground)).EndInit(); + this.tableLayoutPanelWarning.ResumeLayout(false); + this.tableLayoutPanelWarning.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxWarning)).EndInit(); + this.tableLayoutPanelSelectedItemBorder.ResumeLayout(false); + this.tableLayoutPanelSelectedItemBorder.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxSelectedItemBorder)).EndInit(); + this.tableLayoutPanelSelectedItem.ResumeLayout(false); + this.tableLayoutPanelSelectedItem.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxSelectedItem)).EndInit(); + this.tableLayoutPanelOpenFolderBorder.ResumeLayout(false); + this.tableLayoutPanelOpenFolderBorder.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxOpenFolderBorder)).EndInit(); + this.tableLayoutPanelOpenFolder.ResumeLayout(false); + this.tableLayoutPanelOpenFolder.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxOpenFolder)).EndInit(); + this.tableLayoutPanelSearchField.ResumeLayout(false); + this.tableLayoutPanelSearchField.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxSearchField)).EndInit(); this.groupBoxColorsDarkMode.ResumeLayout(false); this.groupBoxColorsDarkMode.PerformLayout(); this.tableLayoutPanelDarkMode.ResumeLayout(false); this.tableLayoutPanelDarkMode.PerformLayout(); - this.tableLayoutPanelTitleDarkMode.ResumeLayout(false); - this.tableLayoutPanelTitleDarkMode.PerformLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBoxTitleDarkMode)).EndInit(); - this.tableLayoutPanelBackgroundDarkMode.ResumeLayout(false); - this.tableLayoutPanelBackgroundDarkMode.PerformLayout(); - ((System.ComponentModel.ISupportInitialize)(this.pictureBoxBackgroundDarkMode)).EndInit(); + this.tableLayoutPanel3.ResumeLayout(false); + this.tableLayoutPanel3.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxBackgroundBorderDarkMode)).EndInit(); this.tableLayoutPanelSearchFieldDarkMode.ResumeLayout(false); this.tableLayoutPanelSearchFieldDarkMode.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBoxSearchFieldDarkMode)).EndInit(); @@ -3531,6 +3655,12 @@ namespace SystemTrayMenu.UserInterface this.tableLayoutPanelArrowHoverBackgroundDarkMode.ResumeLayout(false); this.tableLayoutPanelArrowHoverBackgroundDarkMode.PerformLayout(); ((System.ComponentModel.ISupportInitialize)(this.pictureBoxArrowHoverBackgroundDarkMode)).EndInit(); + this.tableLayoutPanelTitleDarkMode.ResumeLayout(false); + this.tableLayoutPanelTitleDarkMode.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxTitleDarkMode)).EndInit(); + this.tableLayoutPanelBackgroundDarkMode.ResumeLayout(false); + this.tableLayoutPanelBackgroundDarkMode.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.pictureBoxBackgroundDarkMode)).EndInit(); this.tableLayoutPanelBottom.ResumeLayout(false); this.tableLayoutPanelBottom.PerformLayout(); this.ResumeLayout(false); @@ -3758,5 +3888,13 @@ namespace SystemTrayMenu.UserInterface private System.Windows.Forms.TableLayoutPanel tableLayoutPanel2; private System.Windows.Forms.NumericUpDown numericUpDownSizeInPercentage; private System.Windows.Forms.Label labelSize; + private System.Windows.Forms.TableLayoutPanel tableLayoutPanelBackgroundBorder; + private System.Windows.Forms.PictureBox pictureBoxBackgroundBorder; + private System.Windows.Forms.TextBox textBoxColorBackgroundBorder; + private System.Windows.Forms.Label labelBackgroundBorder; + private System.Windows.Forms.TableLayoutPanel tableLayoutPanel3; + private System.Windows.Forms.PictureBox pictureBoxBackgroundBorderDarkMode; + private System.Windows.Forms.Label labelBackgroundBorderDarkMode; + private System.Windows.Forms.TextBox textBoxColorBackgroundBorderDarkMode; } } \ No newline at end of file diff --git a/UserInterface/SettingsForm.cs b/UserInterface/SettingsForm.cs index adebb27..c19fd72 100644 --- a/UserInterface/SettingsForm.cs +++ b/UserInterface/SettingsForm.cs @@ -51,6 +51,7 @@ namespace SystemTrayMenu.UserInterface CombineControls(textBoxColorTitle, pictureBoxTitle); CombineControls(textBoxColorBackground, pictureBoxBackground); + CombineControls(textBoxColorBackgroundBorder, pictureBoxBackgroundBorder); CombineControls(textBoxColorSearchField, pictureBoxSearchField); CombineControls(textBoxColorOpenFolder, pictureBoxOpenFolder); CombineControls(textBoxColorOpenFolderBorder, pictureBoxOpenFolderBorder); @@ -70,6 +71,7 @@ namespace SystemTrayMenu.UserInterface CombineControls(textBoxColorTitleDarkMode, pictureBoxTitleDarkMode); CombineControls(textBoxColorBackgroundDarkMode, pictureBoxBackgroundDarkMode); + CombineControls(textBoxColorBackgroundBorderDarkMode, pictureBoxBackgroundBorderDarkMode); CombineControls(textBoxColorSearchFieldDarkMode, pictureBoxSearchFieldDarkMode); CombineControls(textBoxColorOpenFolderDarkMode, pictureBoxOpenFolderDarkMode); CombineControls(textBoxColorOpenFolderBorderDarkMode, pictureBoxOpenFolderBorderDarkMode); @@ -136,6 +138,8 @@ namespace SystemTrayMenu.UserInterface labelTitleDarkMode.Text = Translator.GetText("Title"); labelBackground.Text = Translator.GetText("Background"); labelBackgroundDarkMode.Text = Translator.GetText("Background"); + labelBackgroundBorder.Text = Translator.GetText("Border of menu"); + labelBackgroundBorderDarkMode.Text = Translator.GetText("Border of menu"); labelSearchField.Text = Translator.GetText("Search field"); labelSearchFieldDarkMode.Text = Translator.GetText("Search field"); labelOpenFolder.Text = Translator.GetText("Opened folder"); @@ -277,6 +281,8 @@ namespace SystemTrayMenu.UserInterface textBoxColorTitleDarkMode.Text = Settings.Default.ColorDarkModeTitle; textBoxColorBackground.Text = Settings.Default.ColorBackground; textBoxColorBackgroundDarkMode.Text = Settings.Default.ColorDarkModeBackground; + textBoxColorBackgroundBorder.Text = Settings.Default.ColorBackgroundBorder; + textBoxColorBackgroundBorderDarkMode.Text = Settings.Default.ColorDarkModeBackgroundBorder; textBoxColorSearchField.Text = Settings.Default.ColorSearchField; textBoxColorSearchFieldDarkMode.Text = Settings.Default.ColorDarkModeSearchField; @@ -618,6 +624,8 @@ namespace SystemTrayMenu.UserInterface Settings.Default.ColorDarkModeTitle = textBoxColorTitleDarkMode.Text; Settings.Default.ColorBackground = textBoxColorBackground.Text; Settings.Default.ColorDarkModeBackground = textBoxColorBackgroundDarkMode.Text; + Settings.Default.ColorBackgroundBorder = textBoxColorBackgroundBorder.Text; + Settings.Default.ColorDarkModeBackgroundBorder = textBoxColorBackgroundBorderDarkMode.Text; Settings.Default.ColorSearchField = textBoxColorSearchField.Text; Settings.Default.ColorDarkModeSearchField = textBoxColorSearchFieldDarkMode.Text; Settings.Default.ColorScrollbarBackground = textBoxColorScrollbarBackground.Text; @@ -669,6 +677,7 @@ namespace SystemTrayMenu.UserInterface textBoxColorOpenFolder.Text = "#C2F5DE"; textBoxColorOpenFolderBorder.Text = "#99FFA5"; textBoxColorBackground.Text = "#ffffff"; + textBoxColorBackgroundBorder.Text = "#000000"; textBoxColorSearchField.Text = "#ffffff"; textBoxColorSelectedItem.Text = "#CCE8FF"; textBoxColorSelectedItemBorder.Text = "#99D1FF"; @@ -691,6 +700,7 @@ namespace SystemTrayMenu.UserInterface textBoxColorOpenFolderDarkMode.Text = "#14412A"; textBoxColorOpenFolderBorderDarkMode.Text = "#144B55"; textBoxColorBackgroundDarkMode.Text = "#202020"; + textBoxColorBackgroundBorderDarkMode.Text = "#000000"; textBoxColorSearchFieldDarkMode.Text = "#191919"; textBoxColorSelecetedItemDarkMode.Text = "#333333"; textBoxColorSelectedItemBorderDarkMode.Text = "#141D4B";