TextDrawingInputBox localizable

This commit is contained in:
Jaex 2016-05-20 20:56:04 +03:00
parent 6cf94d9cf8
commit fec6e8429a
2 changed files with 494 additions and 88 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(TextDrawingInputBox));
this.txtInput = new System.Windows.Forms.TextBox();
this.btnTextColor = new ShareX.HelpersLib.ColorButton();
this.flpProperties = new System.Windows.Forms.FlowLayoutPanel();
@ -58,34 +59,22 @@ private void InitializeComponent()
//
// txtInput
//
this.txtInput.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.txtInput, "txtInput");
this.txtInput.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.txtInput.Location = new System.Drawing.Point(8, 40);
this.txtInput.Multiline = true;
this.txtInput.Name = "txtInput";
this.txtInput.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
this.txtInput.Size = new System.Drawing.Size(518, 281);
this.txtInput.TabIndex = 0;
this.txtInput.TextChanged += new System.EventHandler(this.txtInput_TextChanged);
//
// btnTextColor
//
this.btnTextColor.Anchor = System.Windows.Forms.AnchorStyles.Left;
resources.ApplyResources(this.btnTextColor, "btnTextColor");
this.btnTextColor.Color = System.Drawing.Color.Empty;
this.btnTextColor.Location = new System.Drawing.Point(316, 3);
this.btnTextColor.Name = "btnTextColor";
this.btnTextColor.Size = new System.Drawing.Size(24, 24);
this.btnTextColor.TabIndex = 1;
this.btnTextColor.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
this.btnTextColor.UseVisualStyleBackColor = true;
this.btnTextColor.ColorChanged += new ShareX.HelpersLib.ColorButton.ColorChangedEventHandler(this.btnTextColor_ColorChanged);
//
// flpProperties
//
this.flpProperties.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
resources.ApplyResources(this.flpProperties, "flpProperties");
this.flpProperties.Controls.Add(this.lblFont);
this.flpProperties.Controls.Add(this.cbFonts);
this.flpProperties.Controls.Add(this.lblTextSize);
@ -96,58 +85,35 @@ private void InitializeComponent()
this.flpProperties.Controls.Add(this.cbUnderline);
this.flpProperties.Controls.Add(this.btnAlignmentHorizontal);
this.flpProperties.Controls.Add(this.btnAlignmentVertical);
this.flpProperties.Location = new System.Drawing.Point(8, 5);
this.flpProperties.Name = "flpProperties";
this.flpProperties.Size = new System.Drawing.Size(518, 32);
this.flpProperties.TabIndex = 2;
this.flpProperties.WrapContents = false;
//
// lblFont
//
this.lblFont.Anchor = System.Windows.Forms.AnchorStyles.Left;
this.lblFont.AutoSize = true;
this.lblFont.Location = new System.Drawing.Point(0, 8);
this.lblFont.Margin = new System.Windows.Forms.Padding(0);
resources.ApplyResources(this.lblFont, "lblFont");
this.lblFont.Name = "lblFont";
this.lblFont.Size = new System.Drawing.Size(31, 13);
this.lblFont.TabIndex = 7;
this.lblFont.Text = "Font:";
//
// cbFonts
//
this.cbFonts.Anchor = System.Windows.Forms.AnchorStyles.Left;
resources.ApplyResources(this.cbFonts, "cbFonts");
this.cbFonts.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cbFonts.FormattingEnabled = true;
this.cbFonts.Location = new System.Drawing.Point(34, 4);
this.cbFonts.Name = "cbFonts";
this.cbFonts.Size = new System.Drawing.Size(184, 21);
this.cbFonts.TabIndex = 8;
this.cbFonts.SelectedIndexChanged += new System.EventHandler(this.cbFonts_SelectedIndexChanged);
//
// lblTextSize
//
this.lblTextSize.Anchor = System.Windows.Forms.AnchorStyles.Left;
this.lblTextSize.AutoSize = true;
this.lblTextSize.Location = new System.Drawing.Point(224, 8);
this.lblTextSize.Margin = new System.Windows.Forms.Padding(3, 0, 0, 0);
resources.ApplyResources(this.lblTextSize, "lblTextSize");
this.lblTextSize.Name = "lblTextSize";
this.lblTextSize.Size = new System.Drawing.Size(30, 13);
this.lblTextSize.TabIndex = 2;
this.lblTextSize.Text = "Size:";
//
// nudTextSize
//
this.nudTextSize.Anchor = System.Windows.Forms.AnchorStyles.Left;
this.nudTextSize.Location = new System.Drawing.Point(257, 5);
resources.ApplyResources(this.nudTextSize, "nudTextSize");
this.nudTextSize.Minimum = new decimal(new int[] {
5,
0,
0,
0});
this.nudTextSize.Name = "nudTextSize";
this.nudTextSize.Size = new System.Drawing.Size(53, 20);
this.nudTextSize.TabIndex = 3;
this.nudTextSize.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
this.nudTextSize.Value = new decimal(new int[] {
10,
0,
@ -157,70 +123,48 @@ private void InitializeComponent()
//
// cbBold
//
this.cbBold.Anchor = System.Windows.Forms.AnchorStyles.Left;
this.cbBold.Appearance = System.Windows.Forms.Appearance.Button;
resources.ApplyResources(this.cbBold, "cbBold");
this.cbBold.Image = global::ShareX.ScreenCaptureLib.Properties.Resources.edit_bold;
this.cbBold.Location = new System.Drawing.Point(346, 3);
this.cbBold.Name = "cbBold";
this.cbBold.Size = new System.Drawing.Size(24, 24);
this.cbBold.TabIndex = 4;
this.cbBold.UseVisualStyleBackColor = true;
this.cbBold.CheckedChanged += new System.EventHandler(this.cbBold_CheckedChanged);
//
// cbItalic
//
this.cbItalic.Anchor = System.Windows.Forms.AnchorStyles.Left;
this.cbItalic.Appearance = System.Windows.Forms.Appearance.Button;
resources.ApplyResources(this.cbItalic, "cbItalic");
this.cbItalic.Image = global::ShareX.ScreenCaptureLib.Properties.Resources.edit_italic;
this.cbItalic.Location = new System.Drawing.Point(376, 3);
this.cbItalic.Name = "cbItalic";
this.cbItalic.Size = new System.Drawing.Size(24, 24);
this.cbItalic.TabIndex = 5;
this.cbItalic.UseVisualStyleBackColor = true;
this.cbItalic.CheckedChanged += new System.EventHandler(this.cbItalic_CheckedChanged);
//
// cbUnderline
//
this.cbUnderline.Anchor = System.Windows.Forms.AnchorStyles.Left;
this.cbUnderline.Appearance = System.Windows.Forms.Appearance.Button;
resources.ApplyResources(this.cbUnderline, "cbUnderline");
this.cbUnderline.Image = global::ShareX.ScreenCaptureLib.Properties.Resources.edit_underline;
this.cbUnderline.Location = new System.Drawing.Point(406, 3);
this.cbUnderline.Name = "cbUnderline";
this.cbUnderline.Size = new System.Drawing.Size(24, 24);
this.cbUnderline.TabIndex = 6;
this.cbUnderline.UseVisualStyleBackColor = true;
this.cbUnderline.CheckedChanged += new System.EventHandler(this.cbUnderline_CheckedChanged);
//
// btnAlignmentHorizontal
//
this.btnAlignmentHorizontal.Anchor = System.Windows.Forms.AnchorStyles.Left;
resources.ApplyResources(this.btnAlignmentHorizontal, "btnAlignmentHorizontal");
this.btnAlignmentHorizontal.Image = global::ShareX.ScreenCaptureLib.Properties.Resources.edit_alignment_center;
this.btnAlignmentHorizontal.Location = new System.Drawing.Point(436, 3);
this.btnAlignmentHorizontal.Name = "btnAlignmentHorizontal";
this.btnAlignmentHorizontal.Size = new System.Drawing.Size(24, 24);
this.btnAlignmentHorizontal.TabIndex = 9;
this.btnAlignmentHorizontal.UseVisualStyleBackColor = true;
this.btnAlignmentHorizontal.Click += new System.EventHandler(this.btnAlignmentHorizontal_Click);
//
// btnAlignmentVertical
//
this.btnAlignmentVertical.Anchor = System.Windows.Forms.AnchorStyles.Left;
resources.ApplyResources(this.btnAlignmentVertical, "btnAlignmentVertical");
this.btnAlignmentVertical.Image = global::ShareX.ScreenCaptureLib.Properties.Resources.edit_vertical_alignment_middle;
this.btnAlignmentVertical.Location = new System.Drawing.Point(466, 3);
this.btnAlignmentVertical.Name = "btnAlignmentVertical";
this.btnAlignmentVertical.Size = new System.Drawing.Size(24, 24);
this.btnAlignmentVertical.TabIndex = 10;
this.btnAlignmentVertical.UseVisualStyleBackColor = true;
this.btnAlignmentVertical.Click += new System.EventHandler(this.btnAlignmentVertical_Click);
//
// btnClose
//
this.btnClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnClose.Location = new System.Drawing.Point(422, 327);
resources.ApplyResources(this.btnClose, "btnClose");
this.btnClose.Name = "btnClose";
this.btnClose.Size = new System.Drawing.Size(104, 26);
this.btnClose.TabIndex = 3;
this.btnClose.Text = "Close";
this.btnClose.UseVisualStyleBackColor = true;
this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
//
@ -231,30 +175,27 @@ private void InitializeComponent()
this.tsmiAlignmentCenter,
this.tsmiAlignmentRight});
this.cmsAlignmentHorizontal.Name = "cmsAlignmentHorizontal";
this.cmsAlignmentHorizontal.Size = new System.Drawing.Size(110, 70);
resources.ApplyResources(this.cmsAlignmentHorizontal, "cmsAlignmentHorizontal");
//
// tsmiAlignmentLeft
//
this.tsmiAlignmentLeft.Image = global::ShareX.ScreenCaptureLib.Properties.Resources.edit_alignment;
this.tsmiAlignmentLeft.Name = "tsmiAlignmentLeft";
this.tsmiAlignmentLeft.Size = new System.Drawing.Size(109, 22);
this.tsmiAlignmentLeft.Text = "Left";
resources.ApplyResources(this.tsmiAlignmentLeft, "tsmiAlignmentLeft");
this.tsmiAlignmentLeft.Click += new System.EventHandler(this.tsmiAlignmentLeft_Click);
//
// tsmiAlignmentCenter
//
this.tsmiAlignmentCenter.Image = global::ShareX.ScreenCaptureLib.Properties.Resources.edit_alignment_center;
this.tsmiAlignmentCenter.Name = "tsmiAlignmentCenter";
this.tsmiAlignmentCenter.Size = new System.Drawing.Size(109, 22);
this.tsmiAlignmentCenter.Text = "Center";
resources.ApplyResources(this.tsmiAlignmentCenter, "tsmiAlignmentCenter");
this.tsmiAlignmentCenter.Click += new System.EventHandler(this.tsmiAlignmentCenter_Click);
//
// tsmiAlignmentRight
//
this.tsmiAlignmentRight.Image = global::ShareX.ScreenCaptureLib.Properties.Resources.edit_alignment_right;
this.tsmiAlignmentRight.Name = "tsmiAlignmentRight";
this.tsmiAlignmentRight.Size = new System.Drawing.Size(109, 22);
this.tsmiAlignmentRight.Text = "Right";
resources.ApplyResources(this.tsmiAlignmentRight, "tsmiAlignmentRight");
this.tsmiAlignmentRight.Click += new System.EventHandler(this.tsmiAlignmentRight_Click);
//
// cmsAlignmentVertical
@ -264,37 +205,33 @@ private void InitializeComponent()
this.tsmiAlignmentMiddle,
this.tsmiAlignmentBottom});
this.cmsAlignmentVertical.Name = "cmsAlignmentVertical";
this.cmsAlignmentVertical.Size = new System.Drawing.Size(115, 70);
resources.ApplyResources(this.cmsAlignmentVertical, "cmsAlignmentVertical");
//
// tsmiAlignmentTop
//
this.tsmiAlignmentTop.Image = global::ShareX.ScreenCaptureLib.Properties.Resources.edit_vertical_alignment_top;
this.tsmiAlignmentTop.Name = "tsmiAlignmentTop";
this.tsmiAlignmentTop.Size = new System.Drawing.Size(114, 22);
this.tsmiAlignmentTop.Text = "Top";
resources.ApplyResources(this.tsmiAlignmentTop, "tsmiAlignmentTop");
this.tsmiAlignmentTop.Click += new System.EventHandler(this.tsmiAlignmentTop_Click);
//
// tsmiAlignmentMiddle
//
this.tsmiAlignmentMiddle.Image = global::ShareX.ScreenCaptureLib.Properties.Resources.edit_vertical_alignment_middle;
this.tsmiAlignmentMiddle.Name = "tsmiAlignmentMiddle";
this.tsmiAlignmentMiddle.Size = new System.Drawing.Size(114, 22);
this.tsmiAlignmentMiddle.Text = "Middle";
resources.ApplyResources(this.tsmiAlignmentMiddle, "tsmiAlignmentMiddle");
this.tsmiAlignmentMiddle.Click += new System.EventHandler(this.tsmiAlignmentMiddle_Click);
//
// tsmiAlignmentBottom
//
this.tsmiAlignmentBottom.Image = global::ShareX.ScreenCaptureLib.Properties.Resources.edit_vertical_alignment;
this.tsmiAlignmentBottom.Name = "tsmiAlignmentBottom";
this.tsmiAlignmentBottom.Size = new System.Drawing.Size(114, 22);
this.tsmiAlignmentBottom.Text = "Bottom";
resources.ApplyResources(this.tsmiAlignmentBottom, "tsmiAlignmentBottom");
this.tsmiAlignmentBottom.Click += new System.EventHandler(this.tsmiAlignmentBottom_Click);
//
// TextDrawingInputBox
//
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(534, 361);
this.Controls.Add(this.btnClose);
this.Controls.Add(this.flpProperties);
this.Controls.Add(this.txtInput);
@ -302,8 +239,6 @@ private void InitializeComponent()
this.MinimizeBox = false;
this.Name = "TextDrawingInputBox";
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.InputText = "ShareX - Text input";
this.TopMost = true;
this.flpProperties.ResumeLayout(false);
this.flpProperties.PerformLayout();

