Making forms localizable

This commit is contained in:
Jaex 2015-08-31 09:27:56 +03:00
parent 3ce053da36
commit e7980e2daf
9 changed files with 1189 additions and 212 deletions

View file

@ -29,6 +29,7 @@ protected override void Dispose(bool disposing)
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(IRCClientForm));
this.txtMessage = new System.Windows.Forms.TextBox();
this.cmsMessage = new System.Windows.Forms.ContextMenuStrip(this.components);
this.tsmiMessageBold = new System.Windows.Forms.ToolStripMenuItem();
@ -77,12 +78,8 @@ private void InitializeComponent()
//
// txtMessage
//
this.txtMessage.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtMessage.Location = new System.Drawing.Point(248, 604);
resources.ApplyResources(this.txtMessage, "txtMessage");
this.txtMessage.Name = "txtMessage";
this.txtMessage.Size = new System.Drawing.Size(600, 20);
this.txtMessage.TabIndex = 0;
this.txtMessage.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtMessage_KeyDown);
//
// cmsMessage
@ -95,37 +92,30 @@ private void InitializeComponent()
this.tsmiColors});
this.cmsMessage.Name = "cmsMessage";
this.cmsMessage.ShowImageMargin = false;
this.cmsMessage.Size = new System.Drawing.Size(101, 114);
resources.ApplyResources(this.cmsMessage, "cmsMessage");
//
// tsmiMessageBold
//
this.tsmiMessageBold.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
resources.ApplyResources(this.tsmiMessageBold, "tsmiMessageBold");
this.tsmiMessageBold.Name = "tsmiMessageBold";
this.tsmiMessageBold.Size = new System.Drawing.Size(100, 22);
this.tsmiMessageBold.Text = "Bold";
this.tsmiMessageBold.Click += new System.EventHandler(this.tsmiMessageBold_Click);
//
// tsmiMessageItalic
//
this.tsmiMessageItalic.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
resources.ApplyResources(this.tsmiMessageItalic, "tsmiMessageItalic");
this.tsmiMessageItalic.Name = "tsmiMessageItalic";
this.tsmiMessageItalic.Size = new System.Drawing.Size(100, 22);
this.tsmiMessageItalic.Text = "Italic";
this.tsmiMessageItalic.Click += new System.EventHandler(this.tsmiMessageItalic_Click);
//
// tsmiMessageUnderline
//
this.tsmiMessageUnderline.Font = new System.Drawing.Font("Segoe UI", 9F, System.Drawing.FontStyle.Underline, System.Drawing.GraphicsUnit.Point, ((byte)(162)));
resources.ApplyResources(this.tsmiMessageUnderline, "tsmiMessageUnderline");
this.tsmiMessageUnderline.Name = "tsmiMessageUnderline";
this.tsmiMessageUnderline.Size = new System.Drawing.Size(100, 22);
this.tsmiMessageUnderline.Text = "Underline";
this.tsmiMessageUnderline.Click += new System.EventHandler(this.tsmiMessageUnderline_Click);
//
// tsmiMessageNormal
//
this.tsmiMessageNormal.Name = "tsmiMessageNormal";
this.tsmiMessageNormal.Size = new System.Drawing.Size(100, 22);
this.tsmiMessageNormal.Text = "Normal";
resources.ApplyResources(this.tsmiMessageNormal, "tsmiMessageNormal");
this.tsmiMessageNormal.Click += new System.EventHandler(this.tsmiMessageNormal_Click);
//
// tsmiColors
@ -148,16 +138,14 @@ private void InitializeComponent()
this.tsmiColorGrey,
this.tsmiColorLightGrey});
this.tsmiColors.Name = "tsmiColors";
this.tsmiColors.Size = new System.Drawing.Size(100, 22);
this.tsmiColors.Text = "Colors";
resources.ApplyResources(this.tsmiColors, "tsmiColors");
//
// tsmiColorWhite
//
this.tsmiColorWhite.BackColor = System.Drawing.Color.White;
this.tsmiColorWhite.ForeColor = System.Drawing.Color.Black;
this.tsmiColorWhite.Name = "tsmiColorWhite";
this.tsmiColorWhite.Size = new System.Drawing.Size(135, 22);
this.tsmiColorWhite.Text = "White";
resources.ApplyResources(this.tsmiColorWhite, "tsmiColorWhite");
this.tsmiColorWhite.Click += new System.EventHandler(this.tsmiColorWhite_Click);
//
// tsmiColorBlack
@ -165,8 +153,7 @@ private void InitializeComponent()
this.tsmiColorBlack.BackColor = System.Drawing.Color.Black;
this.tsmiColorBlack.ForeColor = System.Drawing.Color.White;
this.tsmiColorBlack.Name = "tsmiColorBlack";
this.tsmiColorBlack.Size = new System.Drawing.Size(135, 22);
this.tsmiColorBlack.Text = "Black";
resources.ApplyResources(this.tsmiColorBlack, "tsmiColorBlack");
this.tsmiColorBlack.Click += new System.EventHandler(this.tsmiColorBlack_Click);
//
// tsmiColorBlue
@ -174,8 +161,7 @@ private void InitializeComponent()
this.tsmiColorBlue.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(127)))));
this.tsmiColorBlue.ForeColor = System.Drawing.Color.White;
this.tsmiColorBlue.Name = "tsmiColorBlue";
this.tsmiColorBlue.Size = new System.Drawing.Size(135, 22);
this.tsmiColorBlue.Text = "Blue";
resources.ApplyResources(this.tsmiColorBlue, "tsmiColorBlue");
this.tsmiColorBlue.Click += new System.EventHandler(this.tsmiColorBlue_Click);
//
// tsmiColorGreen
@ -183,8 +169,7 @@ private void InitializeComponent()
this.tsmiColorGreen.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(147)))), ((int)(((byte)(0)))));
this.tsmiColorGreen.ForeColor = System.Drawing.Color.White;
this.tsmiColorGreen.Name = "tsmiColorGreen";
this.tsmiColorGreen.Size = new System.Drawing.Size(135, 22);
this.tsmiColorGreen.Text = "Green";
resources.ApplyResources(this.tsmiColorGreen, "tsmiColorGreen");
this.tsmiColorGreen.Click += new System.EventHandler(this.tsmiColorGreen_Click);
//
// tsmiColorLightRed
@ -192,8 +177,7 @@ private void InitializeComponent()
this.tsmiColorLightRed.BackColor = System.Drawing.Color.Red;
this.tsmiColorLightRed.ForeColor = System.Drawing.Color.White;
this.tsmiColorLightRed.Name = "tsmiColorLightRed";
this.tsmiColorLightRed.Size = new System.Drawing.Size(135, 22);
this.tsmiColorLightRed.Text = "Light Red";
resources.ApplyResources(this.tsmiColorLightRed, "tsmiColorLightRed");
this.tsmiColorLightRed.Click += new System.EventHandler(this.tsmiColorLightRed_Click);
//
// tsmiColorBrown
@ -201,8 +185,7 @@ private void InitializeComponent()
this.tsmiColorBrown.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(0)))), ((int)(((byte)(0)))));
this.tsmiColorBrown.ForeColor = System.Drawing.Color.White;
this.tsmiColorBrown.Name = "tsmiColorBrown";
this.tsmiColorBrown.Size = new System.Drawing.Size(135, 22);
this.tsmiColorBrown.Text = "Brown";
resources.ApplyResources(this.tsmiColorBrown, "tsmiColorBrown");
this.tsmiColorBrown.Click += new System.EventHandler(this.tsmiColorBrown_Click);
//
// tsmiColorPurple
@ -210,8 +193,7 @@ private void InitializeComponent()
this.tsmiColorPurple.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(156)))), ((int)(((byte)(0)))), ((int)(((byte)(156)))));
this.tsmiColorPurple.ForeColor = System.Drawing.Color.White;
this.tsmiColorPurple.Name = "tsmiColorPurple";
this.tsmiColorPurple.Size = new System.Drawing.Size(135, 22);
this.tsmiColorPurple.Text = "Purple";
resources.ApplyResources(this.tsmiColorPurple, "tsmiColorPurple");
this.tsmiColorPurple.Click += new System.EventHandler(this.tsmiColorPurple_Click);
//
// tsmiColorOrange
@ -219,8 +201,7 @@ private void InitializeComponent()
this.tsmiColorOrange.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(252)))), ((int)(((byte)(127)))), ((int)(((byte)(0)))));
this.tsmiColorOrange.ForeColor = System.Drawing.Color.White;
this.tsmiColorOrange.Name = "tsmiColorOrange";
this.tsmiColorOrange.Size = new System.Drawing.Size(135, 22);
this.tsmiColorOrange.Text = "Orange";
resources.ApplyResources(this.tsmiColorOrange, "tsmiColorOrange");
this.tsmiColorOrange.Click += new System.EventHandler(this.tsmiColorOrange_Click);
//
// tsmiColorYellow
@ -228,8 +209,7 @@ private void InitializeComponent()
this.tsmiColorYellow.BackColor = System.Drawing.Color.Yellow;
this.tsmiColorYellow.ForeColor = System.Drawing.Color.Black;
this.tsmiColorYellow.Name = "tsmiColorYellow";
this.tsmiColorYellow.Size = new System.Drawing.Size(135, 22);
this.tsmiColorYellow.Text = "Yellow";
resources.ApplyResources(this.tsmiColorYellow, "tsmiColorYellow");
this.tsmiColorYellow.Click += new System.EventHandler(this.tsmiColorYellow_Click);
//
// tsmiColorLightGreen
@ -237,8 +217,7 @@ private void InitializeComponent()
this.tsmiColorLightGreen.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(252)))), ((int)(((byte)(0)))));
this.tsmiColorLightGreen.ForeColor = System.Drawing.Color.Black;
this.tsmiColorLightGreen.Name = "tsmiColorLightGreen";
this.tsmiColorLightGreen.Size = new System.Drawing.Size(135, 22);
this.tsmiColorLightGreen.Text = "Light Green";
resources.ApplyResources(this.tsmiColorLightGreen, "tsmiColorLightGreen");
this.tsmiColorLightGreen.Click += new System.EventHandler(this.tsmiColorLightGreen_Click);
//
// tsmiColorCyan
@ -246,8 +225,7 @@ private void InitializeComponent()
this.tsmiColorCyan.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(147)))), ((int)(((byte)(147)))));
this.tsmiColorCyan.ForeColor = System.Drawing.Color.White;
this.tsmiColorCyan.Name = "tsmiColorCyan";
this.tsmiColorCyan.Size = new System.Drawing.Size(135, 22);
this.tsmiColorCyan.Text = "Cyan";
resources.ApplyResources(this.tsmiColorCyan, "tsmiColorCyan");
this.tsmiColorCyan.Click += new System.EventHandler(this.tsmiColorCyan_Click);
//
// tsmiColorLightCyan
@ -255,8 +233,7 @@ private void InitializeComponent()
this.tsmiColorLightCyan.BackColor = System.Drawing.Color.Aqua;
this.tsmiColorLightCyan.ForeColor = System.Drawing.Color.Black;
this.tsmiColorLightCyan.Name = "tsmiColorLightCyan";
this.tsmiColorLightCyan.Size = new System.Drawing.Size(135, 22);
this.tsmiColorLightCyan.Text = "Light Cyan";
resources.ApplyResources(this.tsmiColorLightCyan, "tsmiColorLightCyan");
this.tsmiColorLightCyan.Click += new System.EventHandler(this.tsmiColorLightCyan_Click);
//
// tsmiColorLightBlue
@ -264,8 +241,7 @@ private void InitializeComponent()
this.tsmiColorLightBlue.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(0)))), ((int)(((byte)(252)))));
this.tsmiColorLightBlue.ForeColor = System.Drawing.Color.White;
this.tsmiColorLightBlue.Name = "tsmiColorLightBlue";
this.tsmiColorLightBlue.Size = new System.Drawing.Size(135, 22);
this.tsmiColorLightBlue.Text = "Light Blue";
resources.ApplyResources(this.tsmiColorLightBlue, "tsmiColorLightBlue");
this.tsmiColorLightBlue.Click += new System.EventHandler(this.tsmiColorLightBlue_Click);
//
// tsmiColorPink
@ -273,8 +249,7 @@ private void InitializeComponent()
this.tsmiColorPink.BackColor = System.Drawing.Color.Fuchsia;
this.tsmiColorPink.ForeColor = System.Drawing.Color.White;
this.tsmiColorPink.Name = "tsmiColorPink";
this.tsmiColorPink.Size = new System.Drawing.Size(135, 22);
this.tsmiColorPink.Text = "Pink";
resources.ApplyResources(this.tsmiColorPink, "tsmiColorPink");
this.tsmiColorPink.Click += new System.EventHandler(this.tsmiColorPink_Click);
//
// tsmiColorGrey
@ -282,8 +257,7 @@ private void InitializeComponent()
this.tsmiColorGrey.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(127)))), ((int)(((byte)(127)))), ((int)(((byte)(127)))));
this.tsmiColorGrey.ForeColor = System.Drawing.Color.White;
this.tsmiColorGrey.Name = "tsmiColorGrey";
this.tsmiColorGrey.Size = new System.Drawing.Size(135, 22);
this.tsmiColorGrey.Text = "Grey";
resources.ApplyResources(this.tsmiColorGrey, "tsmiColorGrey");
this.tsmiColorGrey.Click += new System.EventHandler(this.tsmiColorGrey_Click);
//
// tsmiColorLightGrey
@ -291,83 +265,53 @@ private void InitializeComponent()
this.tsmiColorLightGrey.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(210)))), ((int)(((byte)(210)))), ((int)(((byte)(210)))));
this.tsmiColorLightGrey.ForeColor = System.Drawing.Color.Black;
this.tsmiColorLightGrey.Name = "tsmiColorLightGrey";
this.tsmiColorLightGrey.Size = new System.Drawing.Size(135, 22);
this.tsmiColorLightGrey.Text = "Light Grey";
resources.ApplyResources(this.tsmiColorLightGrey, "tsmiColorLightGrey");
this.tsmiColorLightGrey.Click += new System.EventHandler(this.tsmiColorLightGrey_Click);
//
// btnMessageSend
//
this.btnMessageSend.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnMessageSend.Enabled = false;
this.btnMessageSend.Location = new System.Drawing.Point(888, 602);
resources.ApplyResources(this.btnMessageSend, "btnMessageSend");
this.btnMessageSend.Name = "btnMessageSend";
this.btnMessageSend.Size = new System.Drawing.Size(80, 24);
this.btnMessageSend.TabIndex = 2;
this.btnMessageSend.Text = "Send";
this.btnMessageSend.UseVisualStyleBackColor = true;
this.btnMessageSend.Click += new System.EventHandler(this.btnMessageSend_Click);
//
// txtOutput
//
this.txtOutput.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
resources.ApplyResources(this.txtOutput, "txtOutput");
this.txtOutput.BackColor = System.Drawing.Color.White;
this.txtOutput.Location = new System.Drawing.Point(8, 8);
this.txtOutput.Multiline = true;
this.txtOutput.Name = "txtOutput";
this.txtOutput.ReadOnly = true;
this.txtOutput.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.txtOutput.Size = new System.Drawing.Size(960, 584);
this.txtOutput.TabIndex = 2;
this.txtOutput.WordWrap = false;
//
// tcMain
//
this.tcMain.Controls.Add(this.tpMain);
this.tcMain.Controls.Add(this.tpOutput);
this.tcMain.Controls.Add(this.tpMessages);
this.tcMain.Dock = System.Windows.Forms.DockStyle.Fill;
this.tcMain.Location = new System.Drawing.Point(0, 0);
resources.ApplyResources(this.tcMain, "tcMain");
this.tcMain.Name = "tcMain";
this.tcMain.SelectedIndex = 0;
this.tcMain.Size = new System.Drawing.Size(984, 661);
this.tcMain.TabIndex = 0;
//
// tpMain
//
this.tpMain.Controls.Add(this.btnConnect);
this.tpMain.Controls.Add(this.pgSettings);
this.tpMain.Location = new System.Drawing.Point(4, 22);
resources.ApplyResources(this.tpMain, "tpMain");
this.tpMain.Name = "tpMain";
this.tpMain.Padding = new System.Windows.Forms.Padding(3);
this.tpMain.Size = new System.Drawing.Size(976, 635);
this.tpMain.TabIndex = 2;
this.tpMain.Text = "Main";
this.tpMain.UseVisualStyleBackColor = true;
//
// btnConnect
//
this.btnConnect.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.btnConnect.Location = new System.Drawing.Point(8, 600);
resources.ApplyResources(this.btnConnect, "btnConnect");
this.btnConnect.Name = "btnConnect";
this.btnConnect.Size = new System.Drawing.Size(112, 24);
this.btnConnect.TabIndex = 0;
this.btnConnect.Text = "Connect";
this.btnConnect.UseVisualStyleBackColor = true;
this.btnConnect.Click += new System.EventHandler(this.btnConnect_Click);
//
// pgSettings
//
this.pgSettings.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
resources.ApplyResources(this.pgSettings, "pgSettings");
this.pgSettings.CategoryForeColor = System.Drawing.SystemColors.InactiveCaptionText;
this.pgSettings.Location = new System.Drawing.Point(8, 8);
this.pgSettings.Name = "pgSettings";
this.pgSettings.PropertySort = System.Windows.Forms.PropertySort.NoSort;
this.pgSettings.Size = new System.Drawing.Size(960, 584);
this.pgSettings.TabIndex = 1;
this.pgSettings.ToolbarVisible = false;
//
// tpOutput
@ -376,43 +320,25 @@ private void InitializeComponent()
this.tpOutput.Controls.Add(this.lblCommand);
this.tpOutput.Controls.Add(this.btnCommandSend);
this.tpOutput.Controls.Add(this.txtOutput);
this.tpOutput.Location = new System.Drawing.Point(4, 22);
resources.ApplyResources(this.tpOutput, "tpOutput");
this.tpOutput.Name = "tpOutput";
this.tpOutput.Padding = new System.Windows.Forms.Padding(3);
this.tpOutput.Size = new System.Drawing.Size(976, 635);
this.tpOutput.TabIndex = 0;
this.tpOutput.Text = "IRC output";
this.tpOutput.UseVisualStyleBackColor = true;
//
// txtCommand
//
this.txtCommand.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.txtCommand.Location = new System.Drawing.Point(72, 604);
resources.ApplyResources(this.txtCommand, "txtCommand");
this.txtCommand.Name = "txtCommand";
this.txtCommand.Size = new System.Drawing.Size(808, 20);
this.txtCommand.TabIndex = 0;
this.txtCommand.KeyDown += new System.Windows.Forms.KeyEventHandler(this.txtCommand_KeyDown);
//
// lblCommand
//
this.lblCommand.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.lblCommand.AutoSize = true;
this.lblCommand.Location = new System.Drawing.Point(8, 608);
resources.ApplyResources(this.lblCommand, "lblCommand");
this.lblCommand.Name = "lblCommand";
this.lblCommand.Size = new System.Drawing.Size(57, 13);
this.lblCommand.TabIndex = 2;
this.lblCommand.Text = "Command:";
//
// btnCommandSend
//
this.btnCommandSend.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnCommandSend.Enabled = false;
this.btnCommandSend.Location = new System.Drawing.Point(888, 602);
resources.ApplyResources(this.btnCommandSend, "btnCommandSend");
this.btnCommandSend.Name = "btnCommandSend";
this.btnCommandSend.Size = new System.Drawing.Size(80, 24);
this.btnCommandSend.TabIndex = 1;
this.btnCommandSend.Text = "Send";
this.btnCommandSend.UseVisualStyleBackColor = true;
this.btnCommandSend.Click += new System.EventHandler(this.btnCommandSend_Click);
//
@ -425,77 +351,45 @@ private void InitializeComponent()
this.tpMessages.Controls.Add(this.txtChannel);
this.tpMessages.Controls.Add(this.txtMessage);
this.tpMessages.Controls.Add(this.btnMessageSend);
this.tpMessages.Location = new System.Drawing.Point(4, 22);
resources.ApplyResources(this.tpMessages, "tpMessages");
this.tpMessages.Name = "tpMessages";
this.tpMessages.Padding = new System.Windows.Forms.Padding(3);
this.tpMessages.Size = new System.Drawing.Size(976, 635);
this.tpMessages.TabIndex = 1;
this.tpMessages.Text = "Messages";
this.tpMessages.UseVisualStyleBackColor = true;
//
// btnMessagesMenu
//
this.btnMessagesMenu.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnMessagesMenu.Location = new System.Drawing.Point(856, 602);
resources.ApplyResources(this.btnMessagesMenu, "btnMessagesMenu");
this.btnMessagesMenu.Name = "btnMessagesMenu";
this.btnMessagesMenu.Size = new System.Drawing.Size(24, 24);
this.btnMessagesMenu.TabIndex = 4;
this.btnMessagesMenu.Text = "...";
this.btnMessagesMenu.UseVisualStyleBackColor = true;
this.btnMessagesMenu.MouseClick += new System.Windows.Forms.MouseEventHandler(this.btnMessagesMenu_MouseClick);
//
// lblMessage
//
this.lblMessage.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.lblMessage.AutoSize = true;
this.lblMessage.Location = new System.Drawing.Point(192, 608);
resources.ApplyResources(this.lblMessage, "lblMessage");
this.lblMessage.Name = "lblMessage";
this.lblMessage.Size = new System.Drawing.Size(53, 13);
this.lblMessage.TabIndex = 0;
this.lblMessage.Text = "Message:";
//
// lblChannel
//
this.lblChannel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.lblChannel.AutoSize = true;
this.lblChannel.Location = new System.Drawing.Point(8, 608);
resources.ApplyResources(this.lblChannel, "lblChannel");
this.lblChannel.Name = "lblChannel";
this.lblChannel.Size = new System.Drawing.Size(76, 13);
this.lblChannel.TabIndex = 2;
this.lblChannel.Text = "Channel/Nick:";
//
// txtMessages
//
this.txtMessages.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
resources.ApplyResources(this.txtMessages, "txtMessages");
this.txtMessages.BackColor = System.Drawing.Color.White;
this.txtMessages.Location = new System.Drawing.Point(8, 8);
this.txtMessages.Multiline = true;
this.txtMessages.Name = "txtMessages";
this.txtMessages.ReadOnly = true;
this.txtMessages.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.txtMessages.Size = new System.Drawing.Size(960, 584);
this.txtMessages.TabIndex = 3;
this.txtMessages.WordWrap = false;
//
// txtChannel
//
this.txtChannel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
this.txtChannel.Location = new System.Drawing.Point(88, 604);
resources.ApplyResources(this.txtChannel, "txtChannel");
this.txtChannel.Name = "txtChannel";
this.txtChannel.Size = new System.Drawing.Size(96, 20);
this.txtChannel.TabIndex = 1;
//
// IRCClientForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(984, 661);
this.Controls.Add(this.tcMain);
this.Name = "IRCClientForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "ShareX - IRC client";
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.MainForm_FormClosed);
this.cmsMessage.ResumeLayout(false);
this.tcMain.ResumeLayout(false);

