mirror of
https://github.com/reactos/RosTE.git
synced 2024-11-26 21:00:31 +00:00
6d1e94a0c6
svn path=/trunk/tools/RosTE/; revision=182
133 lines
5.8 KiB
C#
133 lines
5.8 KiB
C#
namespace RosTEGUI
|
|
{
|
|
partial class AboutForm
|
|
{
|
|
/// <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(AboutForm));
|
|
this.buttonClose = new System.Windows.Forms.Button();
|
|
this.tabControl = new System.Windows.Forms.TabControl();
|
|
this.tabPage1 = new System.Windows.Forms.TabPage();
|
|
this.textBoxLicense = new System.Windows.Forms.TextBox();
|
|
this.tabPage2 = new System.Windows.Forms.TabPage();
|
|
this.textBoxCredits = new System.Windows.Forms.TextBox();
|
|
this.tabControl.SuspendLayout();
|
|
this.tabPage1.SuspendLayout();
|
|
this.tabPage2.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// buttonClose
|
|
//
|
|
this.buttonClose.Location = new System.Drawing.Point(109, 263);
|
|
this.buttonClose.Name = "buttonClose";
|
|
this.buttonClose.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonClose.TabIndex = 1;
|
|
this.buttonClose.Text = "Close";
|
|
this.buttonClose.UseVisualStyleBackColor = true;
|
|
this.buttonClose.Click += new System.EventHandler(this.button1_Click);
|
|
//
|
|
// tabControl
|
|
//
|
|
this.tabControl.Controls.Add(this.tabPage1);
|
|
this.tabControl.Controls.Add(this.tabPage2);
|
|
this.tabControl.Location = new System.Drawing.Point(12, 12);
|
|
this.tabControl.Name = "tabControl";
|
|
this.tabControl.SelectedIndex = 0;
|
|
this.tabControl.Size = new System.Drawing.Size(287, 245);
|
|
this.tabControl.TabIndex = 2;
|
|
//
|
|
// tabPage1
|
|
//
|
|
this.tabPage1.Controls.Add(this.textBoxLicense);
|
|
this.tabPage1.Location = new System.Drawing.Point(4, 22);
|
|
this.tabPage1.Name = "tabPage1";
|
|
this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
|
|
this.tabPage1.Size = new System.Drawing.Size(279, 219);
|
|
this.tabPage1.TabIndex = 0;
|
|
this.tabPage1.Text = "License";
|
|
this.tabPage1.UseVisualStyleBackColor = true;
|
|
//
|
|
// textBoxLicense
|
|
//
|
|
this.textBoxLicense.Location = new System.Drawing.Point(6, 6);
|
|
this.textBoxLicense.Multiline = true;
|
|
this.textBoxLicense.Name = "textBoxLicense";
|
|
this.textBoxLicense.ReadOnly = true;
|
|
this.textBoxLicense.Size = new System.Drawing.Size(267, 207);
|
|
this.textBoxLicense.TabIndex = 0;
|
|
this.textBoxLicense.Text = resources.GetString("textBoxLicense.Text");
|
|
//
|
|
// tabPage2
|
|
//
|
|
this.tabPage2.Controls.Add(this.textBoxCredits);
|
|
this.tabPage2.Location = new System.Drawing.Point(4, 22);
|
|
this.tabPage2.Name = "tabPage2";
|
|
this.tabPage2.Padding = new System.Windows.Forms.Padding(3);
|
|
this.tabPage2.Size = new System.Drawing.Size(279, 219);
|
|
this.tabPage2.TabIndex = 1;
|
|
this.tabPage2.Text = "Credits";
|
|
this.tabPage2.UseVisualStyleBackColor = true;
|
|
//
|
|
// textBoxCredits
|
|
//
|
|
this.textBoxCredits.Location = new System.Drawing.Point(6, 6);
|
|
this.textBoxCredits.Multiline = true;
|
|
this.textBoxCredits.Name = "textBoxCredits";
|
|
this.textBoxCredits.ReadOnly = true;
|
|
this.textBoxCredits.Size = new System.Drawing.Size(267, 207);
|
|
this.textBoxCredits.TabIndex = 0;
|
|
this.textBoxCredits.Text = "ReactOS Test Environment was brought to you by:\r\n\r\n - Ged Murphy [gedmurphy@react" +
|
|
"os.org]";
|
|
//
|
|
// AboutForm
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(311, 298);
|
|
this.Controls.Add(this.tabControl);
|
|
this.Controls.Add(this.buttonClose);
|
|
this.Name = "AboutForm";
|
|
this.Text = "About";
|
|
this.tabControl.ResumeLayout(false);
|
|
this.tabPage1.ResumeLayout(false);
|
|
this.tabPage1.PerformLayout();
|
|
this.tabPage2.ResumeLayout(false);
|
|
this.tabPage2.PerformLayout();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button buttonClose;
|
|
private System.Windows.Forms.TabControl tabControl;
|
|
private System.Windows.Forms.TabPage tabPage1;
|
|
private System.Windows.Forms.TabPage tabPage2;
|
|
private System.Windows.Forms.TextBox textBoxLicense;
|
|
private System.Windows.Forms.TextBox textBoxCredits;
|
|
}
|
|
} |