CASA/c_sharp/SecretStoreClientManager/about.cs

111 lines
3.1 KiB
C#
Raw Normal View History

using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
namespace SecretStoreService
{
/// <summary>
/// Summary description for about.
/// </summary>
public class about : System.Windows.Forms.Form
{
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.Container components = null;
public about()
{
//
// Required for Windows Form Designer support
//
InitializeComponent();
//
// TODO: Add any constructor code after InitializeComponent call
//
}
/// <summary>
/// Clean up any resources being used.
/// </summary>
protected override void Dispose( bool disposing )
{
if( disposing )
{
if(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.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// label1
//
this.label1.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
this.label1.Location = new System.Drawing.Point(32, 32);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(224, 32);
this.label1.TabIndex = 0;
this.label1.Text = "Utility under Construction";
//
// label2
//
this.label2.Font = new System.Drawing.Font("Tahoma", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
this.label2.Location = new System.Drawing.Point(34, 120);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(224, 48);
this.label2.TabIndex = 1;
this.label2.Text = "Contact Jim Norman for comments and questions";
//
// about
//
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
this.ClientSize = new System.Drawing.Size(292, 273);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "about";
this.ShowInTaskbar = false;
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "about";
this.TopMost = true;
this.TransparencyKey = System.Drawing.Color.Red;
this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.about_MouseDown);
this.ResumeLayout(false);
}
#endregion
private void about_KeyDown(object sender, System.Windows.Forms.KeyEventArgs e)
{
Dispose(true);
}
private void about_MouseDown(object sender, System.Windows.Forms.MouseEventArgs e)
{
Dispose(true);
}
}
}