View file

@ -117,10 +117,775 @@
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="txtMessage.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Bottom, Left, Right</value>
</data>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="txtMessage.Location" type="System.Drawing.Point, System.Drawing">
<value>248, 604</value>
</data>
<data name="txtMessage.Size" type="System.Drawing.Size, System.Drawing">
<value>600, 20</value>
</data>
<assembly alias="mscorlib" name="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="txtMessage.TabIndex" type="System.Int32, mscorlib">
<value>0</value>
</data>
<data name="&gt;&gt;txtMessage.Name" xml:space="preserve">
<value>txtMessage</value>
</data>
<data name="&gt;&gt;txtMessage.Type" xml:space="preserve">
<value>System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;txtMessage.Parent" xml:space="preserve">
<value>tpMessages</value>
</data>
<data name="&gt;&gt;txtMessage.ZOrder" xml:space="preserve">
<value>5</value>
</data>
<metadata name="cmsMessage.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
<data name="tsmiMessageBold.Font" type="System.Drawing.Font, System.Drawing">
<value>Segoe UI, 9pt, style=Bold</value>
</data>
<data name="tsmiMessageBold.Size" type="System.Drawing.Size, System.Drawing">
<value>100, 22</value>
</data>
<data name="tsmiMessageBold.Text" xml:space="preserve">
<value>Bold</value>
</data>
<data name="tsmiMessageItalic.Font" type="System.Drawing.Font, System.Drawing">
<value>Segoe UI, 9pt, style=Italic</value>
</data>
<data name="tsmiMessageItalic.Size" type="System.Drawing.Size, System.Drawing">
<value>100, 22</value>
</data>
<data name="tsmiMessageItalic.Text" xml:space="preserve">
<value>Italic</value>
</data>
<data name="tsmiMessageUnderline.Font" type="System.Drawing.Font, System.Drawing">
<value>Segoe UI, 9pt, style=Underline</value>
</data>
<data name="tsmiMessageUnderline.Size" type="System.Drawing.Size, System.Drawing">
<value>100, 22</value>
</data>
<data name="tsmiMessageUnderline.Text" xml:space="preserve">
<value>Underline</value>
</data>
<data name="tsmiMessageNormal.Size" type="System.Drawing.Size, System.Drawing">
<value>100, 22</value>
</data>
<data name="tsmiMessageNormal.Text" xml:space="preserve">
<value>Normal</value>
</data>
<data name="tsmiColorWhite.Size" type="System.Drawing.Size, System.Drawing">
<value>135, 22</value>
</data>
<data name="tsmiColorWhite.Text" xml:space="preserve">
<value>White</value>
</data>
<data name="tsmiColorBlack.Size" type="System.Drawing.Size, System.Drawing">
<value>135, 22</value>
</data>
<data name="tsmiColorBlack.Text" xml:space="preserve">
<value>Black</value>
</data>
<data name="tsmiColorBlue.Size" type="System.Drawing.Size, System.Drawing">
<value>135, 22</value>
</data>
<data name="tsmiColorBlue.Text" xml:space="preserve">
<value>Blue</value>
</data>
<data name="tsmiColorGreen.Size" type="System.Drawing.Size, System.Drawing">
<value>135, 22</value>
</data>
<data name="tsmiColorGreen.Text" xml:space="preserve">
<value>Green</value>
</data>
<data name="tsmiColorLightRed.Size" type="System.Drawing.Size, System.Drawing">
<value>135, 22</value>
</data>
<data name="tsmiColorLightRed.Text" xml:space="preserve">
<value>Light Red</value>
</data>
<data name="tsmiColorBrown.Size" type="System.Drawing.Size, System.Drawing">
<value>135, 22</value>
</data>
<data name="tsmiColorBrown.Text" xml:space="preserve">
<value>Brown</value>
</data>
<data name="tsmiColorPurple.Size" type="System.Drawing.Size, System.Drawing">
<value>135, 22</value>
</data>
<data name="tsmiColorPurple.Text" xml:space="preserve">
<value>Purple</value>
</data>
<data name="tsmiColorOrange.Size" type="System.Drawing.Size, System.Drawing">
<value>135, 22</value>
</data>
<data name="tsmiColorOrange.Text" xml:space="preserve">
<value>Orange</value>
</data>
<data name="tsmiColorYellow.Size" type="System.Drawing.Size, System.Drawing">
<value>135, 22</value>
</data>
<data name="tsmiColorYellow.Text" xml:space="preserve">
<value>Yellow</value>
</data>
<data name="tsmiColorLightGreen.Size" type="System.Drawing.Size, System.Drawing">
<value>135, 22</value>
</data>
<data name="tsmiColorLightGreen.Text" xml:space="preserve">
<value>Light Green</value>
</data>
<data name="tsmiColorCyan.Size" type="System.Drawing.Size, System.Drawing">
<value>135, 22</value>
</data>
<data name="tsmiColorCyan.Text" xml:space="preserve">
<value>Cyan</value>
</data>
<data name="tsmiColorLightCyan.Size" type="System.Drawing.Size, System.Drawing">
<value>135, 22</value>
</data>
<data name="tsmiColorLightCyan.Text" xml:space="preserve">
<value>Light Cyan</value>
</data>
<data name="tsmiColorLightBlue.Size" type="System.Drawing.Size, System.Drawing">
<value>135, 22</value>
</data>
<data name="tsmiColorLightBlue.Text" xml:space="preserve">
<value>Light Blue</value>
</data>
<data name="tsmiColorPink.Size" type="System.Drawing.Size, System.Drawing">
<value>135, 22</value>
</data>
<data name="tsmiColorPink.Text" xml:space="preserve">
<value>Pink</value>
</data>
<data name="tsmiColorGrey.Size" type="System.Drawing.Size, System.Drawing">
<value>135, 22</value>
</data>
<data name="tsmiColorGrey.Text" xml:space="preserve">
<value>Grey</value>
</data>
<data name="tsmiColorLightGrey.Size" type="System.Drawing.Size, System.Drawing">
<value>135, 22</value>
</data>
<data name="tsmiColorLightGrey.Text" xml:space="preserve">
<value>Light Grey</value>
</data>
<data name="tsmiColors.Size" type="System.Drawing.Size, System.Drawing">
<value>100, 22</value>
</data>
<data name="tsmiColors.Text" xml:space="preserve">
<value>Colors</value>
</data>
<data name="cmsMessage.Size" type="System.Drawing.Size, System.Drawing">
<value>101, 114</value>
</data>
<data name="&gt;&gt;cmsMessage.Name" xml:space="preserve">
<value>cmsMessage</value>
</data>
<data name="&gt;&gt;cmsMessage.Type" xml:space="preserve">
<value>System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="btnMessageSend.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Bottom, Right</value>
</data>
<data name="btnMessageSend.Enabled" type="System.Boolean, mscorlib">
<value>False</value>
</data>
<data name="btnMessageSend.Location" type="System.Drawing.Point, System.Drawing">
<value>888, 602</value>
</data>
<data name="btnMessageSend.Size" type="System.Drawing.Size, System.Drawing">
<value>80, 24</value>
</data>
<data name="btnMessageSend.TabIndex" type="System.Int32, mscorlib">
<value>2</value>
</data>
<data name="btnMessageSend.Text" xml:space="preserve">
<value>Send</value>
</data>
<data name="&gt;&gt;btnMessageSend.Name" xml:space="preserve">
<value>btnMessageSend</value>
</data>
<data name="&gt;&gt;btnMessageSend.Type" xml:space="preserve">
<value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;btnMessageSend.Parent" xml:space="preserve">
<value>tpMessages</value>
</data>
<data name="&gt;&gt;btnMessageSend.ZOrder" xml:space="preserve">
<value>6</value>
</data>
<data name="txtOutput.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Top, Bottom, Left, Right</value>
</data>
<data name="txtOutput.Location" type="System.Drawing.Point, System.Drawing">
<value>8, 8</value>
</data>
<data name="txtOutput.Multiline" type="System.Boolean, mscorlib">
<value>True</value>
</data>
<data name="txtOutput.ScrollBars" type="System.Windows.Forms.ScrollBars, System.Windows.Forms">
<value>Both</value>
</data>
<data name="txtOutput.Size" type="System.Drawing.Size, System.Drawing">
<value>960, 584</value>
</data>
<data name="txtOutput.TabIndex" type="System.Int32, mscorlib">
<value>2</value>
</data>
<data name="txtOutput.WordWrap" type="System.Boolean, mscorlib">
<value>False</value>
</data>
<data name="&gt;&gt;txtOutput.Name" xml:space="preserve">
<value>txtOutput</value>
</data>
<data name="&gt;&gt;txtOutput.Type" xml:space="preserve">
<value>System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;txtOutput.Parent" xml:space="preserve">
<value>tpOutput</value>
</data>
<data name="&gt;&gt;txtOutput.ZOrder" xml:space="preserve">
<value>3</value>
</data>
<data name="btnConnect.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Bottom, Left</value>
</data>
<data name="btnConnect.Location" type="System.Drawing.Point, System.Drawing">
<value>8, 600</value>
</data>
<data name="btnConnect.Size" type="System.Drawing.Size, System.Drawing">
<value>112, 24</value>
</data>
<data name="btnConnect.TabIndex" type="System.Int32, mscorlib">
<value>0</value>
</data>
<data name="btnConnect.Text" xml:space="preserve">
<value>Connect</value>
</data>
<data name="&gt;&gt;btnConnect.Name" xml:space="preserve">
<value>btnConnect</value>
</data>
<data name="&gt;&gt;btnConnect.Type" xml:space="preserve">
<value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;btnConnect.Parent" xml:space="preserve">
<value>tpMain</value>
</data>
<data name="&gt;&gt;btnConnect.ZOrder" xml:space="preserve">
<value>0</value>
</data>
<data name="pgSettings.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Top, Bottom, Left, Right</value>
</data>
<data name="pgSettings.Location" type="System.Drawing.Point, System.Drawing">
<value>8, 8</value>
</data>
<data name="pgSettings.Size" type="System.Drawing.Size, System.Drawing">
<value>960, 584</value>
</data>
<data name="pgSettings.TabIndex" type="System.Int32, mscorlib">
<value>1</value>
</data>
<data name="&gt;&gt;pgSettings.Name" xml:space="preserve">
<value>pgSettings</value>
</data>
<data name="&gt;&gt;pgSettings.Type" xml:space="preserve">
<value>System.Windows.Forms.PropertyGrid, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;pgSettings.Parent" xml:space="preserve">
<value>tpMain</value>
</data>
<data name="&gt;&gt;pgSettings.ZOrder" xml:space="preserve">
<value>1</value>
</data>
<data name="tpMain.Location" type="System.Drawing.Point, System.Drawing">
<value>4, 22</value>
</data>
<data name="tpMain.Padding" type="System.Windows.Forms.Padding, System.Windows.Forms">
<value>3, 3, 3, 3</value>
</data>
<data name="tpMain.Size" type="System.Drawing.Size, System.Drawing">
<value>976, 635</value>
</data>
<data name="tpMain.TabIndex" type="System.Int32, mscorlib">
<value>2</value>
</data>
<data name="tpMain.Text" xml:space="preserve">
<value>Main</value>
</data>
<data name="&gt;&gt;tpMain.Name" xml:space="preserve">
<value>tpMain</value>
</data>
<data name="&gt;&gt;tpMain.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;tpMain.Parent" xml:space="preserve">
<value>tcMain</value>
</data>
<data name="&gt;&gt;tpMain.ZOrder" xml:space="preserve">
<value>0</value>
</data>
<data name="txtCommand.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Bottom, Left, Right</value>
</data>
<data name="txtCommand.Location" type="System.Drawing.Point, System.Drawing">
<value>72, 604</value>
</data>
<data name="txtCommand.Size" type="System.Drawing.Size, System.Drawing">
<value>808, 20</value>
</data>
<data name="txtCommand.TabIndex" type="System.Int32, mscorlib">
<value>0</value>
</data>
<data name="&gt;&gt;txtCommand.Name" xml:space="preserve">
<value>txtCommand</value>
</data>
<data name="&gt;&gt;txtCommand.Type" xml:space="preserve">
<value>System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;txtCommand.Parent" xml:space="preserve">
<value>tpOutput</value>
</data>
<data name="&gt;&gt;txtCommand.ZOrder" xml:space="preserve">
<value>0</value>
</data>
<data name="lblCommand.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Bottom, Left</value>
</data>
<data name="lblCommand.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
</data>
<data name="lblCommand.Location" type="System.Drawing.Point, System.Drawing">
<value>8, 608</value>
</data>
<data name="lblCommand.Size" type="System.Drawing.Size, System.Drawing">
<value>57, 13</value>
</data>
<data name="lblCommand.TabIndex" type="System.Int32, mscorlib">
<value>2</value>
</data>
<data name="lblCommand.Text" xml:space="preserve">
<value>Command:</value>
</data>
<data name="&gt;&gt;lblCommand.Name" xml:space="preserve">
<value>lblCommand</value>
</data>
<data name="&gt;&gt;lblCommand.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;lblCommand.Parent" xml:space="preserve">
<value>tpOutput</value>
</data>
<data name="&gt;&gt;lblCommand.ZOrder" xml:space="preserve">
<value>1</value>
</data>
<data name="btnCommandSend.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Bottom, Right</value>
</data>
<data name="btnCommandSend.Enabled" type="System.Boolean, mscorlib">
<value>False</value>
</data>
<data name="btnCommandSend.Location" type="System.Drawing.Point, System.Drawing">
<value>888, 602</value>
</data>
<data name="btnCommandSend.Size" type="System.Drawing.Size, System.Drawing">
<value>80, 24</value>
</data>
<data name="btnCommandSend.TabIndex" type="System.Int32, mscorlib">
<value>1</value>
</data>
<data name="btnCommandSend.Text" xml:space="preserve">
<value>Send</value>
</data>
<data name="&gt;&gt;btnCommandSend.Name" xml:space="preserve">
<value>btnCommandSend</value>
</data>
<data name="&gt;&gt;btnCommandSend.Type" xml:space="preserve">
<value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;btnCommandSend.Parent" xml:space="preserve">
<value>tpOutput</value>
</data>
<data name="&gt;&gt;btnCommandSend.ZOrder" xml:space="preserve">
<value>2</value>
</data>
<data name="tpOutput.Location" type="System.Drawing.Point, System.Drawing">
<value>4, 22</value>
</data>
<data name="tpOutput.Padding" type="System.Windows.Forms.Padding, System.Windows.Forms">
<value>3, 3, 3, 3</value>
</data>
<data name="tpOutput.Size" type="System.Drawing.Size, System.Drawing">
<value>976, 635</value>
</data>
<data name="tpOutput.TabIndex" type="System.Int32, mscorlib">
<value>0</value>
</data>
<data name="tpOutput.Text" xml:space="preserve">
<value>IRC output</value>
</data>
<data name="&gt;&gt;tpOutput.Name" xml:space="preserve">
<value>tpOutput</value>
</data>
<data name="&gt;&gt;tpOutput.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;tpOutput.Parent" xml:space="preserve">
<value>tcMain</value>
</data>
<data name="&gt;&gt;tpOutput.ZOrder" xml:space="preserve">
<value>1</value>
</data>
<data name="btnMessagesMenu.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Bottom, Right</value>
</data>
<data name="btnMessagesMenu.Location" type="System.Drawing.Point, System.Drawing">
<value>856, 602</value>
</data>
<data name="btnMessagesMenu.Size" type="System.Drawing.Size, System.Drawing">
<value>24, 24</value>
</data>
<data name="btnMessagesMenu.TabIndex" type="System.Int32, mscorlib">
<value>4</value>
</data>
<data name="btnMessagesMenu.Text" xml:space="preserve">
<value>...</value>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;btnMessagesMenu.Name" xml:space="preserve">
<value>btnMessagesMenu</value>
</data>
<data name="&gt;&gt;btnMessagesMenu.Type" xml:space="preserve">
<value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;btnMessagesMenu.Parent" xml:space="preserve">
<value>tpMessages</value>
</data>
<data name="&gt;&gt;btnMessagesMenu.ZOrder" xml:space="preserve">
<value>0</value>
</data>
<data name="lblMessage.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Bottom, Left</value>
</data>
<data name="lblMessage.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
</data>
<data name="lblMessage.Location" type="System.Drawing.Point, System.Drawing">
<value>192, 608</value>
</data>
<data name="lblMessage.Size" type="System.Drawing.Size, System.Drawing">
<value>53, 13</value>
</data>
<data name="lblMessage.TabIndex" type="System.Int32, mscorlib">
<value>0</value>
</data>
<data name="lblMessage.Text" xml:space="preserve">
<value>Message:</value>
</data>
<data name="&gt;&gt;lblMessage.Name" xml:space="preserve">
<value>lblMessage</value>
</data>
<data name="&gt;&gt;lblMessage.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;lblMessage.Parent" xml:space="preserve">
<value>tpMessages</value>
</data>
<data name="&gt;&gt;lblMessage.ZOrder" xml:space="preserve">
<value>1</value>
</data>
<data name="lblChannel.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Bottom, Left</value>
</data>
<data name="lblChannel.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
</data>
<data name="lblChannel.Location" type="System.Drawing.Point, System.Drawing">
<value>8, 608</value>
</data>
<data name="lblChannel.Size" type="System.Drawing.Size, System.Drawing">
<value>76, 13</value>
</data>
<data name="lblChannel.TabIndex" type="System.Int32, mscorlib">
<value>2</value>
</data>
<data name="lblChannel.Text" xml:space="preserve">
<value>Channel/Nick:</value>
</data>
<data name="&gt;&gt;lblChannel.Name" xml:space="preserve">
<value>lblChannel</value>
</data>
<data name="&gt;&gt;lblChannel.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;lblChannel.Parent" xml:space="preserve">
<value>tpMessages</value>
</data>
<data name="&gt;&gt;lblChannel.ZOrder" xml:space="preserve">
<value>2</value>
</data>
<data name="txtMessages.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Top, Bottom, Left, Right</value>
</data>
<data name="txtMessages.Location" type="System.Drawing.Point, System.Drawing">
<value>8, 8</value>
</data>
<data name="txtMessages.Multiline" type="System.Boolean, mscorlib">
<value>True</value>
</data>
<data name="txtMessages.ScrollBars" type="System.Windows.Forms.ScrollBars, System.Windows.Forms">
<value>Both</value>
</data>
<data name="txtMessages.Size" type="System.Drawing.Size, System.Drawing">
<value>960, 584</value>
</data>
<data name="txtMessages.TabIndex" type="System.Int32, mscorlib">
<value>3</value>
</data>
<data name="txtMessages.WordWrap" type="System.Boolean, mscorlib">
<value>False</value>
</data>
<data name="&gt;&gt;txtMessages.Name" xml:space="preserve">
<value>txtMessages</value>
</data>
<data name="&gt;&gt;txtMessages.Type" xml:space="preserve">
<value>System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;txtMessages.Parent" xml:space="preserve">
<value>tpMessages</value>
</data>
<data name="&gt;&gt;txtMessages.ZOrder" xml:space="preserve">
<value>3</value>
</data>
<data name="txtChannel.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Bottom, Left</value>
</data>
<data name="txtChannel.Location" type="System.Drawing.Point, System.Drawing">
<value>88, 604</value>
</data>
<data name="txtChannel.Size" type="System.Drawing.Size, System.Drawing">
<value>96, 20</value>
</data>
<data name="txtChannel.TabIndex" type="System.Int32, mscorlib">
<value>1</value>
</data>
<data name="&gt;&gt;txtChannel.Name" xml:space="preserve">
<value>txtChannel</value>
</data>
<data name="&gt;&gt;txtChannel.Type" xml:space="preserve">
<value>System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;txtChannel.Parent" xml:space="preserve">
<value>tpMessages</value>
</data>
<data name="&gt;&gt;txtChannel.ZOrder" xml:space="preserve">
<value>4</value>
</data>
<data name="tpMessages.Location" type="System.Drawing.Point, System.Drawing">
<value>4, 22</value>
</data>
<data name="tpMessages.Padding" type="System.Windows.Forms.Padding, System.Windows.Forms">
<value>3, 3, 3, 3</value>
</data>
<data name="tpMessages.Size" type="System.Drawing.Size, System.Drawing">
<value>976, 635</value>
</data>
<data name="tpMessages.TabIndex" type="System.Int32, mscorlib">
<value>1</value>
</data>
<data name="tpMessages.Text" xml:space="preserve">
<value>Messages</value>
</data>
<data name="&gt;&gt;tpMessages.Name" xml:space="preserve">
<value>tpMessages</value>
</data>
<data name="&gt;&gt;tpMessages.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;tpMessages.Parent" xml:space="preserve">
<value>tcMain</value>
</data>
<data name="&gt;&gt;tpMessages.ZOrder" xml:space="preserve">
<value>2</value>
</data>
<data name="tcMain.Dock" type="System.Windows.Forms.DockStyle, System.Windows.Forms">
<value>Fill</value>
</data>
<data name="tcMain.Location" type="System.Drawing.Point, System.Drawing">
<value>0, 0</value>
</data>
<data name="tcMain.Size" type="System.Drawing.Size, System.Drawing">
<value>984, 661</value>
</data>
<data name="tcMain.TabIndex" type="System.Int32, mscorlib">
<value>0</value>
</data>
<data name="&gt;&gt;tcMain.Name" xml:space="preserve">
<value>tcMain</value>
</data>
<data name="&gt;&gt;tcMain.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;tcMain.Parent" xml:space="preserve">
<value>$this</value>
</data>
<data name="&gt;&gt;tcMain.ZOrder" xml:space="preserve">
<value>1</value>
</data>
<metadata name="$this.Localizable" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<metadata name="$this.TrayHeight" type="System.Int32, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>62</value>
</metadata>
<data name="$this.AutoScaleDimensions" type="System.Drawing.SizeF, System.Drawing">
<value>6, 13</value>
</data>
<data name="$this.ClientSize" type="System.Drawing.Size, System.Drawing">
<value>984, 661</value>
</data>
<data name="$this.StartPosition" type="System.Windows.Forms.FormStartPosition, System.Windows.Forms">
<value>CenterScreen</value>
</data>
<data name="$this.Text" xml:space="preserve">
<value>ShareX - IRC client</value>
</data>
<data name="&gt;&gt;tsmiMessageBold.Name" xml:space="preserve">
<value>tsmiMessageBold</value>
</data>
<data name="&gt;&gt;tsmiMessageBold.Type" xml:space="preserve">
<value>System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;tsmiMessageItalic.Name" xml:space="preserve">
<value>tsmiMessageItalic</value>
</data>
<data name="&gt;&gt;tsmiMessageItalic.Type" xml:space="preserve">
<value>System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;tsmiMessageUnderline.Name" xml:space="preserve">
<value>tsmiMessageUnderline</value>
</data>
<data name="&gt;&gt;tsmiMessageUnderline.Type" xml:space="preserve">
<value>System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;tsmiMessageNormal.Name" xml:space="preserve">
<value>tsmiMessageNormal</value>
</data>
<data name="&gt;&gt;tsmiMessageNormal.Type" xml:space="preserve">
<value>System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;tsmiColors.Name" xml:space="preserve">
<value>tsmiColors</value>
</data>
<data name="&gt;&gt;tsmiColors.Type" xml:space="preserve">
<value>System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;tsmiColorWhite.Name" xml:space="preserve">
<value>tsmiColorWhite</value>
</data>
<data name="&gt;&gt;tsmiColorWhite.Type" xml:space="preserve">
<value>System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;tsmiColorBlack.Name" xml:space="preserve">
<value>tsmiColorBlack</value>
</data>
<data name="&gt;&gt;tsmiColorBlack.Type" xml:space="preserve">
<value>System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;tsmiColorBlue.Name" xml:space="preserve">
<value>tsmiColorBlue</value>
</data>
<data name="&gt;&gt;tsmiColorBlue.Type" xml:space="preserve">
<value>System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;tsmiColorGreen.Name" xml:space="preserve">
<value>tsmiColorGreen</value>
</data>
<data name="&gt;&gt;tsmiColorGreen.Type" xml:space="preserve">
<value>System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;tsmiColorLightRed.Name" xml:space="preserve">
<value>tsmiColorLightRed</value>
</data>
<data name="&gt;&gt;tsmiColorLightRed.Type" xml:space="preserve">
<value>System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;tsmiColorBrown.Name" xml:space="preserve">
<value>tsmiColorBrown</value>
</data>
<data name="&gt;&gt;tsmiColorBrown.Type" xml:space="preserve">
<value>System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;tsmiColorPurple.Name" xml:space="preserve">
<value>tsmiColorPurple</value>
</data>
<data name="&gt;&gt;tsmiColorPurple.Type" xml:space="preserve">
<value>System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;tsmiColorOrange.Name" xml:space="preserve">
<value>tsmiColorOrange</value>
</data>
<data name="&gt;&gt;tsmiColorOrange.Type" xml:space="preserve">
<value>System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;tsmiColorYellow.Name" xml:space="preserve">
<value>tsmiColorYellow</value>
</data>
<data name="&gt;&gt;tsmiColorYellow.Type" xml:space="preserve">
<value>System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;tsmiColorLightGreen.Name" xml:space="preserve">
<value>tsmiColorLightGreen</value>
</data>
<data name="&gt;&gt;tsmiColorLightGreen.Type" xml:space="preserve">
<value>System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;tsmiColorCyan.Name" xml:space="preserve">
<value>tsmiColorCyan</value>
</data>
<data name="&gt;&gt;tsmiColorCyan.Type" xml:space="preserve">
<value>System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;tsmiColorLightCyan.Name" xml:space="preserve">
<value>tsmiColorLightCyan</value>
</data>
<data name="&gt;&gt;tsmiColorLightCyan.Type" xml:space="preserve">
<value>System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;tsmiColorLightBlue.Name" xml:space="preserve">
<value>tsmiColorLightBlue</value>
</data>
<data name="&gt;&gt;tsmiColorLightBlue.Type" xml:space="preserve">
<value>System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;tsmiColorPink.Name" xml:space="preserve">
<value>tsmiColorPink</value>
</data>
<data name="&gt;&gt;tsmiColorPink.Type" xml:space="preserve">
<value>System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;tsmiColorGrey.Name" xml:space="preserve">
<value>tsmiColorGrey</value>
</data>
<data name="&gt;&gt;tsmiColorGrey.Type" xml:space="preserve">
<value>System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;tsmiColorLightGrey.Name" xml:space="preserve">
<value>tsmiColorLightGrey</value>
</data>
<data name="&gt;&gt;tsmiColorLightGrey.Type" xml:space="preserve">
<value>System.Windows.Forms.ToolStripMenuItem, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;$this.Name" xml:space="preserve">
<value>IRCClientForm</value>
</data>
<data name="&gt;&gt;$this.Type" xml:space="preserve">
<value>System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
</root>

