This repository has been archived on 2022-09-30. You can view files and clone it, but cannot push or open issues or pull requests.
bookmark-manager/RyzStudio/Windows/ThemedForms/TextBoxForm.Designer.cs

116 lines
5.3 KiB
C#
Raw Normal View History

2019-04-21 17:53:56 +00:00
namespace RyzStudio.Windows.ThemedForms
2017-07-30 11:59:34 +00:00
{
2019-04-21 17:53:56 +00:00
partial class TextBoxForm
2017-07-30 11:59:34 +00:00
{
/// <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()
{
2019-04-21 17:53:56 +00:00
this.textBox1 = new RyzStudio.Windows.ThemedForms.TextBox();
this.button2 = new RyzStudio.Windows.ThemedForms.Button();
2019-04-19 02:51:55 +00:00
this.label2 = new System.Windows.Forms.Label();
this.horizontalSeparator1 = new RyzStudio.Windows.Forms.HorizontalSeparator();
2017-07-30 11:59:34 +00:00
this.SuspendLayout();
2019-04-21 17:53:56 +00:00
//
// textBox1
//
this.textBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
2019-04-19 02:51:55 +00:00
| System.Windows.Forms.AnchorStyles.Right)));
2019-04-21 17:53:56 +00:00
this.textBox1.BackColor = System.Drawing.Color.Transparent;
this.textBox1.Location = new System.Drawing.Point(96, 15);
this.textBox1.Margin = new System.Windows.Forms.Padding(10, 6, 10, 6);
this.textBox1.Name = "textBox1";
this.textBox1.Padding = new System.Windows.Forms.Padding(10, 10, 9, 9);
this.textBox1.Size = new System.Drawing.Size(276, 32);
this.textBox1.SubmitButton = this.button2;
this.textBox1.TabIndex = 0;
this.textBox1.UseSystemPasswordChar = false;
//
// button2
//
this.button2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
this.button2.BackColor = System.Drawing.Color.Transparent;
this.button2.DefaultImage = null;
this.button2.DownImage = null;
this.button2.LabelText = "&OK";
this.button2.Location = new System.Drawing.Point(264, 77);
this.button2.Name = "button2";
this.button2.OverImage = null;
this.button2.Padding = new System.Windows.Forms.Padding(4, 4, 3, 3);
this.button2.Size = new System.Drawing.Size(108, 32);
this.button2.TabIndex = 1;
this.button2.Click += new System.EventHandler(this.button2_Click);
//
2019-04-19 02:51:55 +00:00
// label2
2019-04-21 17:53:56 +00:00
//
2019-04-19 02:51:55 +00:00
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(12, 25);
this.label2.Margin = new System.Windows.Forms.Padding(3);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(34, 13);
this.label2.TabIndex = 67;
this.label2.Text = "Name";
2019-04-21 17:53:56 +00:00
//
2019-04-19 02:51:55 +00:00
// horizontalSeparator1
2019-04-21 17:53:56 +00:00
//
this.horizontalSeparator1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
2017-07-30 11:59:34 +00:00
| System.Windows.Forms.AnchorStyles.Right)));
2019-04-21 17:53:56 +00:00
this.horizontalSeparator1.Location = new System.Drawing.Point(12, 62);
2019-04-19 02:51:55 +00:00
this.horizontalSeparator1.Margin = new System.Windows.Forms.Padding(3, 10, 3, 10);
this.horizontalSeparator1.MaximumSize = new System.Drawing.Size(4920, 2);
this.horizontalSeparator1.Name = "horizontalSeparator1";
this.horizontalSeparator1.Size = new System.Drawing.Size(360, 2);
this.horizontalSeparator1.TabIndex = 69;
2019-04-21 17:53:56 +00:00
//
2017-07-30 11:59:34 +00:00
// NewSessionForm
2019-04-21 17:53:56 +00:00
//
2017-07-30 11:59:34 +00:00
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
this.BackColor = System.Drawing.Color.White;
2019-04-21 17:53:56 +00:00
this.ClientSize = new System.Drawing.Size(384, 121);
2019-04-19 02:51:55 +00:00
this.Controls.Add(this.button2);
this.Controls.Add(this.horizontalSeparator1);
2019-04-21 17:53:56 +00:00
this.Controls.Add(this.textBox1);
2019-04-19 02:51:55 +00:00
this.Controls.Add(this.label2);
2017-07-30 11:59:34 +00:00
this.Font = new System.Drawing.Font("Tahoma", 8.25F);
this.MaximizeBox = false;
this.MinimizeBox = false;
2019-04-21 17:53:56 +00:00
this.MinimumSize = new System.Drawing.Size(400, 160);
2017-07-30 11:59:34 +00:00
this.Name = "NewSessionForm";
2019-04-19 02:51:55 +00:00
this.ShowIcon = false;
2017-07-30 11:59:34 +00:00
this.ShowInTaskbar = false;
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
2019-04-20 16:05:55 +00:00
this.Text = "New Session";
2017-07-30 11:59:34 +00:00
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
2019-04-21 17:53:56 +00:00
private RyzStudio.Windows.ThemedForms.TextBox textBox1;
2019-04-19 02:51:55 +00:00
private System.Windows.Forms.Label label2;
private RyzStudio.Windows.Forms.HorizontalSeparator horizontalSeparator1;
private RyzStudio.Windows.ThemedForms.Button button2;
2017-07-30 11:59:34 +00:00
}
}