ShareX/ShareX.ScreenCaptureLib/Forms/TextDrawingInputBox.Designer.cs

233 lines
11 KiB
C#
Raw Normal View History

namespace ShareX.ScreenCaptureLib
{
partial class TextDrawingInputBox
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.txtInput = new System.Windows.Forms.TextBox();
this.btnTextColor = new ShareX.HelpersLib.ColorButton();
this.flpProperties = new System.Windows.Forms.FlowLayoutPanel();
this.lblTextSize = new System.Windows.Forms.Label();
this.nudTextSize = new System.Windows.Forms.NumericUpDown();
this.cbBold = new System.Windows.Forms.CheckBox();
this.cbItalic = new System.Windows.Forms.CheckBox();
this.cbUnderline = new System.Windows.Forms.CheckBox();
this.btnOK = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
2016-05-20 12:47:04 +12:00
this.lblFont = new System.Windows.Forms.Label();
this.cbFonts = new System.Windows.Forms.ComboBox();
this.flpProperties.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.nudTextSize)).BeginInit();
this.SuspendLayout();
//
// txtInput
//
2016-05-20 12:47:04 +12:00
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)));
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(472, 280);
this.txtInput.TabIndex = 0;
//
// btnTextColor
//
this.btnTextColor.Anchor = System.Windows.Forms.AnchorStyles.Left;
this.btnTextColor.Color = System.Drawing.Color.Empty;
2016-05-20 12:47:04 +12:00
this.btnTextColor.Location = new System.Drawing.Point(319, 3);
this.btnTextColor.Name = "btnTextColor";
2016-05-20 12:47:04 +12:00
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
//
2016-05-20 12:47:04 +12:00
this.flpProperties.Controls.Add(this.lblFont);
this.flpProperties.Controls.Add(this.cbFonts);
this.flpProperties.Controls.Add(this.lblTextSize);
this.flpProperties.Controls.Add(this.nudTextSize);
2016-05-20 12:47:04 +12:00
this.flpProperties.Controls.Add(this.btnTextColor);
this.flpProperties.Controls.Add(this.cbBold);
this.flpProperties.Controls.Add(this.cbItalic);
this.flpProperties.Controls.Add(this.cbUnderline);
this.flpProperties.Location = new System.Drawing.Point(8, 5);
this.flpProperties.Name = "flpProperties";
this.flpProperties.Size = new System.Drawing.Size(472, 32);
this.flpProperties.TabIndex = 2;
//
// lblTextSize
//
this.lblTextSize.Anchor = System.Windows.Forms.AnchorStyles.Left;
this.lblTextSize.AutoSize = true;
2016-05-20 12:47:04 +12:00
this.lblTextSize.Location = new System.Drawing.Point(227, 8);
this.lblTextSize.Margin = new System.Windows.Forms.Padding(3, 0, 0, 0);
this.lblTextSize.Name = "lblTextSize";
2016-05-20 12:47:04 +12:00
this.lblTextSize.Size = new System.Drawing.Size(30, 13);
this.lblTextSize.TabIndex = 2;
2016-05-20 12:47:04 +12:00
this.lblTextSize.Text = "Size:";
//
// nudTextSize
//
this.nudTextSize.Anchor = System.Windows.Forms.AnchorStyles.Left;
2016-05-20 12:47:04 +12:00
this.nudTextSize.Location = new System.Drawing.Point(260, 5);
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,
0,
0});
this.nudTextSize.ValueChanged += new System.EventHandler(this.nudTextSize_ValueChanged);
//
// cbBold
//
this.cbBold.Appearance = System.Windows.Forms.Appearance.Button;
this.cbBold.Image = global::ShareX.ScreenCaptureLib.Properties.Resources.edit_bold;
2016-05-20 12:47:04 +12:00
this.cbBold.Location = new System.Drawing.Point(349, 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.Appearance = System.Windows.Forms.Appearance.Button;
this.cbItalic.Image = global::ShareX.ScreenCaptureLib.Properties.Resources.edit_italic;
2016-05-20 12:47:04 +12:00
this.cbItalic.Location = new System.Drawing.Point(379, 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.Appearance = System.Windows.Forms.Appearance.Button;
this.cbUnderline.Image = global::ShareX.ScreenCaptureLib.Properties.Resources.edit_underline;
2016-05-20 12:47:04 +12:00
this.cbUnderline.Location = new System.Drawing.Point(409, 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);
//
// btnOK
//
2016-05-20 12:47:04 +12:00
this.btnOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnOK.Location = new System.Drawing.Point(264, 328);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(104, 24);
this.btnOK.TabIndex = 3;
this.btnOK.Text = "OK";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// btnCancel
//
2016-05-20 12:47:04 +12:00
this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.btnCancel.Location = new System.Drawing.Point(376, 328);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(104, 24);
this.btnCancel.TabIndex = 4;
this.btnCancel.Text = "Cancel";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
2016-05-20 12:47:04 +12:00
// lblFont
//
this.lblFont.Anchor = System.Windows.Forms.AnchorStyles.Left;
this.lblFont.AutoSize = true;
this.lblFont.Location = new System.Drawing.Point(3, 8);
this.lblFont.Margin = new System.Windows.Forms.Padding(3, 0, 0, 0);
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;
this.cbFonts.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cbFonts.FormattingEnabled = true;
this.cbFonts.Location = new System.Drawing.Point(37, 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);
//
// TextDrawingInputBox
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(488, 360);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnOK);
this.Controls.Add(this.flpProperties);
this.Controls.Add(this.txtInput);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "TextDrawingInputBox";
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "ShareX - Text input";
this.TopMost = true;
this.flpProperties.ResumeLayout(false);
this.flpProperties.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.nudTextSize)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox txtInput;
private HelpersLib.ColorButton btnTextColor;
private System.Windows.Forms.FlowLayoutPanel flpProperties;
private System.Windows.Forms.Label lblTextSize;
private System.Windows.Forms.NumericUpDown nudTextSize;
private System.Windows.Forms.Button btnOK;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.CheckBox cbBold;
private System.Windows.Forms.CheckBox cbItalic;
private System.Windows.Forms.CheckBox cbUnderline;
2016-05-20 12:47:04 +12:00
private System.Windows.Forms.Label lblFont;
private System.Windows.Forms.ComboBox cbFonts;
}
}