View file

@ -28,6 +28,7 @@ protected override void Dispose(bool disposing)
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(VideoThumbnailerForm));
this.txtMediaPath = new System.Windows.Forms.TextBox();
this.btnStart = new System.Windows.Forms.Button();
this.pgOptions = new System.Windows.Forms.PropertyGrid();
@ -37,54 +38,40 @@ private void InitializeComponent()
//
// txtMediaPath
//
this.txtMediaPath.Location = new System.Drawing.Point(8, 8);
resources.ApplyResources(this.txtMediaPath, "txtMediaPath");
this.txtMediaPath.Name = "txtMediaPath";
this.txtMediaPath.Size = new System.Drawing.Size(496, 20);
this.txtMediaPath.TabIndex = 0;
//
// btnStart
//
this.btnStart.Location = new System.Drawing.Point(544, 6);
resources.ApplyResources(this.btnStart, "btnStart");
this.btnStart.Name = "btnStart";
this.btnStart.Size = new System.Drawing.Size(168, 24);
this.btnStart.TabIndex = 1;
this.btnStart.Text = "Take screenshots";
this.btnStart.UseVisualStyleBackColor = true;
this.btnStart.Click += new System.EventHandler(this.btnStart_Click);
//
// pgOptions
//
this.pgOptions.CategoryForeColor = System.Drawing.SystemColors.InactiveCaptionText;
this.pgOptions.Location = new System.Drawing.Point(8, 40);
resources.ApplyResources(this.pgOptions, "pgOptions");
this.pgOptions.Name = "pgOptions";
this.pgOptions.PropertySort = System.Windows.Forms.PropertySort.Categorized;
this.pgOptions.Size = new System.Drawing.Size(704, 416);
this.pgOptions.TabIndex = 2;
this.pgOptions.ToolbarVisible = false;
//
// btnBrowse
//
this.btnBrowse.Location = new System.Drawing.Point(512, 6);
resources.ApplyResources(this.btnBrowse, "btnBrowse");
this.btnBrowse.Name = "btnBrowse";
this.btnBrowse.Size = new System.Drawing.Size(27, 24);
this.btnBrowse.TabIndex = 3;
this.btnBrowse.Text = "...";
this.btnBrowse.UseVisualStyleBackColor = true;
this.btnBrowse.Click += new System.EventHandler(this.btnBrowse_Click);
//
// pbProgress
//
this.pbProgress.Location = new System.Drawing.Point(544, 6);
resources.ApplyResources(this.pbProgress, "pbProgress");
this.pbProgress.Name = "pbProgress";
this.pbProgress.Size = new System.Drawing.Size(168, 24);
this.pbProgress.TabIndex = 4;
this.pbProgress.Visible = false;
//
// VideoThumbnailerForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(721, 464);
this.Controls.Add(this.btnBrowse);
this.Controls.Add(this.pgOptions);
this.Controls.Add(this.txtMediaPath);
@ -92,8 +79,6 @@ private void InitializeComponent()
this.Controls.Add(this.pbProgress);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Name = "VideoThumbnailerForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "ShareX - Video thumbnailer";
this.ResumeLayout(false);
this.PerformLayout();