View file

@ -117,10 +117,481 @@
<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="txtInput.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Top, Bottom, Left, Right</value>
</data>
<assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
<data name="txtInput.Location" type="System.Drawing.Point, System.Drawing">
<value>8, 40</value>
</data>
<assembly alias="mscorlib" name="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="txtInput.Multiline" type="System.Boolean, mscorlib">
<value>True</value>
</data>
<data name="txtInput.ScrollBars" type="System.Windows.Forms.ScrollBars, System.Windows.Forms">
<value>Vertical</value>
</data>
<data name="txtInput.Size" type="System.Drawing.Size, System.Drawing">
<value>518, 281</value>
</data>
<data name="txtInput.TabIndex" type="System.Int32, mscorlib">
<value>0</value>
</data>
<data name="&gt;&gt;txtInput.Name" xml:space="preserve">
<value>txtInput</value>
</data>
<data name="&gt;&gt;txtInput.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;txtInput.Parent" xml:space="preserve">
<value>$this</value>
</data>
<data name="&gt;&gt;txtInput.ZOrder" xml:space="preserve">
<value>4</value>
</data>
<data name="btnTextColor.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Left</value>
</data>
<data name="btnTextColor.Location" type="System.Drawing.Point, System.Drawing">
<value>290, 3</value>
</data>
<data name="btnTextColor.Size" type="System.Drawing.Size, System.Drawing">
<value>24, 24</value>
</data>
<data name="btnTextColor.TabIndex" type="System.Int32, mscorlib">
<value>1</value>
</data>
<data name="btnTextColor.TextAlign" type="System.Drawing.ContentAlignment, System.Drawing">
<value>MiddleLeft</value>
</data>
<data name="&gt;&gt;btnTextColor.Name" xml:space="preserve">
<value>btnTextColor</value>
</data>
<data name="&gt;&gt;btnTextColor.Type" xml:space="preserve">
<value>ShareX.HelpersLib.ColorButton, ShareX.HelpersLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null</value>
</data>
<data name="&gt;&gt;btnTextColor.Parent" xml:space="preserve">
<value>flpProperties</value>
</data>
<data name="&gt;&gt;btnTextColor.ZOrder" xml:space="preserve">
<value>4</value>
</data>
<data name="flpProperties.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Top, Left, Right</value>
</data>
<data name="lblFont.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Left</value>
</data>
<data name="lblFont.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
</data>
<data name="lblFont.Location" type="System.Drawing.Point, System.Drawing">
<value>0, 8</value>
</data>
<data name="lblFont.Margin" type="System.Windows.Forms.Padding, System.Windows.Forms">
<value>0, 0, 0, 0</value>
</data>
<data name="lblFont.Size" type="System.Drawing.Size, System.Drawing">
<value>31, 13</value>
</data>
<data name="lblFont.TabIndex" type="System.Int32, mscorlib">
<value>7</value>
</data>
<data name="lblFont.Text" xml:space="preserve">
<value>Font:</value>
</data>
<data name="&gt;&gt;lblFont.Name" xml:space="preserve">
<value>lblFont</value>
</data>
<data name="&gt;&gt;lblFont.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;lblFont.Parent" xml:space="preserve">
<value>flpProperties</value>
</data>
<data name="&gt;&gt;lblFont.ZOrder" xml:space="preserve">
<value>0</value>
</data>
<data name="cbFonts.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Left</value>
</data>
<data name="cbFonts.Location" type="System.Drawing.Point, System.Drawing">
<value>34, 4</value>
</data>
<data name="cbFonts.Size" type="System.Drawing.Size, System.Drawing">
<value>158, 21</value>
</data>
<data name="cbFonts.TabIndex" type="System.Int32, mscorlib">
<value>8</value>
</data>
<data name="&gt;&gt;cbFonts.Name" xml:space="preserve">
<value>cbFonts</value>
</data>
<data name="&gt;&gt;cbFonts.Type" xml:space="preserve">
<value>System.Windows.Forms.ComboBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;cbFonts.Parent" xml:space="preserve">
<value>flpProperties</value>
</data>
<data name="&gt;&gt;cbFonts.ZOrder" xml:space="preserve">
<value>1</value>
</data>
<data name="lblTextSize.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Left</value>
</data>
<data name="lblTextSize.AutoSize" type="System.Boolean, mscorlib">
<value>True</value>
</data>
<data name="lblTextSize.Location" type="System.Drawing.Point, System.Drawing">
<value>198, 8</value>
</data>
<data name="lblTextSize.Margin" type="System.Windows.Forms.Padding, System.Windows.Forms">
<value>3, 0, 0, 0</value>
</data>
<data name="lblTextSize.Size" type="System.Drawing.Size, System.Drawing">
<value>30, 13</value>
</data>
<data name="lblTextSize.TabIndex" type="System.Int32, mscorlib">
<value>2</value>
</data>
<data name="lblTextSize.Text" xml:space="preserve">
<value>Size:</value>
</data>
<data name="&gt;&gt;lblTextSize.Name" xml:space="preserve">
<value>lblTextSize</value>
</data>
<data name="&gt;&gt;lblTextSize.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;lblTextSize.Parent" xml:space="preserve">
<value>flpProperties</value>
</data>
<data name="&gt;&gt;lblTextSize.ZOrder" xml:space="preserve">
<value>2</value>
</data>
<data name="nudTextSize.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Left</value>
</data>
<data name="nudTextSize.Location" type="System.Drawing.Point, System.Drawing">
<value>231, 5</value>
</data>
<data name="nudTextSize.Size" type="System.Drawing.Size, System.Drawing">
<value>53, 20</value>
</data>
<data name="nudTextSize.TabIndex" type="System.Int32, mscorlib">
<value>3</value>
</data>
<data name="nudTextSize.TextAlign" type="System.Windows.Forms.HorizontalAlignment, System.Windows.Forms">
<value>Center</value>
</data>
<data name="&gt;&gt;nudTextSize.Name" xml:space="preserve">
<value>nudTextSize</value>
</data>
<data name="&gt;&gt;nudTextSize.Type" xml:space="preserve">
<value>System.Windows.Forms.NumericUpDown, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;nudTextSize.Parent" xml:space="preserve">
<value>flpProperties</value>
</data>
<data name="&gt;&gt;nudTextSize.ZOrder" xml:space="preserve">
<value>3</value>
</data>
<data name="cbBold.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Left</value>
</data>
<data name="cbBold.Appearance" type="System.Windows.Forms.Appearance, System.Windows.Forms">
<value>Button</value>
</data>
<data name="cbBold.Location" type="System.Drawing.Point, System.Drawing">
<value>320, 3</value>
</data>
<data name="cbBold.Size" type="System.Drawing.Size, System.Drawing">
<value>24, 24</value>
</data>
<data name="cbBold.TabIndex" type="System.Int32, mscorlib">
<value>4</value>
</data>
<data name="&gt;&gt;cbBold.Name" xml:space="preserve">
<value>cbBold</value>
</data>
<data name="&gt;&gt;cbBold.Type" xml:space="preserve">
<value>System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;cbBold.Parent" xml:space="preserve">
<value>flpProperties</value>
</data>
<data name="&gt;&gt;cbBold.ZOrder" xml:space="preserve">
<value>5</value>
</data>
<data name="cbItalic.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Left</value>
</data>
<data name="cbItalic.Appearance" type="System.Windows.Forms.Appearance, System.Windows.Forms">
<value>Button</value>
</data>
<data name="cbItalic.Location" type="System.Drawing.Point, System.Drawing">
<value>350, 3</value>
</data>
<data name="cbItalic.Size" type="System.Drawing.Size, System.Drawing">
<value>24, 24</value>
</data>
<data name="cbItalic.TabIndex" type="System.Int32, mscorlib">
<value>5</value>
</data>
<data name="&gt;&gt;cbItalic.Name" xml:space="preserve">
<value>cbItalic</value>
</data>
<data name="&gt;&gt;cbItalic.Type" xml:space="preserve">
<value>System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;cbItalic.Parent" xml:space="preserve">
<value>flpProperties</value>
</data>
<data name="&gt;&gt;cbItalic.ZOrder" xml:space="preserve">
<value>6</value>
</data>
<data name="cbUnderline.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Left</value>
</data>
<data name="cbUnderline.Appearance" type="System.Windows.Forms.Appearance, System.Windows.Forms">
<value>Button</value>
</data>
<data name="cbUnderline.Location" type="System.Drawing.Point, System.Drawing">
<value>380, 3</value>
</data>
<data name="cbUnderline.Size" type="System.Drawing.Size, System.Drawing">
<value>24, 24</value>
</data>
<data name="cbUnderline.TabIndex" type="System.Int32, mscorlib">
<value>6</value>
</data>
<data name="&gt;&gt;cbUnderline.Name" xml:space="preserve">
<value>cbUnderline</value>
</data>
<data name="&gt;&gt;cbUnderline.Type" xml:space="preserve">
<value>System.Windows.Forms.CheckBox, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;cbUnderline.Parent" xml:space="preserve">
<value>flpProperties</value>
</data>
<data name="&gt;&gt;cbUnderline.ZOrder" xml:space="preserve">
<value>7</value>
</data>
<data name="btnAlignmentHorizontal.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Left</value>
</data>
<data name="btnAlignmentHorizontal.Location" type="System.Drawing.Point, System.Drawing">
<value>410, 3</value>
</data>
<data name="btnAlignmentHorizontal.Size" type="System.Drawing.Size, System.Drawing">
<value>24, 24</value>
</data>
<data name="btnAlignmentHorizontal.TabIndex" type="System.Int32, mscorlib">
<value>9</value>
</data>
<data name="&gt;&gt;btnAlignmentHorizontal.Name" xml:space="preserve">
<value>btnAlignmentHorizontal</value>
</data>
<data name="&gt;&gt;btnAlignmentHorizontal.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;btnAlignmentHorizontal.Parent" xml:space="preserve">
<value>flpProperties</value>
</data>
<data name="&gt;&gt;btnAlignmentHorizontal.ZOrder" xml:space="preserve">
<value>8</value>
</data>
<data name="btnAlignmentVertical.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Left</value>
</data>
<data name="btnAlignmentVertical.Location" type="System.Drawing.Point, System.Drawing">
<value>440, 3</value>
</data>
<data name="btnAlignmentVertical.Size" type="System.Drawing.Size, System.Drawing">
<value>24, 24</value>
</data>
<data name="btnAlignmentVertical.TabIndex" type="System.Int32, mscorlib">
<value>10</value>
</data>
<data name="&gt;&gt;btnAlignmentVertical.Name" xml:space="preserve">
<value>btnAlignmentVertical</value>
</data>
<data name="&gt;&gt;btnAlignmentVertical.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;btnAlignmentVertical.Parent" xml:space="preserve">
<value>flpProperties</value>
</data>
<data name="&gt;&gt;btnAlignmentVertical.ZOrder" xml:space="preserve">
<value>9</value>
</data>
<data name="flpProperties.Location" type="System.Drawing.Point, System.Drawing">
<value>8, 5</value>
</data>
<data name="flpProperties.Size" type="System.Drawing.Size, System.Drawing">
<value>518, 32</value>
</data>
<data name="flpProperties.TabIndex" type="System.Int32, mscorlib">
<value>2</value>
</data>
<data name="flpProperties.WrapContents" type="System.Boolean, mscorlib">
<value>False</value>
</data>
<data name="&gt;&gt;flpProperties.Name" xml:space="preserve">
<value>flpProperties</value>
</data>
<data name="&gt;&gt;flpProperties.Type" xml:space="preserve">
<value>System.Windows.Forms.FlowLayoutPanel, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<data name="&gt;&gt;flpProperties.Parent" xml:space="preserve">
<value>$this</value>
</data>
<data name="&gt;&gt;flpProperties.ZOrder" xml:space="preserve">
<value>3</value>
</data>
<data name="btnClose.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Bottom, Right</value>
</data>
<data name="btnClose.Location" type="System.Drawing.Point, System.Drawing">
<value>422, 327</value>
</data>
<data name="btnClose.Size" type="System.Drawing.Size, System.Drawing">
<value>104, 26</value>
</data>
<data name="btnClose.TabIndex" type="System.Int32, mscorlib">
<value>3</value>
</data>
<data name="btnClose.Text" xml:space="preserve">
<value>Close</value>
</data>
<data name="&gt;&gt;btnClose.Name" xml:space="preserve">
<value>btnClose</value>
</data>
<data name="&gt;&gt;btnClose.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;btnClose.Parent" xml:space="preserve">
<value>$this</value>
</data>
<data name="&gt;&gt;btnClose.ZOrder" xml:space="preserve">
<value>2</value>
</data>
<metadata name="cmsAlignmentHorizontal.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>17, 17</value>
</metadata>
<data name="tsmiAlignmentLeft.Size" type="System.Drawing.Size, System.Drawing">
<value>109, 22</value>
</data>
<data name="tsmiAlignmentLeft.Text" xml:space="preserve">
<value>Left</value>
</data>
<data name="tsmiAlignmentCenter.Size" type="System.Drawing.Size, System.Drawing">
<value>109, 22</value>
</data>
<data name="tsmiAlignmentCenter.Text" xml:space="preserve">
<value>Center</value>
</data>
<data name="tsmiAlignmentRight.Size" type="System.Drawing.Size, System.Drawing">
<value>109, 22</value>
</data>
<data name="tsmiAlignmentRight.Text" xml:space="preserve">
<value>Right</value>
</data>
<data name="cmsAlignmentHorizontal.Size" type="System.Drawing.Size, System.Drawing">
<value>110, 70</value>
</data>
<data name="&gt;&gt;cmsAlignmentHorizontal.Name" xml:space="preserve">
<value>cmsAlignmentHorizontal</value>
</data>
<data name="&gt;&gt;cmsAlignmentHorizontal.Type" xml:space="preserve">
<value>System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</data>
<metadata name="cmsAlignmentVertical.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>203, 17</value>
</metadata>
<data name="tsmiAlignmentTop.Size" type="System.Drawing.Size, System.Drawing">
<value>114, 22</value>
</data>
<data name="tsmiAlignmentTop.Text" xml:space="preserve">
<value>Top</value>
</data>
<data name="tsmiAlignmentMiddle.Size" type="System.Drawing.Size, System.Drawing">
<value>114, 22</value>
</data>
<data name="tsmiAlignmentMiddle.Text" xml:space="preserve">
<value>Middle</value>
</data>
<data name="tsmiAlignmentBottom.Size" type="System.Drawing.Size, System.Drawing">
<value>114, 22</value>
</data>
<data name="tsmiAlignmentBottom.Text" xml:space="preserve">
<value>Bottom</value>
</data>
<data name="cmsAlignmentVertical.Size" type="System.Drawing.Size, System.Drawing">
<value>115, 70</value>
</data>
<data name="&gt;&gt;cmsAlignmentVertical.Name" xml:space="preserve">
<value>cmsAlignmentVertical</value>
</data>
<data name="&gt;&gt;cmsAlignmentVertical.Type" xml:space="preserve">
<value>System.Windows.Forms.ContextMenuStrip, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</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>534, 361</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 - Text input</value>
</data>
<data name="&gt;&gt;tsmiAlignmentLeft.Name" xml:space="preserve">
<value>tsmiAlignmentLeft</value>
</data>
<data name="&gt;&gt;tsmiAlignmentLeft.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;tsmiAlignmentCenter.Name" xml:space="preserve">
<value>tsmiAlignmentCenter</value>
</data>
<data name="&gt;&gt;tsmiAlignmentCenter.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;tsmiAlignmentRight.Name" xml:space="preserve">
<value>tsmiAlignmentRight</value>
</data>
<data name="&gt;&gt;tsmiAlignmentRight.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;tsmiAlignmentTop.Name" xml:space="preserve">
<value>tsmiAlignmentTop</value>
</data>
<data name="&gt;&gt;tsmiAlignmentTop.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;tsmiAlignmentMiddle.Name" xml:space="preserve">
<value>tsmiAlignmentMiddle</value>
</data>
<data name="&gt;&gt;tsmiAlignmentMiddle.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;tsmiAlignmentBottom.Name" xml:space="preserve">
<value>tsmiAlignmentBottom</value>
</data>
<data name="&gt;&gt;tsmiAlignmentBottom.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>TextDrawingInputBox</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>