Fix property grid line colors

This commit is contained in:
Jaex 2018-06-06 22:16:01 +03:00
parent 67e1d0adde
commit e17161aaae
5 changed files with 2871 additions and 764 deletions

View file

@ -59,7 +59,6 @@ private void InitializeComponent()
// pgSettings
//
resources.ApplyResources(this.pgSettings, "pgSettings");
this.pgSettings.LineColor = System.Drawing.SystemColors.ControlDark;
this.pgSettings.Name = "pgSettings";
this.pgSettings.PropertySort = System.Windows.Forms.PropertySort.NoSort;
this.pgSettings.ToolbarVisible = false;

View file

@ -171,6 +171,9 @@
<data name="lvEffects.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Top, Bottom, Left</value>
</data>
<data name="chEffect.Width" type="System.Int32, mscorlib">
<value>164</value>
</data>
<data name="lvEffects.Location" type="System.Drawing.Point, System.Drawing">
<value>8, 72</value>
</data>
@ -192,9 +195,6 @@
<data name="&gt;&gt;lvEffects.ZOrder" xml:space="preserve">
<value>19</value>
</data>
<data name="chEffect.Width" type="System.Int32, mscorlib">
<value>164</value>
</data>
<data name="btnRemove.Location" type="System.Drawing.Point, System.Drawing">
<value>120, 40</value>
</data>
@ -369,6 +369,18 @@
<metadata name="cmsLoadImage.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>126, 17</value>
</metadata>
<data name="tsmiLoadImageFromFile.Size" type="System.Drawing.Size, System.Drawing">
<value>130, 22</value>
</data>
<data name="tsmiLoadImageFromFile.Text" xml:space="preserve">
<value>From file...</value>
</data>
<data name="tsmiLoadImageFromClipboard.Size" type="System.Drawing.Size, System.Drawing">
<value>130, 22</value>
</data>
<data name="tsmiLoadImageFromClipboard.Text" xml:space="preserve">
<value>From clipboard</value>
</data>
<data name="cmsLoadImage.Size" type="System.Drawing.Size, System.Drawing">
<value>131, 48</value>
</data>
@ -402,18 +414,6 @@
<data name="&gt;&gt;mbLoadImage.ZOrder" xml:space="preserve">
<value>10</value>
</data>
<data name="tsmiLoadImageFromFile.Size" type="System.Drawing.Size, System.Drawing">
<value>130, 22</value>
</data>
<data name="tsmiLoadImageFromFile.Text" xml:space="preserve">
<value>From file...</value>
</data>
<data name="tsmiLoadImageFromClipboard.Size" type="System.Drawing.Size, System.Drawing">
<value>130, 22</value>
</data>
<data name="tsmiLoadImageFromClipboard.Text" xml:space="preserve">
<value>From clipboard</value>
</data>
<data name="btnAddPreset.Location" type="System.Drawing.Point, System.Drawing">
<value>8, 8</value>
</data>
@ -619,7 +619,7 @@
<value>$this</value>
</data>
<data name="&gt;&gt;btnUploadImage.ZOrder" xml:space="preserve">
<value>0</value>
<value>2</value>
</data>
<metadata name="$this.Localizable" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>

View file

@ -33,6 +33,7 @@ private void InitializeComponent()
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ApplicationSettingsForm));
this.tcSettings = new System.Windows.Forms.TabControl();
this.tpGeneral = new System.Windows.Forms.TabPage();
this.btnCheckDevBuild = new System.Windows.Forms.Button();
this.cbCheckPreReleaseUpdates = new System.Windows.Forms.CheckBox();
this.cbTrayMiddleClickAction = new System.Windows.Forms.ComboBox();
this.lblTrayMiddleClickAction = new System.Windows.Forms.Label();
@ -142,7 +143,6 @@ private void InitializeComponent()
this.tpAdvanced = new System.Windows.Forms.TabPage();
this.pgSettings = new System.Windows.Forms.PropertyGrid();
this.tttvMain = new ShareX.HelpersLib.TabToTreeView();
this.btnCheckDevBuild = new System.Windows.Forms.Button();
this.tcSettings.SuspendLayout();
this.tpGeneral.SuspendLayout();
this.tpIntegration.SuspendLayout();
@ -212,6 +212,13 @@ private void InitializeComponent()
resources.ApplyResources(this.tpGeneral, "tpGeneral");
this.tpGeneral.Name = "tpGeneral";
//
// btnCheckDevBuild
//
resources.ApplyResources(this.btnCheckDevBuild, "btnCheckDevBuild");
this.btnCheckDevBuild.Name = "btnCheckDevBuild";
this.btnCheckDevBuild.UseVisualStyleBackColor = true;
this.btnCheckDevBuild.Click += new System.EventHandler(this.btnCheckDevBuild_Click);
//
// cbCheckPreReleaseUpdates
//
resources.ApplyResources(this.cbCheckPreReleaseUpdates, "cbCheckPreReleaseUpdates");
@ -1013,9 +1020,7 @@ private void InitializeComponent()
//
// pgSettings
//
this.pgSettings.CategoryForeColor = System.Drawing.SystemColors.InactiveCaptionText;
resources.ApplyResources(this.pgSettings, "pgSettings");
this.pgSettings.LineColor = System.Drawing.SystemColors.ControlDark;
this.pgSettings.Name = "pgSettings";
this.pgSettings.PropertySort = System.Windows.Forms.PropertySort.Categorized;
this.pgSettings.ToolbarVisible = false;
@ -1030,13 +1035,6 @@ private void InitializeComponent()
this.tttvMain.TreeViewSize = 175;
this.tttvMain.TabChanged += new ShareX.HelpersLib.TabToTreeView.TabChangedEventHandler(this.tttvMain_TabChanged);
//
// btnCheckDevBuild
//
resources.ApplyResources(this.btnCheckDevBuild, "btnCheckDevBuild");
this.btnCheckDevBuild.Name = "btnCheckDevBuild";
this.btnCheckDevBuild.UseVisualStyleBackColor = true;
this.btnCheckDevBuild.Click += new System.EventHandler(this.btnCheckDevBuild_Click);
//
// ApplicationSettingsForm
//
resources.ApplyResources(this, "$this");