View file

@ -117,4 +117,142 @@
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="txtMediaPath.Location" type="System.Drawing.Point, System.Drawing">
<value>8, 8</value>
</data>
<data name="txtMediaPath.Size" type="System.Drawing.Size, System.Drawing">
<value>496, 20</value>
</data>
<assembly alias="mscorlib" name="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="txtMediaPath.TabIndex" type="System.Int32, mscorlib">
<value>0</value>
</data>
<data name="&gt;&gt;txtMediaPath.Name" xml:space="preserve">
<value>txtMediaPath</value>
</data>
<data name="&gt;&gt;txtMediaPath.Type" xml:space="preserve">
<value>System.Windows.Forms.TextBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;txtMediaPath.Parent" xml:space="preserve">
<value>$this</value>
</data>
<data name="&gt;&gt;txtMediaPath.ZOrder" xml:space="preserve">
<value>2</value>
</data>
<data name="btnStart.Location" type="System.Drawing.Point, System.Drawing">
<value>544, 6</value>
</data>
<data name="btnStart.Size" type="System.Drawing.Size, System.Drawing">
<value>168, 24</value>
</data>
<data name="btnStart.TabIndex" type="System.Int32, mscorlib">
<value>1</value>
</data>
<data name="btnStart.Text" xml:space="preserve">
<value>Take screenshots</value>
</data>
<data name="&gt;&gt;btnStart.Name" xml:space="preserve">
<value>btnStart</value>
</data>
<data name="&gt;&gt;btnStart.Type" xml:space="preserve">
<value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;btnStart.Parent" xml:space="preserve">
<value>$this</value>
</data>
<data name="&gt;&gt;btnStart.ZOrder" xml:space="preserve">
<value>3</value>
</data>
<data name="pgOptions.Location" type="System.Drawing.Point, System.Drawing">
<value>8, 40</value>
</data>
<data name="pgOptions.Size" type="System.Drawing.Size, System.Drawing">
<value>704, 416</value>
</data>
<data name="pgOptions.TabIndex" type="System.Int32, mscorlib">
<value>2</value>
</data>
<data name="&gt;&gt;pgOptions.Name" xml:space="preserve">
<value>pgOptions</value>
</data>
<data name="&gt;&gt;pgOptions.Type" xml:space="preserve">
<value>System.Windows.Forms.PropertyGrid, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;pgOptions.Parent" xml:space="preserve">
<value>$this</value>
</data>
<data name="&gt;&gt;pgOptions.ZOrder" xml:space="preserve">
<value>1</value>
</data>
<data name="btnBrowse.Location" type="System.Drawing.Point, System.Drawing">
<value>512, 6</value>
</data>
<data name="btnBrowse.Size" type="System.Drawing.Size, System.Drawing">
<value>27, 24</value>
</data>
<data name="btnBrowse.TabIndex" type="System.Int32, mscorlib">
<value>3</value>
</data>
<data name="btnBrowse.Text" xml:space="preserve">
<value>...</value>
<comment>@Invariant</comment></data>
<data name="&gt;&gt;btnBrowse.Name" xml:space="preserve">
<value>btnBrowse</value>
</data>
<data name="&gt;&gt;btnBrowse.Type" xml:space="preserve">
<value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;btnBrowse.Parent" xml:space="preserve">
<value>$this</value>
</data>
<data name="&gt;&gt;btnBrowse.ZOrder" xml:space="preserve">
<value>0</value>
</data>
<data name="pbProgress.Location" type="System.Drawing.Point, System.Drawing">
<value>544, 6</value>
</data>
<data name="pbProgress.Size" type="System.Drawing.Size, System.Drawing">
<value>168, 24</value>
</data>
<data name="pbProgress.TabIndex" type="System.Int32, mscorlib">
<value>4</value>
</data>
<data name="pbProgress.Visible" type="System.Boolean, mscorlib">
<value>False</value>
</data>
<data name="&gt;&gt;pbProgress.Name" xml:space="preserve">
<value>pbProgress</value>
</data>
<data name="&gt;&gt;pbProgress.Type" xml:space="preserve">
<value>System.Windows.Forms.ProgressBar, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;pbProgress.Parent" xml:space="preserve">
<value>$this</value>
</data>
<data name="&gt;&gt;pbProgress.ZOrder" xml:space="preserve">
<value>4</value>
</data>
<metadata name="$this.Localizable" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<data name="$this.AutoScaleDimensions" type="System.Drawing.SizeF, System.Drawing">
<value>6, 13</value>
</data>
<data name="$this.ClientSize" type="System.Drawing.Size, System.Drawing">
<value>721, 464</value>
</data>
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="$this.StartPosition" type="System.Windows.Forms.FormStartPosition, System.Windows.Forms">
<value>CenterScreen</value>
</data>
<data name="$this.Text" xml:space="preserve">
<value>ShareX - Video thumbnailer</value>
</data>
<data name="&gt;&gt;$this.Name" xml:space="preserve">
<value>VideoThumbnailerForm</value>
</data>
<data name="&gt;&gt;$this.Type" xml:space="preserve">
<value>System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
</root>

