fixed #1487: Using system colors everywhere in UI as possible so Windows themes can work properly

This commit is contained in:
Jaex 2016-04-08 18:58:03 +03:00
parent 9660f26938
commit cce83515be
23 changed files with 2810 additions and 8112 deletions

View file

@ -70,7 +70,6 @@ private void InitializeComponent()
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.White;
this.Controls.Add(this.lblStatus);
this.Controls.Add(this.pbMain);
this.Name = "MyPictureBox";

View file

@ -151,6 +151,7 @@ public MyPictureBox()
{
InitializeComponent();
Text = string.Empty;
pbMain.BackColor = SystemColors.Control;
pbMain.InitialImage = Resources.Loading;
pbMain.ErrorImage = Resources.cross;
pbMain.LoadProgressChanged += pbMain_LoadProgressChanged;

View file

@ -62,7 +62,6 @@ private void InitializeComponent()
// txtClipboard
//
resources.ApplyResources(this.txtClipboard, "txtClipboard");
this.txtClipboard.BackColor = System.Drawing.Color.White;
this.txtClipboard.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.txtClipboard.Name = "txtClipboard";
this.txtClipboard.ReadOnly = true;

View file

@ -121,6 +121,9 @@
<data name="lblQuestion.Dock" type="System.Windows.Forms.DockStyle, System.Windows.Forms">
<value>Top</value>
</data>
<data name="lblQuestion.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="lblQuestion.Location" type="System.Drawing.Point, System.Drawing">
<value>0, 0</value>
@ -153,6 +156,9 @@
<data name="btnOK.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Bottom, Right</value>
</data>
<data name="btnOK.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
<data name="btnOK.Location" type="System.Drawing.Point, System.Drawing">
<value>243, 328</value>
</data>
@ -180,6 +186,9 @@
<data name="btnCancel.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Bottom, Right</value>
</data>
<data name="btnCancel.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
<data name="btnCancel.Location" type="System.Drawing.Point, System.Drawing">
<value>331, 328</value>
</data>
@ -267,6 +276,9 @@
<data name="cbDontShowThisWindow.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
</data>
<data name="cbDontShowThisWindow.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
<data name="cbDontShowThisWindow.Location" type="System.Drawing.Point, System.Drawing">
<value>9, 332</value>
</data>
@ -324,6 +336,9 @@
<data name="$this.ClientSize" type="System.Drawing.Size, System.Drawing">
<value>420, 360</value>
</data>
<data name="$this.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
<data name="$this.MinimumSize" type="System.Drawing.Size, System.Drawing">
<value>375, 375</value>
</data>

View file

@ -35,15 +35,14 @@ private void InitializeComponent()
this.btnOpenLogFile = new System.Windows.Forms.Button();
this.flpMenu = new System.Windows.Forms.FlowLayoutPanel();
this.btnContinue = new System.Windows.Forms.Button();
this.lblErrorMessage = new System.Windows.Forms.Label();
this.btnOK = new System.Windows.Forms.Button();
this.lblErrorMessage = new System.Windows.Forms.Label();
this.flpMenu.SuspendLayout();
this.SuspendLayout();
//
// txtException
//
resources.ApplyResources(this.txtException, "txtException");
this.txtException.BackColor = System.Drawing.Color.White;
this.txtException.Name = "txtException";
this.txtException.ReadOnly = true;
//
@ -89,11 +88,6 @@ private void InitializeComponent()
this.btnContinue.UseVisualStyleBackColor = false;
this.btnContinue.Click += new System.EventHandler(this.btnContinue_Click);
//
// lblErrorMessage
//
resources.ApplyResources(this.lblErrorMessage, "lblErrorMessage");
this.lblErrorMessage.Name = "lblErrorMessage";
//
// btnOK
//
resources.ApplyResources(this.btnOK, "btnOK");
@ -102,6 +96,11 @@ private void InitializeComponent()
this.btnOK.UseVisualStyleBackColor = false;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// lblErrorMessage
//
resources.ApplyResources(this.lblErrorMessage, "lblErrorMessage");
this.lblErrorMessage.Name = "lblErrorMessage";
//
// ErrorForm
//
resources.ApplyResources(this, "$this");

View file

@ -298,7 +298,6 @@ private void InitializeComponent()
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.WhiteSmoke;
this.Controls.Add(this.tcMain);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;

View file

@ -65,7 +65,6 @@ private void InitializeComponent()
//
// pSettings
//
this.pSettings.BackColor = System.Drawing.Color.WhiteSmoke;
this.pSettings.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
this.pSettings.Controls.Add(this.btnGradientColor2);
this.pSettings.Controls.Add(this.btnGradientColor1);
@ -269,7 +268,6 @@ private void InitializeComponent()
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.Gray;
this.Controls.Add(this.pSettings);
this.Cursor = System.Windows.Forms.Cursors.Default;
this.DoubleBuffered = true;

View file

@ -44,7 +44,6 @@ public MyMessageBox(string text, string caption, MessageBoxButtons buttons = Mes
{
Icon = ShareXResources.Icon;
BackColor = Color.White;
Width = 180;
Height = 100;
Text = caption;
@ -61,7 +60,6 @@ public MyMessageBox(string text, string caption, MessageBoxButtons buttons = Mes
labelText.Margin = new Padding(0);
labelText.Font = SystemFonts.MessageBoxFont;
labelText.TextAlign = ContentAlignment.MiddleLeft;
labelText.BackColor = Color.White;
labelText.AutoSize = true;
labelText.MinimumSize = new Size(125, 0);
labelText.MaximumSize = new Size(400, 400);
@ -121,7 +119,6 @@ public MyMessageBox(string text, string caption, MessageBoxButtons buttons = Mes
panel.FlowDirection = FlowDirection.RightToLeft;
FlowLayoutPanel labelPanel = new FlowLayoutPanel();
labelPanel.BackColor = Color.White;
labelPanel.FlowDirection = FlowDirection.TopDown;
labelPanel.AutoSize = true;
labelPanel.AutoSizeMode = AutoSizeMode.GrowAndShrink;

View file

@ -41,6 +41,7 @@ private void InitializeComponent()
// qrMain
//
resources.ApplyResources(this.qrMain, "qrMain");
this.qrMain.BackColor = System.Drawing.Color.White;
this.qrMain.ContextMenuStrip = this.cmsQR;
this.qrMain.ErrorCorrectLevel = Gma.QrCodeNet.Encoding.ErrorCorrectionLevel.M;
this.qrMain.Name = "qrMain";
@ -79,7 +80,6 @@ private void InitializeComponent()
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.White;
this.Controls.Add(this.txtQRCode);
this.Controls.Add(this.qrMain);
this.Name = "QRCodeForm";

View file

@ -180,7 +180,6 @@ private void InitializeComponent()
//
// tbVorbis_qscale
//
this.tbVorbis_qscale.BackColor = System.Drawing.Color.White;
resources.ApplyResources(this.tbVorbis_qscale, "tbVorbis_qscale");
this.tbVorbis_qscale.LargeChange = 1;
this.tbVorbis_qscale.Name = "tbVorbis_qscale";
@ -191,7 +190,6 @@ private void InitializeComponent()
//
// tbMP3_qscale
//
this.tbMP3_qscale.BackColor = System.Drawing.Color.White;
resources.ApplyResources(this.tbMP3_qscale, "tbMP3_qscale");
this.tbMP3_qscale.LargeChange = 1;
this.tbMP3_qscale.Maximum = 9;
@ -203,7 +201,6 @@ private void InitializeComponent()
//
// tbAACBitrate
//
this.tbAACBitrate.BackColor = System.Drawing.Color.White;
resources.ApplyResources(this.tbAACBitrate, "tbAACBitrate");
this.tbAACBitrate.LargeChange = 1;
this.tbAACBitrate.Maximum = 16;
@ -619,7 +616,6 @@ private void InitializeComponent()
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.White;
this.Controls.Add(this.cbOverrideFFmpegPath);
this.Controls.Add(this.eiFFmpeg);
this.Controls.Add(this.btnHelp);

View file

@ -133,7 +133,7 @@
</data>
<data name="lblx264CRF.Text" xml:space="preserve">
<value>CRF:</value>
<comment>@Invariant</comment></data>
</data>
<data name="&gt;&gt;lblx264CRF.Name" xml:space="preserve">
<value>lblx264CRF</value>
</data>
@ -146,6 +146,9 @@
<data name="&gt;&gt;lblx264CRF.ZOrder" xml:space="preserve">
<value>2</value>
</data>
<metadata name="ttHelpTip.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
<data name="nudx264CRF.Location" type="System.Drawing.Point, System.Drawing">
<value>144, 12</value>
</data>
@ -159,9 +162,6 @@
<data name="nudx264CRF.TextAlign" type="System.Windows.Forms.HorizontalAlignment, System.Windows.Forms">
<value>Center</value>
</data>
<metadata name="ttHelpTip.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
<data name="nudx264CRF.ToolTip" xml:space="preserve">
<value>Constant Rate Factor (CRF): The value can be between 0-51, where 0 is lossless, 30 is default, and 51 is the worst possible.
A higher value means bad quality, but a low file size.</value>
@ -178,6 +178,9 @@ A higher value means bad quality, but a low file size.</value>
<data name="&gt;&gt;nudx264CRF.ZOrder" xml:space="preserve">
<value>1</value>
</data>
<metadata name="ttHelpTip.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
<data name="nudXvidQscale.Location" type="System.Drawing.Point, System.Drawing">
<value>144, 12</value>
</data>
@ -621,7 +624,7 @@ Otherwise it can't keep up with recording and a lot of frame drops will happen.<
</data>
<data name="btnFFmpegBrowse.Text" xml:space="preserve">
<value>...</value>
<comment>@Invariant</comment></data>
</data>
<data name="&gt;&gt;btnFFmpegBrowse.Name" xml:space="preserve">
<value>btnFFmpegBrowse</value>
</data>
@ -855,7 +858,7 @@ Otherwise it can't keep up with recording and a lot of frame drops will happen.<
</data>
<data name="btnFFmpegHelp.Text" xml:space="preserve">
<value>?</value>
<comment>@Invariant</comment></data>
</data>
<data name="&gt;&gt;btnFFmpegHelp.Name" xml:space="preserve">
<value>btnFFmpegHelp</value>
</data>
@ -892,6 +895,75 @@ Otherwise it can't keep up with recording and a lot of frame drops will happen.<
<data name="&gt;&gt;tbUserArgs.ZOrder" xml:space="preserve">
<value>1</value>
</data>
<data name="&gt;&gt;tpX264.Name" xml:space="preserve">
<value>tpX264</value>
</data>
<data name="&gt;&gt;tpX264.Type" xml:space="preserve">
<value>System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;tpX264.Parent" xml:space="preserve">
<value>tcFFmpegVideoCodecs</value>
</data>
<data name="&gt;&gt;tpX264.ZOrder" xml:space="preserve">
<value>0</value>
</data>
<data name="&gt;&gt;tpVpx.Name" xml:space="preserve">
<value>tpVpx</value>
</data>
<data name="&gt;&gt;tpVpx.Type" xml:space="preserve">
<value>System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;tpVpx.Parent" xml:space="preserve">
<value>tcFFmpegVideoCodecs</value>
</data>
<data name="&gt;&gt;tpVpx.ZOrder" xml:space="preserve">
<value>1</value>
</data>
<data name="&gt;&gt;tpXvid.Name" xml:space="preserve">
<value>tpXvid</value>
</data>
<data name="&gt;&gt;tpXvid.Type" xml:space="preserve">
<value>System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;tpXvid.Parent" xml:space="preserve">
<value>tcFFmpegVideoCodecs</value>
</data>
<data name="&gt;&gt;tpXvid.ZOrder" xml:space="preserve">
<value>2</value>
</data>
<data name="&gt;&gt;tpGIF.Name" xml:space="preserve">
<value>tpGIF</value>
</data>
<data name="&gt;&gt;tpGIF.Type" xml:space="preserve">
<value>System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;tpGIF.Parent" xml:space="preserve">
<value>tcFFmpegVideoCodecs</value>
</data>
<data name="&gt;&gt;tpGIF.ZOrder" xml:space="preserve">
<value>3</value>
</data>
<data name="tcFFmpegVideoCodecs.Location" type="System.Drawing.Point, System.Drawing">
<value>8, 56</value>
</data>
<data name="tcFFmpegVideoCodecs.Size" type="System.Drawing.Size, System.Drawing">
<value>312, 96</value>
</data>
<data name="tcFFmpegVideoCodecs.TabIndex" type="System.Int32, mscorlib">
<value>3</value>
</data>
<data name="&gt;&gt;tcFFmpegVideoCodecs.Name" xml:space="preserve">
<value>tcFFmpegVideoCodecs</value>
</data>
<data name="&gt;&gt;tcFFmpegVideoCodecs.Type" xml:space="preserve">
<value>System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;tcFFmpegVideoCodecs.Parent" xml:space="preserve">
<value>gbCodecs</value>
</data>
<data name="&gt;&gt;tcFFmpegVideoCodecs.ZOrder" xml:space="preserve">
<value>6</value>
</data>
<data name="tpX264.Location" type="System.Drawing.Point, System.Drawing">
<value>4, 22</value>
</data>
@ -906,7 +978,7 @@ Otherwise it can't keep up with recording and a lot of frame drops will happen.<
</data>
<data name="tpX264.Text" xml:space="preserve">
<value>x264 / x265</value>
<comment>@Invariant</comment></data>
</data>
<data name="&gt;&gt;tpX264.Name" xml:space="preserve">
<value>tpX264</value>
</data>
@ -966,7 +1038,7 @@ Otherwise it can't keep up with recording and a lot of frame drops will happen.<
</data>
<data name="tpVpx.Text" xml:space="preserve">
<value>VP8</value>
<comment>@Invariant</comment></data>
</data>
<data name="&gt;&gt;tpVpx.Name" xml:space="preserve">
<value>tpVpx</value>
</data>
@ -979,102 +1051,6 @@ Otherwise it can't keep up with recording and a lot of frame drops will happen.<
<data name="&gt;&gt;tpVpx.ZOrder" xml:space="preserve">
<value>1</value>
</data>
<data name="tpXvid.Location" type="System.Drawing.Point, System.Drawing">
<value>4, 22</value>
</data>
<data name="tpXvid.Size" type="System.Drawing.Size, System.Drawing">
<value>304, 70</value>
</data>
<data name="tpXvid.TabIndex" type="System.Int32, mscorlib">
<value>3</value>
</data>
<data name="tpXvid.Text" xml:space="preserve">
<value>Xvid</value>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;tpXvid.Name" xml:space="preserve">
<value>tpXvid</value>
</data>
<data name="&gt;&gt;tpXvid.Type" xml:space="preserve">
<value>System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;tpXvid.Parent" xml:space="preserve">
<value>tcFFmpegVideoCodecs</value>
</data>
<data name="&gt;&gt;tpXvid.ZOrder" xml:space="preserve">
<value>2</value>
</data>
<data name="&gt;&gt;lblGIFDither.Name" xml:space="preserve">
<value>lblGIFDither</value>
</data>
<data name="&gt;&gt;lblGIFDither.Type" xml:space="preserve">
<value>System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;lblGIFDither.Parent" xml:space="preserve">
<value>tpGIF</value>
</data>
<data name="&gt;&gt;lblGIFDither.ZOrder" xml:space="preserve">
<value>1</value>
</data>
<data name="&gt;&gt;lblGIFStatsMode.Name" xml:space="preserve">
<value>lblGIFStatsMode</value>
</data>
<data name="&gt;&gt;lblGIFStatsMode.Type" xml:space="preserve">
<value>System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;lblGIFStatsMode.Parent" xml:space="preserve">
<value>tpGIF</value>
</data>
<data name="&gt;&gt;lblGIFStatsMode.ZOrder" xml:space="preserve">
<value>3</value>
</data>
<data name="tpGIF.Location" type="System.Drawing.Point, System.Drawing">
<value>4, 22</value>
</data>
<data name="tpGIF.Padding" type="System.Windows.Forms.Padding, System.Windows.Forms">
<value>3, 3, 3, 3</value>
</data>
<data name="tpGIF.Size" type="System.Drawing.Size, System.Drawing">
<value>304, 70</value>
</data>
<data name="tpGIF.TabIndex" type="System.Int32, mscorlib">
<value>4</value>
</data>
<data name="tpGIF.Text" xml:space="preserve">
<value>GIF</value>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;tpGIF.Name" xml:space="preserve">
<value>tpGIF</value>
</data>
<data name="&gt;&gt;tpGIF.Type" xml:space="preserve">
<value>System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;tpGIF.Parent" xml:space="preserve">
<value>tcFFmpegVideoCodecs</value>
</data>
<data name="&gt;&gt;tpGIF.ZOrder" xml:space="preserve">
<value>3</value>
</data>
<data name="tcFFmpegVideoCodecs.Location" type="System.Drawing.Point, System.Drawing">
<value>8, 56</value>
</data>
<data name="tcFFmpegVideoCodecs.Size" type="System.Drawing.Size, System.Drawing">
<value>312, 96</value>
</data>
<data name="tcFFmpegVideoCodecs.TabIndex" type="System.Int32, mscorlib">
<value>3</value>
</data>
<data name="&gt;&gt;tcFFmpegVideoCodecs.Name" xml:space="preserve">
<value>tcFFmpegVideoCodecs</value>
</data>
<data name="&gt;&gt;tcFFmpegVideoCodecs.Type" xml:space="preserve">
<value>System.Windows.Forms.TabControl, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;tcFFmpegVideoCodecs.Parent" xml:space="preserve">
<value>gbCodecs</value>
</data>
<data name="&gt;&gt;tcFFmpegVideoCodecs.ZOrder" xml:space="preserve">
<value>6</value>
</data>
<data name="lblVP8BitrateK.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
</data>
@ -1092,7 +1068,7 @@ Otherwise it can't keep up with recording and a lot of frame drops will happen.<
</data>
<data name="lblVP8BitrateK.Text" xml:space="preserve">
<value>kbit/s</value>
<comment>@Invariant</comment></data>
</data>
<data name="&gt;&gt;lblVP8BitrateK.Name" xml:space="preserve">
<value>lblVP8BitrateK</value>
</data>
@ -1156,6 +1132,81 @@ Otherwise it can't keep up with recording and a lot of frame drops will happen.<
<data name="&gt;&gt;lblVP8Bitrate.ZOrder" xml:space="preserve">
<value>2</value>
</data>
<data name="tpXvid.Location" type="System.Drawing.Point, System.Drawing">
<value>4, 22</value>
</data>
<data name="tpXvid.Size" type="System.Drawing.Size, System.Drawing">
<value>304, 70</value>
</data>
<data name="tpXvid.TabIndex" type="System.Int32, mscorlib">
<value>3</value>
</data>
<data name="tpXvid.Text" xml:space="preserve">
<value>Xvid</value>
</data>
<data name="&gt;&gt;tpXvid.Name" xml:space="preserve">
<value>tpXvid</value>
</data>
<data name="&gt;&gt;tpXvid.Type" xml:space="preserve">
<value>System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;tpXvid.Parent" xml:space="preserve">
<value>tcFFmpegVideoCodecs</value>
</data>
<data name="&gt;&gt;tpXvid.ZOrder" xml:space="preserve">
<value>2</value>
</data>
<data name="&gt;&gt;lblGIFDither.Name" xml:space="preserve">
<value>lblGIFDither</value>
</data>
<data name="&gt;&gt;lblGIFDither.Type" xml:space="preserve">
<value>System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;lblGIFDither.Parent" xml:space="preserve">
<value>tpGIF</value>
</data>
<data name="&gt;&gt;lblGIFDither.ZOrder" xml:space="preserve">
<value>1</value>
</data>
<data name="&gt;&gt;lblGIFStatsMode.Name" xml:space="preserve">
<value>lblGIFStatsMode</value>
</data>
<data name="&gt;&gt;lblGIFStatsMode.Type" xml:space="preserve">
<value>System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;lblGIFStatsMode.Parent" xml:space="preserve">
<value>tpGIF</value>
</data>
<data name="&gt;&gt;lblGIFStatsMode.ZOrder" xml:space="preserve">
<value>3</value>
</data>
<data name="tpGIF.Location" type="System.Drawing.Point, System.Drawing">
<value>4, 22</value>
</data>
<data name="tpGIF.Padding" type="System.Windows.Forms.Padding, System.Windows.Forms">
<value>3, 3, 3, 3</value>
</data>
<data name="tpGIF.Size" type="System.Drawing.Size, System.Drawing">
<value>304, 70</value>
</data>
<data name="tpGIF.TabIndex" type="System.Int32, mscorlib">
<value>4</value>
</data>
<data name="tpGIF.Text" xml:space="preserve">
<value>GIF</value>
</data>
<data name="&gt;&gt;tpGIF.Name" xml:space="preserve">
<value>tpGIF</value>
</data>
<data name="&gt;&gt;tpGIF.Type" xml:space="preserve">
<value>System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;tpGIF.Parent" xml:space="preserve">
<value>tcFFmpegVideoCodecs</value>
</data>
<data name="&gt;&gt;tpGIF.ZOrder" xml:space="preserve">
<value>3</value>
</data>
<data name="lblGIFDither.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
</data>
@ -1261,6 +1312,48 @@ Otherwise it can't keep up with recording and a lot of frame drops will happen.<
<data name="&gt;&gt;btnCopyPreview.ZOrder" xml:space="preserve">
<value>5</value>
</data>
<data name="lblAACQuality.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
</data>
<data name="lblAACQuality.Location" type="System.Drawing.Point, System.Drawing">
<value>16, 16</value>
</data>
<data name="lblAACQuality.Size" type="System.Drawing.Size, System.Drawing">
<value>40, 13</value>
</data>
<data name="lblAACQuality.TabIndex" type="System.Int32, mscorlib">
<value>0</value>
</data>
<data name="lblAACQuality.Text" xml:space="preserve">
<value>Bitrate:</value>
</data>
<data name="&gt;&gt;lblAACQuality.Name" xml:space="preserve">
<value>lblAACQuality</value>
</data>
<data name="&gt;&gt;lblAACQuality.Type" xml:space="preserve">
<value>System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;lblAACQuality.Parent" xml:space="preserve">
<value>tpAAC</value>
</data>
<data name="&gt;&gt;lblAACQuality.ZOrder" xml:space="preserve">
<value>1</value>
</data>
<data name="tpAAC.Location" type="System.Drawing.Point, System.Drawing">
<value>4, 22</value>
</data>
<data name="tpAAC.Padding" type="System.Windows.Forms.Padding, System.Windows.Forms">
<value>3, 3, 3, 3</value>
</data>
<data name="tpAAC.Size" type="System.Drawing.Size, System.Drawing">
<value>304, 70</value>
</data>
<data name="tpAAC.TabIndex" type="System.Int32, mscorlib">
<value>3</value>
</data>
<data name="tpAAC.Text" xml:space="preserve">
<value>AAC</value>
</data>
<data name="&gt;&gt;tpAAC.Name" xml:space="preserve">
<value>tpAAC</value>
</data>
@ -1273,6 +1366,48 @@ Otherwise it can't keep up with recording and a lot of frame drops will happen.<
<data name="&gt;&gt;tpAAC.ZOrder" xml:space="preserve">
<value>0</value>
</data>
<data name="lblVorbisQuality.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
</data>
<data name="lblVorbisQuality.Location" type="System.Drawing.Point, System.Drawing">
<value>16, 16</value>
</data>
<data name="lblVorbisQuality.Size" type="System.Drawing.Size, System.Drawing">
<value>42, 13</value>
</data>
<data name="lblVorbisQuality.TabIndex" type="System.Int32, mscorlib">
<value>0</value>
</data>
<data name="lblVorbisQuality.Text" xml:space="preserve">
<value>Quality:</value>
</data>
<data name="&gt;&gt;lblVorbisQuality.Name" xml:space="preserve">
<value>lblVorbisQuality</value>
</data>
<data name="&gt;&gt;lblVorbisQuality.Type" xml:space="preserve">
<value>System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;lblVorbisQuality.Parent" xml:space="preserve">
<value>tpVorbis</value>
</data>
<data name="&gt;&gt;lblVorbisQuality.ZOrder" xml:space="preserve">
<value>1</value>
</data>
<data name="tpVorbis.Location" type="System.Drawing.Point, System.Drawing">
<value>4, 22</value>
</data>
<data name="tpVorbis.Padding" type="System.Windows.Forms.Padding, System.Windows.Forms">
<value>3, 3, 3, 3</value>
</data>
<data name="tpVorbis.Size" type="System.Drawing.Size, System.Drawing">
<value>304, 70</value>
</data>
<data name="tpVorbis.TabIndex" type="System.Int32, mscorlib">
<value>0</value>
</data>
<data name="tpVorbis.Text" xml:space="preserve">
<value>Vorbis</value>
</data>
<data name="&gt;&gt;tpVorbis.Name" xml:space="preserve">
<value>tpVorbis</value>
</data>
@ -1285,6 +1420,48 @@ Otherwise it can't keep up with recording and a lot of frame drops will happen.<
<data name="&gt;&gt;tpVorbis.ZOrder" xml:space="preserve">
<value>1</value>
</data>
<data name="lblMP3Quality.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
</data>
<data name="lblMP3Quality.Location" type="System.Drawing.Point, System.Drawing">
<value>16, 16</value>
</data>
<data name="lblMP3Quality.Size" type="System.Drawing.Size, System.Drawing">
<value>42, 13</value>
</data>
<data name="lblMP3Quality.TabIndex" type="System.Int32, mscorlib">
<value>0</value>
</data>
<data name="lblMP3Quality.Text" xml:space="preserve">
<value>Quality:</value>
</data>
<data name="&gt;&gt;lblMP3Quality.Name" xml:space="preserve">
<value>lblMP3Quality</value>
</data>
<data name="&gt;&gt;lblMP3Quality.Type" xml:space="preserve">
<value>System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;lblMP3Quality.Parent" xml:space="preserve">
<value>tpMP3</value>
</data>
<data name="&gt;&gt;lblMP3Quality.ZOrder" xml:space="preserve">
<value>1</value>
</data>
<data name="tpMP3.Location" type="System.Drawing.Point, System.Drawing">
<value>4, 22</value>
</data>
<data name="tpMP3.Padding" type="System.Windows.Forms.Padding, System.Windows.Forms">
<value>3, 3, 3, 3</value>
</data>
<data name="tpMP3.Size" type="System.Drawing.Size, System.Drawing">
<value>304, 70</value>
</data>
<data name="tpMP3.TabIndex" type="System.Int32, mscorlib">
<value>2</value>
</data>
<data name="tpMP3.Text" xml:space="preserve">
<value>MP3</value>
</data>
<data name="&gt;&gt;tpMP3.Name" xml:space="preserve">
<value>tpMP3</value>
</data>
@ -1318,204 +1495,6 @@ Otherwise it can't keep up with recording and a lot of frame drops will happen.<
<data name="&gt;&gt;tcFFmpegAudioCodecs.ZOrder" xml:space="preserve">
<value>5</value>
</data>
<data name="&gt;&gt;lblAACQuality.Name" xml:space="preserve">
<value>lblAACQuality</value>
</data>
<data name="&gt;&gt;lblAACQuality.Type" xml:space="preserve">
<value>System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;lblAACQuality.Parent" xml:space="preserve">
<value>tpAAC</value>
</data>
<data name="&gt;&gt;lblAACQuality.ZOrder" xml:space="preserve">
<value>1</value>
</data>
<data name="tpAAC.Location" type="System.Drawing.Point, System.Drawing">
<value>4, 22</value>
</data>
<data name="tpAAC.Padding" type="System.Windows.Forms.Padding, System.Windows.Forms">
<value>3, 3, 3, 3</value>
</data>
<data name="tpAAC.Size" type="System.Drawing.Size, System.Drawing">
<value>304, 70</value>
</data>
<data name="tpAAC.TabIndex" type="System.Int32, mscorlib">
<value>3</value>
</data>
<data name="tpAAC.Text" xml:space="preserve">
<value>AAC</value>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;tpAAC.Name" xml:space="preserve">
<value>tpAAC</value>
</data>
<data name="&gt;&gt;tpAAC.Type" xml:space="preserve">
<value>System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;tpAAC.Parent" xml:space="preserve">
<value>tcFFmpegAudioCodecs</value>
</data>
<data name="&gt;&gt;tpAAC.ZOrder" xml:space="preserve">
<value>0</value>
</data>
<data name="lblAACQuality.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
</data>
<data name="lblAACQuality.Location" type="System.Drawing.Point, System.Drawing">
<value>16, 16</value>
</data>
<data name="lblAACQuality.Size" type="System.Drawing.Size, System.Drawing">
<value>40, 13</value>
</data>
<data name="lblAACQuality.TabIndex" type="System.Int32, mscorlib">
<value>0</value>
</data>
<data name="lblAACQuality.Text" xml:space="preserve">
<value>Bitrate:</value>
</data>
<data name="&gt;&gt;lblAACQuality.Name" xml:space="preserve">
<value>lblAACQuality</value>
</data>
<data name="&gt;&gt;lblAACQuality.Type" xml:space="preserve">
<value>System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;lblAACQuality.Parent" xml:space="preserve">
<value>tpAAC</value>
</data>
<data name="&gt;&gt;lblAACQuality.ZOrder" xml:space="preserve">
<value>1</value>
</data>
<data name="&gt;&gt;lblVorbisQuality.Name" xml:space="preserve">
<value>lblVorbisQuality</value>
</data>
<data name="&gt;&gt;lblVorbisQuality.Type" xml:space="preserve">
<value>System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;lblVorbisQuality.Parent" xml:space="preserve">
<value>tpVorbis</value>
</data>
<data name="&gt;&gt;lblVorbisQuality.ZOrder" xml:space="preserve">
<value>1</value>
</data>
<data name="tpVorbis.Location" type="System.Drawing.Point, System.Drawing">
<value>4, 22</value>
</data>
<data name="tpVorbis.Padding" type="System.Windows.Forms.Padding, System.Windows.Forms">
<value>3, 3, 3, 3</value>
</data>
<data name="tpVorbis.Size" type="System.Drawing.Size, System.Drawing">
<value>304, 70</value>
</data>
<data name="tpVorbis.TabIndex" type="System.Int32, mscorlib">
<value>0</value>
</data>
<data name="tpVorbis.Text" xml:space="preserve">
<value>Vorbis</value>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;tpVorbis.Name" xml:space="preserve">
<value>tpVorbis</value>
</data>
<data name="&gt;&gt;tpVorbis.Type" xml:space="preserve">
<value>System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;tpVorbis.Parent" xml:space="preserve">
<value>tcFFmpegAudioCodecs</value>
</data>
<data name="&gt;&gt;tpVorbis.ZOrder" xml:space="preserve">
<value>1</value>
</data>
<data name="lblVorbisQuality.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
</data>
<data name="lblVorbisQuality.Location" type="System.Drawing.Point, System.Drawing">
<value>16, 16</value>
</data>
<data name="lblVorbisQuality.Size" type="System.Drawing.Size, System.Drawing">
<value>42, 13</value>
</data>
<data name="lblVorbisQuality.TabIndex" type="System.Int32, mscorlib">
<value>0</value>
</data>
<data name="lblVorbisQuality.Text" xml:space="preserve">
<value>Quality:</value>
</data>
<data name="&gt;&gt;lblVorbisQuality.Name" xml:space="preserve">
<value>lblVorbisQuality</value>
</data>
<data name="&gt;&gt;lblVorbisQuality.Type" xml:space="preserve">
<value>System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;lblVorbisQuality.Parent" xml:space="preserve">
<value>tpVorbis</value>
</data>
<data name="&gt;&gt;lblVorbisQuality.ZOrder" xml:space="preserve">
<value>1</value>
</data>
<data name="&gt;&gt;lblMP3Quality.Name" xml:space="preserve">
<value>lblMP3Quality</value>
</data>
<data name="&gt;&gt;lblMP3Quality.Type" xml:space="preserve">
<value>System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;lblMP3Quality.Parent" xml:space="preserve">
<value>tpMP3</value>
</data>
<data name="&gt;&gt;lblMP3Quality.ZOrder" xml:space="preserve">
<value>1</value>
</data>
<data name="tpMP3.Location" type="System.Drawing.Point, System.Drawing">
<value>4, 22</value>
</data>
<data name="tpMP3.Padding" type="System.Windows.Forms.Padding, System.Windows.Forms">
<value>3, 3, 3, 3</value>
</data>
<data name="tpMP3.Size" type="System.Drawing.Size, System.Drawing">
<value>304, 70</value>
</data>
<data name="tpMP3.TabIndex" type="System.Int32, mscorlib">
<value>2</value>
</data>
<data name="tpMP3.Text" xml:space="preserve">
<value>MP3</value>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;tpMP3.Name" xml:space="preserve">
<value>tpMP3</value>
</data>
<data name="&gt;&gt;tpMP3.Type" xml:space="preserve">
<value>System.Windows.Forms.TabPage, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;tpMP3.Parent" xml:space="preserve">
<value>tcFFmpegAudioCodecs</value>
</data>
<data name="&gt;&gt;tpMP3.ZOrder" xml:space="preserve">
<value>2</value>
</data>
<data name="lblMP3Quality.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
</data>
<data name="lblMP3Quality.Location" type="System.Drawing.Point, System.Drawing">
<value>16, 16</value>
</data>
<data name="lblMP3Quality.Size" type="System.Drawing.Size, System.Drawing">
<value>42, 13</value>
</data>
<data name="lblMP3Quality.TabIndex" type="System.Int32, mscorlib">
<value>0</value>
</data>
<data name="lblMP3Quality.Text" xml:space="preserve">
<value>Quality:</value>
</data>
<data name="&gt;&gt;lblMP3Quality.Name" xml:space="preserve">
<value>lblMP3Quality</value>
</data>
<data name="&gt;&gt;lblMP3Quality.Type" xml:space="preserve">
<value>System.Windows.Forms.Label, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;lblMP3Quality.Parent" xml:space="preserve">
<value>tpMP3</value>
</data>
<data name="&gt;&gt;lblMP3Quality.ZOrder" xml:space="preserve">
<value>1</value>
</data>
<data name="cboVideoSource.Location" type="System.Drawing.Point, System.Drawing">
<value>184, 25</value>
</data>
@ -1743,7 +1722,7 @@ Otherwise it can't keep up with recording and a lot of frame drops will happen.<
</data>
<data name="btnHelperDevicesHelp.Text" xml:space="preserve">
<value>?</value>
<comment>@Invariant</comment></data>
</data>
<data name="&gt;&gt;btnHelperDevicesHelp.Name" xml:space="preserve">
<value>btnHelperDevicesHelp</value>
</data>

View file

@ -29,8 +29,8 @@ protected override void Dispose(bool disposing)
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(OAuthWebForm));
this.wbMain = new System.Windows.Forms.WebBrowser();
this.tscMain = new System.Windows.Forms.ToolStripContainer();
this.wbMain = new System.Windows.Forms.WebBrowser();
this.tsMain = new System.Windows.Forms.ToolStrip();
this.tslURL = new System.Windows.Forms.ToolStripLabel();
this.tstbURL = new System.Windows.Forms.ToolStripTextBox();
@ -40,13 +40,6 @@ private void InitializeComponent()
this.tsMain.SuspendLayout();
this.SuspendLayout();
//
// wbMain
//
resources.ApplyResources(this.wbMain, "wbMain");
this.wbMain.Name = "wbMain";
this.wbMain.ScriptErrorsSuppressed = true;
this.wbMain.Navigated += new System.Windows.Forms.WebBrowserNavigatedEventHandler(this.wbMain_Navigated);
//
// tscMain
//
//
@ -61,6 +54,13 @@ private void InitializeComponent()
//
this.tscMain.TopToolStripPanel.Controls.Add(this.tsMain);
//
// wbMain
//
resources.ApplyResources(this.wbMain, "wbMain");
this.wbMain.Name = "wbMain";
this.wbMain.ScriptErrorsSuppressed = true;
this.wbMain.Navigated += new System.Windows.Forms.WebBrowserNavigatedEventHandler(this.wbMain_Navigated);
//
// tsMain
//
resources.ApplyResources(this.tsMain, "tsMain");
@ -87,7 +87,6 @@ private void InitializeComponent()
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.White;
this.Controls.Add(this.tscMain);
this.Name = "OAuthWebForm";
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;

View file

@ -117,6 +117,18 @@
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="&gt;&gt;tscMain.BottomToolStripPanel.Name" xml:space="preserve">
<value>tscMain.BottomToolStripPanel</value>
</data>
<data name="&gt;&gt;tscMain.BottomToolStripPanel.Type" xml:space="preserve">
<value>System.Windows.Forms.ToolStripPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;tscMain.BottomToolStripPanel.Parent" xml:space="preserve">
<value>tscMain</value>
</data>
<data name="&gt;&gt;tscMain.BottomToolStripPanel.ZOrder" xml:space="preserve">
<value>4</value>
</data>
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="wbMain.Dock" type="System.Windows.Forms.DockStyle, System.Windows.Forms">
<value>Fill</value>
@ -147,18 +159,6 @@
<data name="&gt;&gt;wbMain.ZOrder" xml:space="preserve">
<value>0</value>
</data>
<data name="&gt;&gt;tscMain.BottomToolStripPanel.Name" xml:space="preserve">
<value>tscMain.BottomToolStripPanel</value>
</data>
<data name="&gt;&gt;tscMain.BottomToolStripPanel.Type" xml:space="preserve">
<value>System.Windows.Forms.ToolStripPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;tscMain.BottomToolStripPanel.Parent" xml:space="preserve">
<value>tscMain</value>
</data>
<data name="&gt;&gt;tscMain.BottomToolStripPanel.ZOrder" xml:space="preserve">
<value>4</value>
</data>
<data name="tscMain.ContentPanel.Size" type="System.Drawing.Size, System.Drawing">
<value>1056, 545</value>
</data>
@ -221,7 +221,7 @@
</data>
<data name="tslURL.Text" xml:space="preserve">
<value>URL:</value>
<comment>@Invariant</comment></data>
</data>
<data name="tstbURL.Size" type="System.Drawing.Size, System.Drawing">
<value>800, 23</value>
</data>

View file

@ -369,6 +369,7 @@ private void InitializeComponent()
this.txtSulAPIKey = new System.Windows.Forms.TextBox();
this.lblSulAPIKey = new System.Windows.Forms.Label();
this.tpStreamable = new System.Windows.Forms.TabPage();
this.cbStreamableUseDirectURL = new System.Windows.Forms.CheckBox();
this.txtStreamablePassword = new System.Windows.Forms.TextBox();
this.txtStreamableUsername = new System.Windows.Forms.TextBox();
this.lblStreamableUsername = new System.Windows.Forms.Label();
@ -529,7 +530,6 @@ private void InitializeComponent()
this.lblWidthHint = new System.Windows.Forms.Label();
this.ttlvMain = new ShareX.HelpersLib.TabToListView();
this.actRapidShareAccountType = new ShareX.UploadersLib.AccountTypeControl();
this.cbStreamableUseDirectURL = new System.Windows.Forms.CheckBox();
this.tpOtherUploaders.SuspendLayout();
this.tcOtherUploaders.SuspendLayout();
this.tpTwitter.SuspendLayout();
@ -3087,6 +3087,13 @@ private void InitializeComponent()
this.tpStreamable.Name = "tpStreamable";
this.tpStreamable.UseVisualStyleBackColor = true;
//
// cbStreamableUseDirectURL
//
resources.ApplyResources(this.cbStreamableUseDirectURL, "cbStreamableUseDirectURL");
this.cbStreamableUseDirectURL.Name = "cbStreamableUseDirectURL";
this.cbStreamableUseDirectURL.UseVisualStyleBackColor = true;
this.cbStreamableUseDirectURL.CheckedChanged += new System.EventHandler(this.cbStreamableUseDirectURL_CheckedChanged);
//
// txtStreamablePassword
//
resources.ApplyResources(this.txtStreamablePassword, "txtStreamablePassword");
@ -4223,7 +4230,7 @@ private void InitializeComponent()
//
// lblWidthHint
//
this.lblWidthHint.BackColor = System.Drawing.Color.Black;
this.lblWidthHint.BackColor = System.Drawing.SystemColors.Highlight;
resources.ApplyResources(this.lblWidthHint, "lblWidthHint");
this.lblWidthHint.Name = "lblWidthHint";
//
@ -4241,18 +4248,10 @@ private void InitializeComponent()
this.actRapidShareAccountType.Name = "actRapidShareAccountType";
this.actRapidShareAccountType.SelectedAccountType = ShareX.UploadersLib.AccountType.Anonymous;
//
// cbStreamableUseDirectURL
//
resources.ApplyResources(this.cbStreamableUseDirectURL, "cbStreamableUseDirectURL");
this.cbStreamableUseDirectURL.Name = "cbStreamableUseDirectURL";
this.cbStreamableUseDirectURL.UseVisualStyleBackColor = true;
this.cbStreamableUseDirectURL.CheckedChanged += new System.EventHandler(this.cbStreamableUseDirectURL_CheckedChanged);
//
// UploadersConfigForm
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.White;
this.Controls.Add(this.lblWidthHint);
this.Controls.Add(this.tcUploaders);
this.Controls.Add(this.ttlvMain);

File diff suppressed because it is too large Load diff

View file

@ -45,7 +45,6 @@ private void InitializeComponent()
// lblHotkeyDescription
//
resources.ApplyResources(this.lblHotkeyDescription, "lblHotkeyDescription");
this.lblHotkeyDescription.BackColor = System.Drawing.Color.White;
this.lblHotkeyDescription.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.lblHotkeyDescription.Name = "lblHotkeyDescription";
this.lblHotkeyDescription.UseMnemonic = false;

View file

@ -56,7 +56,7 @@ public bool Selected
}
else
{
lblHotkeyDescription.BackColor = Color.White;
lblHotkeyDescription.BackColor = SystemColors.Control;
}
}
}
@ -256,7 +256,7 @@ private void lblHotkeyDescription_MouseLeave(object sender, EventArgs e)
{
if (!Selected)
{
lblHotkeyDescription.BackColor = Color.White;
lblHotkeyDescription.BackColor = SystemColors.Control;
}
}

View file

@ -67,30 +67,26 @@ private void InitializeComponent()
// lblBerk
//
resources.ApplyResources(this.lblBerk, "lblBerk");
this.lblBerk.BackColor = System.Drawing.Color.Transparent;
this.lblBerk.ForeColor = System.Drawing.Color.Black;
this.lblBerk.Name = "lblBerk";
//
// lblMike
//
resources.ApplyResources(this.lblMike, "lblMike");
this.lblMike.BackColor = System.Drawing.Color.Transparent;
this.lblMike.ForeColor = System.Drawing.Color.Black;
this.lblMike.Name = "lblMike";
//
// rtbCredits
//
resources.ApplyResources(this.rtbCredits, "rtbCredits");
this.rtbCredits.BackColor = System.Drawing.Color.White;
this.rtbCredits.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.rtbCredits.ForeColor = System.Drawing.SystemColors.ControlText;
this.rtbCredits.Name = "rtbCredits";
this.rtbCredits.ReadOnly = true;
this.rtbCredits.LinkClicked += new System.Windows.Forms.LinkClickedEventHandler(this.rtb_LinkClicked);
//
// rtbShareXInfo
//
this.rtbShareXInfo.BackColor = System.Drawing.Color.White;
this.rtbShareXInfo.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.rtbShareXInfo.ForeColor = System.Drawing.SystemColors.ControlText;
resources.ApplyResources(this.rtbShareXInfo, "rtbShareXInfo");
this.rtbShareXInfo.Name = "rtbShareXInfo";
this.rtbShareXInfo.ReadOnly = true;
@ -164,6 +160,7 @@ private void InitializeComponent()
// btnClose
//
resources.ApplyResources(this.btnClose, "btnClose");
this.btnClose.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnClose.Name = "btnClose";
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
@ -199,7 +196,6 @@ private void InitializeComponent()
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.White;
this.CancelButton = this.btnClose;
this.Controls.Add(this.btnLicenses);
this.Controls.Add(this.btnShareXLicense);

View file

@ -630,9 +630,6 @@
<data name="$this.ClientSize" type="System.Drawing.Size, System.Drawing">
<value>584, 593</value>
</data>
<data name="$this.ImeMode" type="System.Windows.Forms.ImeMode, System.Windows.Forms">
<value>NoControl</value>
</data>
<data name="$this.MinimumSize" type="System.Drawing.Size, System.Drawing">
<value>600, 600</value>
</data>

View file

@ -1003,7 +1003,6 @@ private void InitializeComponent()
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.White;
this.Controls.Add(this.tcSettings);
this.Controls.Add(this.tttvMain);
this.Name = "ApplicationSettingsForm";

View file

@ -82,7 +82,6 @@ private void InitializeComponent()
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.White;
this.Controls.Add(this.btnDuplicate);
this.Controls.Add(this.btnReset);
this.Controls.Add(this.flpHotkeys);

View file

@ -265,7 +265,7 @@ private void InitializeComponent()
// lblMainFormTip
//
resources.ApplyResources(this.lblMainFormTip, "lblMainFormTip");
this.lblMainFormTip.BackColor = System.Drawing.Color.White;
this.lblMainFormTip.BackColor = System.Drawing.SystemColors.Window;
this.lblMainFormTip.ForeColor = System.Drawing.Color.LightGray;
this.lblMainFormTip.Name = "lblMainFormTip";
this.lblMainFormTip.UseMnemonic = false;
@ -280,7 +280,6 @@ private void InitializeComponent()
// lvUploads
//
this.lvUploads.AutoFillColumn = true;
this.lvUploads.BackColor = System.Drawing.Color.White;
this.lvUploads.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.lvUploads.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.chFilename,
@ -333,7 +332,6 @@ private void InitializeComponent()
//
// pbPreview
//
this.pbPreview.BackColor = System.Drawing.Color.White;
resources.ApplyResources(this.pbPreview, "pbPreview");
this.pbPreview.DrawCheckeredBackground = true;
this.pbPreview.EnableRightClickMenu = true;
@ -1816,7 +1814,6 @@ private void InitializeComponent()
this.AllowDrop = true;
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.White;
this.Controls.Add(this.scMain);
this.Controls.Add(this.tsMain);
this.DoubleBuffered = true;

View file

@ -1640,7 +1640,6 @@ private void InitializeComponent()
//
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackColor = System.Drawing.Color.White;
this.Controls.Add(this.tcTaskSettings);
this.Controls.Add(this.tttvMain);
this.Name = "TaskSettingsForm";