51 lines
1.2 KiB
C#
51 lines
1.2 KiB
C#
/*
|
|
* Created by SharpDevelop.
|
|
* User: windows
|
|
* Date: 24.11.2004
|
|
* Time: 23:01
|
|
*
|
|
* To change this template use Tools | Options | Coding | Edit Standard Headers.
|
|
*/
|
|
|
|
using System;
|
|
using System.Drawing;
|
|
using System.Windows.Forms;
|
|
|
|
namespace ViwoTour
|
|
{
|
|
/// <summary>
|
|
/// Description of About.
|
|
/// </summary>
|
|
public class About : System.Windows.Forms.Form
|
|
{
|
|
public About()
|
|
{
|
|
//
|
|
// The InitializeComponent() call is required for Windows Forms designer support.
|
|
//
|
|
InitializeComponent();
|
|
|
|
//
|
|
// TODO: Add constructor code after the InitializeComponent() call.
|
|
//
|
|
}
|
|
|
|
#region Windows Forms Designer generated code
|
|
/// <summary>
|
|
/// This method is required for Windows Forms designer support.
|
|
/// Do not change the method contents inside the source code editor. The Forms designer might
|
|
/// not be able to load this method if it was changed manually.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
//
|
|
// About
|
|
//
|
|
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
|
|
this.ClientSize = new System.Drawing.Size(292, 266);
|
|
this.Text = "About";
|
|
this.Name = "About";
|
|
}
|
|
#endregion
|
|
}
|
|
}
|