View file

@ -28,6 +28,7 @@ protected override void Dispose(bool disposing)
/// </summary>
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ChromeForm));
this.btnRegister = new System.Windows.Forms.Button();
this.btnUnregister = new System.Windows.Forms.Button();
this.lbl1 = new System.Windows.Forms.Label();
@ -39,78 +40,46 @@ private void InitializeComponent()
// btnRegister
//
this.btnRegister.Image = global::ShareX.Properties.Resources.tick_button;
this.btnRegister.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.btnRegister.Location = new System.Drawing.Point(8, 32);
resources.ApplyResources(this.btnRegister, "btnRegister");
this.btnRegister.Name = "btnRegister";
this.btnRegister.Padding = new System.Windows.Forms.Padding(5, 0, 0, 0);
this.btnRegister.Size = new System.Drawing.Size(192, 32);
this.btnRegister.TabIndex = 0;
this.btnRegister.Text = "Enable Chrome support";
this.btnRegister.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.btnRegister.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
this.btnRegister.UseVisualStyleBackColor = true;
this.btnRegister.Click += new System.EventHandler(this.btnRegister_Click);
//
// btnUnregister
//
this.btnUnregister.Image = global::ShareX.Properties.Resources.cross_button;
this.btnUnregister.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.btnUnregister.Location = new System.Drawing.Point(208, 32);
resources.ApplyResources(this.btnUnregister, "btnUnregister");
this.btnUnregister.Name = "btnUnregister";
this.btnUnregister.Padding = new System.Windows.Forms.Padding(5, 0, 0, 0);
this.btnUnregister.Size = new System.Drawing.Size(192, 32);
this.btnUnregister.TabIndex = 1;
this.btnUnregister.Text = "Disable Chrome support";
this.btnUnregister.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.btnUnregister.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
this.btnUnregister.UseVisualStyleBackColor = true;
this.btnUnregister.Click += new System.EventHandler(this.btnUnregister_Click);
//
// lbl1
//
this.lbl1.Location = new System.Drawing.Point(8, 8);
resources.ApplyResources(this.lbl1, "lbl1");
this.lbl1.Name = "lbl1";
this.lbl1.Size = new System.Drawing.Size(392, 24);
this.lbl1.TabIndex = 2;
this.lbl1.Text = "1. Enable Chrome support otherwise extension can\'t interact with ShareX.";
//
// lbl2
//
this.lbl2.Location = new System.Drawing.Point(8, 80);
resources.ApplyResources(this.lbl2, "lbl2");
this.lbl2.Name = "lbl2";
this.lbl2.Size = new System.Drawing.Size(392, 24);
this.lbl2.TabIndex = 3;
this.lbl2.Text = "2. Install ShareX Chrome extension from Chrome web store.";
//
// btnInstallExtension
//
this.btnInstallExtension.Image = global::ShareX.Properties.Resources.arrow_270;
this.btnInstallExtension.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.btnInstallExtension.Location = new System.Drawing.Point(8, 104);
resources.ApplyResources(this.btnInstallExtension, "btnInstallExtension");
this.btnInstallExtension.Name = "btnInstallExtension";
this.btnInstallExtension.Padding = new System.Windows.Forms.Padding(5, 0, 0, 0);
this.btnInstallExtension.Size = new System.Drawing.Size(392, 32);
this.btnInstallExtension.TabIndex = 4;
this.btnInstallExtension.Text = "Install ShareX Chrome extension";
this.btnInstallExtension.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.btnInstallExtension.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
this.btnInstallExtension.UseVisualStyleBackColor = true;
this.btnInstallExtension.Click += new System.EventHandler(this.btnInstallExtension_Click);
//
// lbl3
//
this.lbl3.Location = new System.Drawing.Point(8, 152);
resources.ApplyResources(this.lbl3, "lbl3");
this.lbl3.Name = "lbl3";
this.lbl3.Size = new System.Drawing.Size(392, 40);
this.lbl3.TabIndex = 5;
this.lbl3.Text = "3. In Chrome right click on image or selected text and you will see \"Upload with " +
"ShareX\" button in context menu.";
//
// ChromeForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
resources.ApplyResources(this, "$this");
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(409, 195);
this.Controls.Add(this.lbl3);
this.Controls.Add(this.btnInstallExtension);
this.Controls.Add(this.lbl2);
@ -120,8 +89,6 @@ private void InitializeComponent()
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.Name = "ChromeForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "ShareX - Chrome extension support";
this.ResumeLayout(false);
}

