2016-02-07 16:13:48 -05:00
namespace Mesen.GUI.Forms
{
partial class frmAbout
{
/// <summary>
/// Required designer variable.
/// </summary>
private System . ComponentModel . IContainer components = null ;
/// <summary>
/// Clean up any resources being used.
/// </summary>
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 . tableLayoutPanel = new System . Windows . Forms . TableLayoutPanel ( ) ;
this . logoPictureBox = new System . Windows . Forms . PictureBox ( ) ;
this . labelProductName = new System . Windows . Forms . Label ( ) ;
this . labelCopyright = new System . Windows . Forms . Label ( ) ;
this . flowLayoutPanel1 = new System . Windows . Forms . FlowLayoutPanel ( ) ;
2016-02-08 23:23:31 -05:00
this . lblWebsite = new System . Windows . Forms . Label ( ) ;
2016-02-07 16:13:48 -05:00
this . lblLink = new System . Windows . Forms . Label ( ) ;
2016-02-08 23:23:31 -05:00
this . labelVersion = new System . Windows . Forms . Label ( ) ;
this . okButton = new System . Windows . Forms . Button ( ) ;
2016-02-14 18:36:08 -05:00
this . flowLayoutPanel2 = new System . Windows . Forms . FlowLayoutPanel ( ) ;
2016-02-07 16:13:48 -05:00
this . tableLayoutPanel . SuspendLayout ( ) ;
( ( System . ComponentModel . ISupportInitialize ) ( this . logoPictureBox ) ) . BeginInit ( ) ;
this . flowLayoutPanel1 . SuspendLayout ( ) ;
this . SuspendLayout ( ) ;
//
// tableLayoutPanel
//
this . tableLayoutPanel . ColumnCount = 2 ;
this . tableLayoutPanel . ColumnStyles . Add ( new System . Windows . Forms . ColumnStyle ( System . Windows . Forms . SizeType . Absolute , 70F ) ) ;
this . tableLayoutPanel . ColumnStyles . Add ( new System . Windows . Forms . ColumnStyle ( System . Windows . Forms . SizeType . Percent , 100F ) ) ;
this . tableLayoutPanel . Controls . Add ( this . logoPictureBox , 0 , 0 ) ;
this . tableLayoutPanel . Controls . Add ( this . labelProductName , 1 , 0 ) ;
this . tableLayoutPanel . Controls . Add ( this . labelCopyright , 1 , 2 ) ;
this . tableLayoutPanel . Controls . Add ( this . flowLayoutPanel1 , 1 , 3 ) ;
this . tableLayoutPanel . Controls . Add ( this . labelVersion , 1 , 1 ) ;
this . tableLayoutPanel . Controls . Add ( this . okButton , 1 , 5 ) ;
2016-02-14 18:36:08 -05:00
this . tableLayoutPanel . Controls . Add ( this . flowLayoutPanel2 , 0 , 4 ) ;
2016-02-07 16:13:48 -05:00
this . tableLayoutPanel . Dock = System . Windows . Forms . DockStyle . Fill ;
this . tableLayoutPanel . Location = new System . Drawing . Point ( 5 , 5 ) ;
this . tableLayoutPanel . Name = "tableLayoutPanel" ;
this . tableLayoutPanel . RowCount = 6 ;
this . tableLayoutPanel . RowStyles . Add ( new System . Windows . Forms . RowStyle ( ) ) ;
this . tableLayoutPanel . RowStyles . Add ( new System . Windows . Forms . RowStyle ( ) ) ;
this . tableLayoutPanel . RowStyles . Add ( new System . Windows . Forms . RowStyle ( ) ) ;
this . tableLayoutPanel . RowStyles . Add ( new System . Windows . Forms . RowStyle ( ) ) ;
this . tableLayoutPanel . RowStyles . Add ( new System . Windows . Forms . RowStyle ( System . Windows . Forms . SizeType . Percent , 100F ) ) ;
this . tableLayoutPanel . RowStyles . Add ( new System . Windows . Forms . RowStyle ( ) ) ;
2016-02-14 18:36:08 -05:00
this . tableLayoutPanel . Size = new System . Drawing . Size ( 337 , 102 ) ;
2016-02-07 16:13:48 -05:00
this . tableLayoutPanel . TabIndex = 0 ;
//
// logoPictureBox
//
this . logoPictureBox . Image = global :: Mesen . GUI . Properties . Resources . MesenLogo ;
this . logoPictureBox . Location = new System . Drawing . Point ( 3 , 3 ) ;
this . logoPictureBox . Name = "logoPictureBox" ;
this . tableLayoutPanel . SetRowSpan ( this . logoPictureBox , 4 ) ;
2016-02-14 18:36:08 -05:00
this . logoPictureBox . Size = new System . Drawing . Size ( 64 , 65 ) ;
2016-02-07 16:13:48 -05:00
this . logoPictureBox . TabIndex = 12 ;
this . logoPictureBox . TabStop = false ;
//
// labelProductName
//
this . labelProductName . Dock = System . Windows . Forms . DockStyle . Fill ;
this . labelProductName . Font = new System . Drawing . Font ( "Microsoft Sans Serif" , 12F , System . Drawing . FontStyle . Regular , System . Drawing . GraphicsUnit . Point , ( ( byte ) ( 0 ) ) ) ;
this . labelProductName . Location = new System . Drawing . Point ( 76 , 0 ) ;
this . labelProductName . Margin = new System . Windows . Forms . Padding ( 6 , 0 , 3 , 0 ) ;
this . labelProductName . Name = "labelProductName" ;
2016-02-14 18:36:08 -05:00
this . labelProductName . Size = new System . Drawing . Size ( 258 , 17 ) ;
2016-02-07 16:13:48 -05:00
this . labelProductName . TabIndex = 19 ;
this . labelProductName . Text = "Mesen" ;
this . labelProductName . TextAlign = System . Drawing . ContentAlignment . MiddleLeft ;
//
// labelCopyright
//
this . labelCopyright . Dock = System . Windows . Forms . DockStyle . Fill ;
this . labelCopyright . Font = new System . Drawing . Font ( "Microsoft Sans Serif" , 9.75F , System . Drawing . FontStyle . Regular , System . Drawing . GraphicsUnit . Point , ( ( byte ) ( 0 ) ) ) ;
this . labelCopyright . Location = new System . Drawing . Point ( 76 , 34 ) ;
this . labelCopyright . Margin = new System . Windows . Forms . Padding ( 6 , 0 , 3 , 0 ) ;
this . labelCopyright . Name = "labelCopyright" ;
2016-02-14 18:36:08 -05:00
this . labelCopyright . Size = new System . Drawing . Size ( 258 , 17 ) ;
2016-02-07 16:13:48 -05:00
this . labelCopyright . TabIndex = 21 ;
2016-02-14 18:36:08 -05:00
this . labelCopyright . Text = "© 2016 M. Bibaud (aka Sour)" ;
2016-02-07 16:13:48 -05:00
this . labelCopyright . TextAlign = System . Drawing . ContentAlignment . MiddleLeft ;
//
2016-02-08 23:23:31 -05:00
// flowLayoutPanel1
2016-02-07 16:13:48 -05:00
//
2016-02-08 23:23:31 -05:00
this . flowLayoutPanel1 . Controls . Add ( this . lblWebsite ) ;
this . flowLayoutPanel1 . Controls . Add ( this . lblLink ) ;
this . flowLayoutPanel1 . Location = new System . Drawing . Point ( 70 , 51 ) ;
this . flowLayoutPanel1 . Margin = new System . Windows . Forms . Padding ( 0 ) ;
this . flowLayoutPanel1 . Name = "flowLayoutPanel1" ;
this . flowLayoutPanel1 . Size = new System . Drawing . Size ( 236 , 18 ) ;
this . flowLayoutPanel1 . TabIndex = 26 ;
2016-02-07 16:13:48 -05:00
//
// lblWebsite
//
2016-09-05 12:12:57 -04:00
this . lblWebsite . AutoSize = true ;
2016-02-07 16:13:48 -05:00
this . lblWebsite . Font = new System . Drawing . Font ( "Microsoft Sans Serif" , 9.75F , System . Drawing . FontStyle . Regular , System . Drawing . GraphicsUnit . Point , ( ( byte ) ( 0 ) ) ) ;
this . lblWebsite . Location = new System . Drawing . Point ( 6 , 0 ) ;
this . lblWebsite . Margin = new System . Windows . Forms . Padding ( 6 , 0 , 0 , 0 ) ;
this . lblWebsite . Name = "lblWebsite" ;
2016-09-05 12:12:57 -04:00
this . lblWebsite . Size = new System . Drawing . Size ( 61 , 16 ) ;
2016-02-07 16:13:48 -05:00
this . lblWebsite . TabIndex = 25 ;
this . lblWebsite . Text = "Website:" ;
this . lblWebsite . TextAlign = System . Drawing . ContentAlignment . MiddleLeft ;
//
// lblLink
//
this . lblLink . AutoSize = true ;
this . lblLink . Cursor = System . Windows . Forms . Cursors . Hand ;
this . lblLink . Font = new System . Drawing . Font ( "Microsoft Sans Serif" , 8.25F , System . Drawing . FontStyle . Underline , System . Drawing . GraphicsUnit . Point , ( ( byte ) ( 0 ) ) ) ;
this . lblLink . ForeColor = System . Drawing . Color . Blue ;
this . lblLink . Location = new System . Drawing . Point ( 67 , 2 ) ;
this . lblLink . Margin = new System . Windows . Forms . Padding ( 0 , 2 , 3 , 0 ) ;
this . lblLink . Name = "lblLink" ;
this . lblLink . Size = new System . Drawing . Size ( 80 , 13 ) ;
this . lblLink . TabIndex = 26 ;
this . lblLink . Text = "www.mesen.ca" ;
this . lblLink . Click + = new System . EventHandler ( this . lblLink_Click ) ;
//
2016-02-08 23:23:31 -05:00
// labelVersion
2016-02-07 16:13:48 -05:00
//
2016-02-08 23:23:31 -05:00
this . labelVersion . Location = new System . Drawing . Point ( 76 , 17 ) ;
this . labelVersion . Margin = new System . Windows . Forms . Padding ( 6 , 0 , 3 , 0 ) ;
this . labelVersion . Name = "labelVersion" ;
this . labelVersion . Size = new System . Drawing . Size ( 146 , 17 ) ;
this . labelVersion . TabIndex = 0 ;
2016-08-29 23:33:58 -04:00
this . labelVersion . Text = "Version: 0.4.3 (Beta)" ;
2016-02-08 23:23:31 -05:00
this . labelVersion . TextAlign = System . Drawing . ContentAlignment . MiddleLeft ;
//
// okButton
//
this . okButton . Anchor = ( ( System . Windows . Forms . AnchorStyles ) ( ( System . Windows . Forms . AnchorStyles . Bottom | System . Windows . Forms . AnchorStyles . Right ) ) ) ;
this . okButton . DialogResult = System . Windows . Forms . DialogResult . Cancel ;
2016-02-14 18:36:08 -05:00
this . okButton . Location = new System . Drawing . Point ( 259 , 76 ) ;
2016-02-08 23:23:31 -05:00
this . okButton . Name = "okButton" ;
this . okButton . Size = new System . Drawing . Size ( 75 , 23 ) ;
this . okButton . TabIndex = 24 ;
this . okButton . Text = "&OK" ;
2016-02-07 16:13:48 -05:00
//
2016-09-05 12:12:57 -04:00
// flowLayoutPanel2
//
this . flowLayoutPanel2 . Location = new System . Drawing . Point ( 3 , 74 ) ;
this . flowLayoutPanel2 . Name = "flowLayoutPanel2" ;
this . flowLayoutPanel2 . Size = new System . Drawing . Size ( 64 , 1 ) ;
this . flowLayoutPanel2 . TabIndex = 27 ;
//
2016-02-07 16:13:48 -05:00
// frmAbout
//
this . AcceptButton = this . okButton ;
this . AutoScaleDimensions = new System . Drawing . SizeF ( 6F , 13F ) ;
this . AutoScaleMode = System . Windows . Forms . AutoScaleMode . Font ;
2016-02-08 23:23:31 -05:00
this . CancelButton = this . okButton ;
2016-02-14 18:36:08 -05:00
this . ClientSize = new System . Drawing . Size ( 347 , 112 ) ;
2016-02-07 16:13:48 -05:00
this . Controls . Add ( this . tableLayoutPanel ) ;
2016-02-08 23:23:31 -05:00
this . FormBorderStyle = System . Windows . Forms . FormBorderStyle . FixedSingle ;
2016-02-07 16:13:48 -05:00
this . MaximizeBox = false ;
this . MinimizeBox = false ;
this . Name = "frmAbout" ;
this . Padding = new System . Windows . Forms . Padding ( 5 ) ;
this . ShowInTaskbar = false ;
this . StartPosition = System . Windows . Forms . FormStartPosition . CenterParent ;
this . Text = "About - Mesen" ;
this . tableLayoutPanel . ResumeLayout ( false ) ;
( ( System . ComponentModel . ISupportInitialize ) ( this . logoPictureBox ) ) . EndInit ( ) ;
this . flowLayoutPanel1 . ResumeLayout ( false ) ;
this . flowLayoutPanel1 . PerformLayout ( ) ;
this . ResumeLayout ( false ) ;
}
#endregion
private System . Windows . Forms . TableLayoutPanel tableLayoutPanel ;
private System . Windows . Forms . PictureBox logoPictureBox ;
private System . Windows . Forms . Label labelProductName ;
private System . Windows . Forms . Label labelVersion ;
private System . Windows . Forms . Label labelCopyright ;
private System . Windows . Forms . Button okButton ;
private System . Windows . Forms . FlowLayoutPanel flowLayoutPanel1 ;
private System . Windows . Forms . Label lblWebsite ;
private System . Windows . Forms . Label lblLink ;
2016-02-14 18:36:08 -05:00
private System . Windows . Forms . FlowLayoutPanel flowLayoutPanel2 ;
2016-02-07 16:13:48 -05:00
}
}