mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-15 14:51:21 +00:00
- NioTSO client isn't needed because we're using RayLib - Added FreeSO's API server to handle most backend operations
103 lines
No EOL
4.1 KiB
C#
Executable file
103 lines
No EOL
4.1 KiB
C#
Executable file
namespace tso.debug.network
|
|
{
|
|
partial class StringDialog
|
|
{
|
|
/// <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.description = new System.Windows.Forms.Label();
|
|
this.btnCancel = new System.Windows.Forms.Button();
|
|
this.btnOk = new System.Windows.Forms.Button();
|
|
this.txtValue = new System.Windows.Forms.TextBox();
|
|
this.SuspendLayout();
|
|
//
|
|
// description
|
|
//
|
|
this.description.AutoSize = true;
|
|
this.description.Location = new System.Drawing.Point(12, 9);
|
|
this.description.Name = "description";
|
|
this.description.Size = new System.Drawing.Size(35, 13);
|
|
this.description.TabIndex = 0;
|
|
this.description.Text = "label1";
|
|
//
|
|
// btnCancel
|
|
//
|
|
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
this.btnCancel.Location = new System.Drawing.Point(299, 62);
|
|
this.btnCancel.Name = "btnCancel";
|
|
this.btnCancel.Size = new System.Drawing.Size(75, 23);
|
|
this.btnCancel.TabIndex = 1;
|
|
this.btnCancel.Text = "Cancel";
|
|
this.btnCancel.UseVisualStyleBackColor = true;
|
|
//
|
|
// btnOk
|
|
//
|
|
this.btnOk.DialogResult = System.Windows.Forms.DialogResult.OK;
|
|
this.btnOk.Enabled = false;
|
|
this.btnOk.Location = new System.Drawing.Point(218, 62);
|
|
this.btnOk.Name = "btnOk";
|
|
this.btnOk.Size = new System.Drawing.Size(75, 23);
|
|
this.btnOk.TabIndex = 2;
|
|
this.btnOk.Text = "Ok";
|
|
this.btnOk.UseVisualStyleBackColor = true;
|
|
this.btnOk.Click += new System.EventHandler(this.btnOk_Click);
|
|
//
|
|
// txtValue
|
|
//
|
|
this.txtValue.Location = new System.Drawing.Point(15, 36);
|
|
this.txtValue.Name = "txtValue";
|
|
this.txtValue.Size = new System.Drawing.Size(359, 20);
|
|
this.txtValue.TabIndex = 3;
|
|
this.txtValue.TextChanged += new System.EventHandler(this.txtValue_TextChanged);
|
|
this.txtValue.Enter += new System.EventHandler(this.txtValue_Enter);
|
|
//
|
|
// StringDialog
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(386, 96);
|
|
this.Controls.Add(this.txtValue);
|
|
this.Controls.Add(this.btnOk);
|
|
this.Controls.Add(this.btnCancel);
|
|
this.Controls.Add(this.description);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
|
|
this.Name = "StringDialog";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Deactivate += new System.EventHandler(this.StringDialog_Deactivate);
|
|
this.Load += new System.EventHandler(this.StringModal_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label description;
|
|
private System.Windows.Forms.Button btnCancel;
|
|
private System.Windows.Forms.Button btnOk;
|
|
private System.Windows.Forms.TextBox txtValue;
|
|
}
|
|
} |