mirror of
https://github.com/xenia-project/dockpanelsuite.git
synced 2026-01-31 01:25:23 +01:00
There's religion, politics, and tabs vs spaces. Regardless of your view it should be consistent, and since I'm implementing the change we're going spaces. If we need justification beyond my personal preference, this is the default in Visual Studio.
118 lines
4.7 KiB
C#
118 lines
4.7 KiB
C#
namespace DockSample
|
|
{
|
|
partial class AboutDialog
|
|
{
|
|
/// <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.buttonOK = new System.Windows.Forms.Button();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.label2 = new System.Windows.Forms.Label();
|
|
this.label3 = new System.Windows.Forms.Label();
|
|
this.labelLibVersion = new System.Windows.Forms.Label();
|
|
this.labelAppVersion = new System.Windows.Forms.Label();
|
|
this.SuspendLayout();
|
|
//
|
|
// buttonOK
|
|
//
|
|
this.buttonOK.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
this.buttonOK.Location = new System.Drawing.Point(240, 184);
|
|
this.buttonOK.Name = "buttonOK";
|
|
this.buttonOK.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonOK.TabIndex = 0;
|
|
this.buttonOK.Text = "OK";
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.Location = new System.Drawing.Point(24, 59);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(109, 16);
|
|
this.label1.TabIndex = 1;
|
|
this.label1.Text = "DockSample Version:";
|
|
//
|
|
// label2
|
|
//
|
|
this.label2.Location = new System.Drawing.Point(24, 119);
|
|
this.label2.Name = "label2";
|
|
this.label2.Size = new System.Drawing.Size(272, 32);
|
|
this.label2.TabIndex = 2;
|
|
this.label2.Text = "Copyright 2007, Weifen Luo";
|
|
//
|
|
// label3
|
|
//
|
|
this.label3.AutoSize = true;
|
|
this.label3.Location = new System.Drawing.Point(24, 81);
|
|
this.label3.Name = "label3";
|
|
this.label3.Size = new System.Drawing.Size(128, 13);
|
|
this.label3.TabIndex = 3;
|
|
this.label3.Text = "DockPanel Suite Version:";
|
|
//
|
|
// labelLibVersion
|
|
//
|
|
this.labelLibVersion.Location = new System.Drawing.Point(148, 81);
|
|
this.labelLibVersion.Name = "labelLibVersion";
|
|
this.labelLibVersion.Size = new System.Drawing.Size(97, 13);
|
|
this.labelLibVersion.TabIndex = 4;
|
|
//
|
|
// labelAppVersion
|
|
//
|
|
this.labelAppVersion.Location = new System.Drawing.Point(129, 59);
|
|
this.labelAppVersion.Name = "labelAppVersion";
|
|
this.labelAppVersion.Size = new System.Drawing.Size(97, 13);
|
|
this.labelAppVersion.TabIndex = 5;
|
|
//
|
|
// AboutDialog
|
|
//
|
|
this.AcceptButton = this.buttonOK;
|
|
this.CancelButton = this.buttonOK;
|
|
this.ClientSize = new System.Drawing.Size(322, 215);
|
|
this.Controls.Add(this.labelAppVersion);
|
|
this.Controls.Add(this.labelLibVersion);
|
|
this.Controls.Add(this.label3);
|
|
this.Controls.Add(this.label2);
|
|
this.Controls.Add(this.label1);
|
|
this.Controls.Add(this.buttonOK);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "AboutDialog";
|
|
this.ShowInTaskbar = false;
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "About";
|
|
this.Load += new System.EventHandler(this.AboutDialog_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Label label2;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.Button buttonOK;
|
|
private System.Windows.Forms.Label label3;
|
|
private System.Windows.Forms.Label labelLibVersion;
|
|
private System.Windows.Forms.Label labelAppVersion;
|
|
}
|
|
} |