mirror of
https://mirror.ghproxy.com/https://github.com/dexyfex/CodeWalker
synced 2024-11-16 20:17:30 +08:00
82 lines
3.5 KiB
C#
82 lines
3.5 KiB
C#
namespace CodeWalker.Forms
|
|
{
|
|
partial class GxtForm
|
|
{
|
|
/// <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()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(GxtForm));
|
|
this.MainTextBox = new CodeWalker.WinForms.TextBoxFix();
|
|
this.CloseButton = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// MainTextBox
|
|
//
|
|
this.MainTextBox.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.MainTextBox.Font = new System.Drawing.Font("Courier New", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
|
|
this.MainTextBox.HideSelection = false;
|
|
this.MainTextBox.Location = new System.Drawing.Point(12, 12);
|
|
this.MainTextBox.Multiline = true;
|
|
this.MainTextBox.Name = "MainTextBox";
|
|
this.MainTextBox.ScrollBars = System.Windows.Forms.ScrollBars.Both;
|
|
this.MainTextBox.Size = new System.Drawing.Size(660, 367);
|
|
this.MainTextBox.TabIndex = 0;
|
|
this.MainTextBox.WordWrap = false;
|
|
//
|
|
// CloseButton
|
|
//
|
|
this.CloseButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.CloseButton.Location = new System.Drawing.Point(597, 389);
|
|
this.CloseButton.Name = "CloseButton";
|
|
this.CloseButton.Size = new System.Drawing.Size(75, 23);
|
|
this.CloseButton.TabIndex = 1;
|
|
this.CloseButton.Text = "Close";
|
|
this.CloseButton.UseVisualStyleBackColor = true;
|
|
this.CloseButton.Click += new System.EventHandler(this.CloseButton_Click);
|
|
//
|
|
// GxtForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(684, 421);
|
|
this.Controls.Add(this.CloseButton);
|
|
this.Controls.Add(this.MainTextBox);
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.Name = "GxtForm";
|
|
this.Text = "GXT Viewer - CodeWalker by dexyfex";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private WinForms.TextBoxFix MainTextBox;
|
|
private System.Windows.Forms.Button CloseButton;
|
|
}
|
|
} |