View file

@ -182,6 +182,7 @@ private void InitializeComponent()
this.tpUploadMain = new System.Windows.Forms.TabPage();
this.chkOverrideUploadSettings = new System.Windows.Forms.CheckBox();
this.tpFileNaming = new System.Windows.Forms.TabPage();
this.cbFileUploadReplaceProblematicCharacters = new System.Windows.Forms.CheckBox();
this.lblAutoIncrementNumber = new System.Windows.Forms.Label();
this.cbRegionCaptureUseWindowPattern = new System.Windows.Forms.CheckBox();
this.cbNameFormatCustomTimeZone = new System.Windows.Forms.CheckBox();
@ -241,7 +242,6 @@ private void InitializeComponent()
this.pgTaskSettings = new System.Windows.Forms.PropertyGrid();
this.chkOverrideAdvancedSettings = new System.Windows.Forms.CheckBox();
this.tttvMain = new ShareX.HelpersLib.TabToTreeView();
this.cbFileUploadReplaceProblematicCharacters = new System.Windows.Forms.CheckBox();
this.tcTaskSettings.SuspendLayout();
this.tpTask.SuspendLayout();
this.cmsDestinations.SuspendLayout();
@ -1647,6 +1647,13 @@ private void InitializeComponent()
resources.ApplyResources(this.tpFileNaming, "tpFileNaming");
this.tpFileNaming.Name = "tpFileNaming";
//
// cbFileUploadReplaceProblematicCharacters
//
resources.ApplyResources(this.cbFileUploadReplaceProblematicCharacters, "cbFileUploadReplaceProblematicCharacters");
this.cbFileUploadReplaceProblematicCharacters.Name = "cbFileUploadReplaceProblematicCharacters";
this.cbFileUploadReplaceProblematicCharacters.UseVisualStyleBackColor = true;
this.cbFileUploadReplaceProblematicCharacters.CheckedChanged += new System.EventHandler(this.cbFileUploadReplaceProblematicCharacters_CheckedChanged);
//
// lblAutoIncrementNumber
//
resources.ApplyResources(this.lblAutoIncrementNumber, "lblAutoIncrementNumber");
@ -2043,9 +2050,7 @@ private void InitializeComponent()
//
// pgTaskSettings
//
this.pgTaskSettings.CategoryForeColor = System.Drawing.SystemColors.InactiveCaptionText;
resources.ApplyResources(this.pgTaskSettings, "pgTaskSettings");
this.pgTaskSettings.LineColor = System.Drawing.SystemColors.ControlDark;
this.pgTaskSettings.Name = "pgTaskSettings";
this.pgTaskSettings.PropertySort = System.Windows.Forms.PropertySort.Categorized;
this.pgTaskSettings.ToolbarVisible = false;
@ -2069,13 +2074,6 @@ private void InitializeComponent()
this.tttvMain.TreeViewSize = 190;
this.tttvMain.TabChanged += new ShareX.HelpersLib.TabToTreeView.TabChangedEventHandler(this.tttvMain_TabChanged);
//
// cbFileUploadReplaceProblematicCharacters
//
resources.ApplyResources(this.cbFileUploadReplaceProblematicCharacters, "cbFileUploadReplaceProblematicCharacters");
this.cbFileUploadReplaceProblematicCharacters.Name = "cbFileUploadReplaceProblematicCharacters";
this.cbFileUploadReplaceProblematicCharacters.UseVisualStyleBackColor = true;
this.cbFileUploadReplaceProblematicCharacters.CheckedChanged += new System.EventHandler(this.cbFileUploadReplaceProblematicCharacters_CheckedChanged);
//
// TaskSettingsForm
//
resources.ApplyResources(this, "$this");

File diff suppressed because it is too large Load diff