View file

@ -70,7 +70,7 @@ private void btnRegister_Click(object sender, EventArgs e)
RegistryHelpers.RegisterChromeSupport(Program.ChromeHostManifestPath);
MessageBox.Show("Chrome support enabled.", "ShareX", MessageBoxButtons.OK, MessageBoxIcon.Information);
MessageBox.Show(Resources.ChromeForm_btnRegister_Click_Chrome_support_enabled_, "ShareX", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
catch (Exception ex)
{
@ -89,7 +89,7 @@ private void btnUnregister_Click(object sender, EventArgs e)
RegistryHelpers.UnregisterChromeSupport();
MessageBox.Show("Chrome support disabled.", "ShareX", MessageBoxButtons.OK, MessageBoxIcon.Information);
MessageBox.Show(Resources.ChromeForm_btnUnregister_Click_Chrome_support_disabled_, "ShareX", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
catch (Exception ex)
{

View file

@ -117,4 +117,208 @@
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="btnRegister.ImageAlign" type="System.Drawing.ContentAlignment, System.Drawing">
<value>MiddleLeft</value>
</data>
<data name="btnRegister.Location" type="System.Drawing.Point, System.Drawing">
<value>8, 32</value>
</data>
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="btnRegister.Padding" type="System.Windows.Forms.Padding, System.Windows.Forms">
<value>5, 0, 0, 0</value>
</data>
<data name="btnRegister.Size" type="System.Drawing.Size, System.Drawing">
<value>192, 32</value>
</data>
<assembly alias="mscorlib" name="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="btnRegister.TabIndex" type="System.Int32, mscorlib">
<value>0</value>
</data>
<data name="btnRegister.Text" xml:space="preserve">
<value>Enable Chrome support</value>
</data>
<data name="btnRegister.TextAlign" type="System.Drawing.ContentAlignment, System.Drawing">
<value>MiddleLeft</value>
</data>
<data name="btnRegister.TextImageRelation" type="System.Windows.Forms.TextImageRelation, System.Windows.Forms">
<value>ImageBeforeText</value>
</data>
<data name="&gt;&gt;btnRegister.Name" xml:space="preserve">
<value>btnRegister</value>
</data>
<data name="&gt;&gt;btnRegister.Type" xml:space="preserve">
<value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;btnRegister.Parent" xml:space="preserve">
<value>$this</value>
</data>
<data name="&gt;&gt;btnRegister.ZOrder" xml:space="preserve">
<value>5</value>
</data>
<data name="btnUnregister.ImageAlign" type="System.Drawing.ContentAlignment, System.Drawing">
<value>MiddleLeft</value>
</data>
<data name="btnUnregister.Location" type="System.Drawing.Point, System.Drawing">
<value>208, 32</value>
</data>
<data name="btnUnregister.Padding" type="System.Windows.Forms.Padding, System.Windows.Forms">
<value>5, 0, 0, 0</value>
</data>
<data name="btnUnregister.Size" type="System.Drawing.Size, System.Drawing">
<value>192, 32</value>
</data>
<data name="btnUnregister.TabIndex" type="System.Int32, mscorlib">
<value>1</value>
</data>
<data name="btnUnregister.Text" xml:space="preserve">
<value>Disable Chrome support</value>
</data>
<data name="btnUnregister.TextAlign" type="System.Drawing.ContentAlignment, System.Drawing">
<value>MiddleLeft</value>
</data>
<data name="btnUnregister.TextImageRelation" type="System.Windows.Forms.TextImageRelation, System.Windows.Forms">
<value>ImageBeforeText</value>
</data>
<data name="&gt;&gt;btnUnregister.Name" xml:space="preserve">
<value>btnUnregister</value>
</data>
<data name="&gt;&gt;btnUnregister.Type" xml:space="preserve">
<value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;btnUnregister.Parent" xml:space="preserve">
<value>$this</value>
</data>
<data name="&gt;&gt;btnUnregister.ZOrder" xml:space="preserve">
<value>4</value>
</data>
<data name="lbl1.Location" type="System.Drawing.Point, System.Drawing">
<value>8, 8</value>
</data>
<data name="lbl1.Size" type="System.Drawing.Size, System.Drawing">
<value>392, 24</value>
</data>
<data name="lbl1.TabIndex" type="System.Int32, mscorlib">
<value>2</value>
</data>
<data name="lbl1.Text" xml:space="preserve">
<value>1. Enable Chrome support otherwise extension can't interact with ShareX.</value>
</data>
<data name="&gt;&gt;lbl1.Name" xml:space="preserve">
<value>lbl1</value>
</data>
<data name="&gt;&gt;lbl1.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;lbl1.Parent" xml:space="preserve">
<value>$this</value>
</data>
<data name="&gt;&gt;lbl1.ZOrder" xml:space="preserve">
<value>3</value>
</data>
<data name="lbl2.Location" type="System.Drawing.Point, System.Drawing">
<value>8, 80</value>
</data>
<data name="lbl2.Size" type="System.Drawing.Size, System.Drawing">
<value>392, 24</value>
</data>
<data name="lbl2.TabIndex" type="System.Int32, mscorlib">
<value>3</value>
</data>
<data name="lbl2.Text" xml:space="preserve">
<value>2. Install ShareX Chrome extension from Chrome web store.</value>
</data>
<data name="&gt;&gt;lbl2.Name" xml:space="preserve">
<value>lbl2</value>
</data>
<data name="&gt;&gt;lbl2.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;lbl2.Parent" xml:space="preserve">
<value>$this</value>
</data>
<data name="&gt;&gt;lbl2.ZOrder" xml:space="preserve">
<value>2</value>
</data>
<data name="btnInstallExtension.ImageAlign" type="System.Drawing.ContentAlignment, System.Drawing">
<value>MiddleLeft</value>
</data>
<data name="btnInstallExtension.Location" type="System.Drawing.Point, System.Drawing">
<value>8, 104</value>
</data>
<data name="btnInstallExtension.Padding" type="System.Windows.Forms.Padding, System.Windows.Forms">
<value>5, 0, 0, 0</value>
</data>
<data name="btnInstallExtension.Size" type="System.Drawing.Size, System.Drawing">
<value>392, 32</value>
</data>
<data name="btnInstallExtension.TabIndex" type="System.Int32, mscorlib">
<value>4</value>
</data>
<data name="btnInstallExtension.Text" xml:space="preserve">
<value>Install ShareX Chrome extension</value>
</data>
<data name="btnInstallExtension.TextAlign" type="System.Drawing.ContentAlignment, System.Drawing">
<value>MiddleLeft</value>
</data>
<data name="btnInstallExtension.TextImageRelation" type="System.Windows.Forms.TextImageRelation, System.Windows.Forms">
<value>ImageBeforeText</value>
</data>
<data name="&gt;&gt;btnInstallExtension.Name" xml:space="preserve">
<value>btnInstallExtension</value>
</data>
<data name="&gt;&gt;btnInstallExtension.Type" xml:space="preserve">
<value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;btnInstallExtension.Parent" xml:space="preserve">
<value>$this</value>
</data>
<data name="&gt;&gt;btnInstallExtension.ZOrder" xml:space="preserve">
<value>1</value>
</data>
<data name="lbl3.Location" type="System.Drawing.Point, System.Drawing">
<value>8, 152</value>
</data>
<data name="lbl3.Size" type="System.Drawing.Size, System.Drawing">
<value>392, 40</value>
</data>
<data name="lbl3.TabIndex" type="System.Int32, mscorlib">
<value>5</value>
</data>
<data name="lbl3.Text" xml:space="preserve">
<value>3. In Chrome right click on image or selected text and you will see "Upload with ShareX" button in context menu.</value>
</data>
<data name="&gt;&gt;lbl3.Name" xml:space="preserve">
<value>lbl3</value>
</data>
<data name="&gt;&gt;lbl3.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;lbl3.Parent" xml:space="preserve">
<value>$this</value>
</data>
<data name="&gt;&gt;lbl3.ZOrder" xml:space="preserve">
<value>0</value>
</data>
<metadata name="$this.Localizable" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</metadata>
<data name="$this.AutoScaleDimensions" type="System.Drawing.SizeF, System.Drawing">
<value>6, 13</value>
</data>
<data name="$this.ClientSize" type="System.Drawing.Size, System.Drawing">
<value>409, 195</value>
</data>
<data name="$this.StartPosition" type="System.Windows.Forms.FormStartPosition, System.Windows.Forms">
<value>CenterScreen</value>
</data>
<data name="$this.Text" xml:space="preserve">
<value>ShareX - Chrome extension support</value>
</data>
<data name="&gt;&gt;$this.Name" xml:space="preserve">
<value>ChromeForm</value>
</data>
<data name="&gt;&gt;$this.Type" xml:space="preserve">
<value>System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
</root>

View file

@ -454,6 +454,24 @@ public class Resources {
}
}
/// <summary>
/// Looks up a localized string similar to Chrome support enabled..
/// </summary>
public static string ChromeForm_btnRegister_Click_Chrome_support_enabled_ {
get {
return ResourceManager.GetString("ChromeForm_btnRegister_Click_Chrome_support_enabled_", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Chrome support disabled..
/// </summary>
public static string ChromeForm_btnUnregister_Click_Chrome_support_disabled_ {
get {
return ResourceManager.GetString("ChromeForm_btnUnregister_Click_Chrome_support_disabled_", resourceCulture);
}
}
/// <summary>
/// Looks up a localized resource of type System.Drawing.Bitmap.
/// </summary>

View file

@ -784,4 +784,10 @@ Would you like to restart ShareX?</value>
<data name="arrow_270" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\arrow-270.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
</data>
<data name="ChromeForm_btnRegister_Click_Chrome_support_enabled_" xml:space="preserve">
<value>Chrome support enabled.</value>
</data>
<data name="ChromeForm_btnUnregister_Click_Chrome_support_disabled_" xml:space="preserve">
<value>Chrome support disabled.</value>
</data>
</root>