mirror of
https://github.com/kwsch/pkNX.git
synced 2026-05-04 12:00:50 -05:00
Co-Authored-By: SciresM <8676005+SciresM@users.noreply.github.com> Co-Authored-By: Matt <17801814+sora10pls@users.noreply.github.com> Co-Authored-By: Lusamine <30205550+Lusamine@users.noreply.github.com>
76 lines
2.9 KiB
C#
76 lines
2.9 KiB
C#
namespace pkNX.WinForms
|
|
{
|
|
partial class TextInput
|
|
{
|
|
/// <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.Input = new System.Windows.Forms.TextBox();
|
|
this.B_Export = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// Input
|
|
//
|
|
this.Input.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.Input.Location = new System.Drawing.Point(12, 12);
|
|
this.Input.Name = "Input";
|
|
this.Input.Size = new System.Drawing.Size(260, 23);
|
|
this.Input.TabIndex = 0;
|
|
this.Input.TextChanged += new System.EventHandler(this.Input_TextChanged);
|
|
//
|
|
// B_Export
|
|
//
|
|
this.B_Export.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.B_Export.Location = new System.Drawing.Point(197, 41);
|
|
this.B_Export.Name = "B_Export";
|
|
this.B_Export.Size = new System.Drawing.Size(75, 23);
|
|
this.B_Export.TabIndex = 1;
|
|
this.B_Export.Text = "Export...";
|
|
this.B_Export.UseVisualStyleBackColor = true;
|
|
this.B_Export.Click += new System.EventHandler(this.B_Export_Click);
|
|
//
|
|
// TextInput
|
|
//
|
|
this.ClientSize = new System.Drawing.Size(284, 72);
|
|
this.Controls.Add(this.B_Export);
|
|
this.Controls.Add(this.Input);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
|
|
this.Name = "TextInput";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "Input Text";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TextBox Input;
|
|
private System.Windows.Forms.Button B_Export;
|
|
}
|
|
}
|