| Line No. | Rev | Author | Line |
|---|---|---|---|
| 1 | 32 | kaklik | /********************************************************************* |
| 2 | * |
||
| 3 | * About Box for MPFS21 |
||
| 4 | * |
||
| 5 | ********************************************************************* |
||
| 6 | * FileName: AboutBox.cs |
||
| 7 | * Dependencies: Microsoft .NET Framework 2.0 |
||
| 8 | * Processor: x86 |
||
| 9 | * Complier: Microsoft Visual C# 2008 Express Edition |
||
| 10 | * Company: Microchip Technology, Inc. |
||
| 11 | * |
||
| 12 | * Software License Agreement |
||
| 13 | * |
||
| 14 | * This software is owned by Microchip Technology Inc. ("Microchip") |
||
| 15 | * and is supplied to you for use exclusively as described in the |
||
| 16 | * associated software agreement. This software is protected by |
||
| 17 | * software and other intellectual property laws. Any use in |
||
| 18 | * violation of the software license may subject the user to criminal |
||
| 19 | * sanctions as well as civil liability. Copyright 2008 Microchip |
||
| 20 | * Technology Inc. All rights reserved. |
||
| 21 | * |
||
| 22 | * |
||
| 23 | * THE SOFTWARE AND DOCUMENTATION ARE PROVIDED "AS IS" WITHOUT |
||
| 24 | * WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT |
||
| 25 | * LIMITATION, ANY WARRANTY OF MERCHANTABILITY, FITNESS FOR A |
||
| 26 | * PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT SHALL |
||
| 27 | * MICROCHIP BE LIABLE FOR ANY INCIDENTAL, SPECIAL, INDIRECT OR |
||
| 28 | * CONSEQUENTIAL DAMAGES, LOST PROFITS OR LOST DATA, COST OF |
||
| 29 | * PROCUREMENT OF SUBSTITUTE GOODS, TECHNOLOGY OR SERVICES, ANY CLAIMS |
||
| 30 | * BY THIRD PARTIES (INCLUDING BUT NOT LIMITED TO ANY DEFENSE |
||
| 31 | * THEREOF), ANY CLAIMS FOR INDEMNITY OR CONTRIBUTION, OR OTHER |
||
| 32 | * SIMILAR COSTS, WHETHER ASSERTED ON THE BASIS OF CONTRACT, TORT |
||
| 33 | * (INCLUDING NEGLIGENCE), BREACH OF WARRANTY, OR OTHERWISE. |
||
| 34 | * |
||
| 35 | * |
||
| 36 | * Author Date Comment |
||
| 37 | *~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
||
| 38 | * Elliott Wood 4/17/2008 Original |
||
| 39 | ********************************************************************/ |
||
| 40 | namespace MPFS21 |
||
| 41 | { |
||
| 42 | partial class AboutBox |
||
| 43 | { |
||
| 44 | /// <summary> |
||
| 45 | /// Required designer variable. |
||
| 46 | /// </summary> |
||
| 47 | private System.ComponentModel.IContainer components = null; |
||
| 48 | |||
| 49 | /// <summary> |
||
| 50 | /// Clean up any resources being used. |
||
| 51 | /// </summary> |
||
| 52 | protected override void Dispose(bool disposing) |
||
| 53 | { |
||
| 54 | if (disposing && (components != null)) |
||
| 55 | { |
||
| 56 | components.Dispose(); |
||
| 57 | } |
||
| 58 | base.Dispose(disposing); |
||
| 59 | } |
||
| 60 | |||
| 61 | #region Windows Form Designer generated code |
||
| 62 | |||
| 63 | /// <summary> |
||
| 64 | /// Required method for Designer support - do not modify |
||
| 65 | /// the contents of this method with the code editor. |
||
| 66 | /// </summary> |
||
| 67 | private void InitializeComponent() |
||
| 68 | { |
||
| 69 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AboutBox)); |
||
| 70 | this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel(); |
||
| 71 | this.logoPictureBox = new System.Windows.Forms.PictureBox(); |
||
| 72 | this.labelProductName = new System.Windows.Forms.Label(); |
||
| 73 | this.labelVersion = new System.Windows.Forms.Label(); |
||
| 74 | this.labelCopyright = new System.Windows.Forms.Label(); |
||
| 75 | this.labelCompanyName = new System.Windows.Forms.Label(); |
||
| 76 | this.textBoxDescription = new System.Windows.Forms.TextBox(); |
||
| 77 | this.okButton = new System.Windows.Forms.Button(); |
||
| 78 | this.tableLayoutPanel.SuspendLayout(); |
||
| 79 | ((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).BeginInit(); |
||
| 80 | this.SuspendLayout(); |
||
| 81 | // |
||
| 82 | // tableLayoutPanel |
||
| 83 | // |
||
| 84 | this.tableLayoutPanel.ColumnCount = 2; |
||
| 85 | this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 33F)); |
||
| 86 | this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 67F)); |
||
| 87 | this.tableLayoutPanel.Controls.Add(this.logoPictureBox, 0, 0); |
||
| 88 | this.tableLayoutPanel.Controls.Add(this.labelProductName, 1, 0); |
||
| 89 | this.tableLayoutPanel.Controls.Add(this.labelVersion, 1, 1); |
||
| 90 | this.tableLayoutPanel.Controls.Add(this.labelCopyright, 1, 2); |
||
| 91 | this.tableLayoutPanel.Controls.Add(this.labelCompanyName, 1, 3); |
||
| 92 | this.tableLayoutPanel.Controls.Add(this.textBoxDescription, 1, 4); |
||
| 93 | this.tableLayoutPanel.Controls.Add(this.okButton, 1, 5); |
||
| 94 | this.tableLayoutPanel.Dock = System.Windows.Forms.DockStyle.Fill; |
||
| 95 | this.tableLayoutPanel.Location = new System.Drawing.Point(9, 9); |
||
| 96 | this.tableLayoutPanel.Name = "tableLayoutPanel"; |
||
| 97 | this.tableLayoutPanel.RowCount = 6; |
||
| 98 | this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F)); |
||
| 99 | this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F)); |
||
| 100 | this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F)); |
||
| 101 | this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 10F)); |
||
| 102 | this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 44.24242F)); |
||
| 103 | this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 16.9697F)); |
||
| 104 | this.tableLayoutPanel.Size = new System.Drawing.Size(417, 165); |
||
| 105 | this.tableLayoutPanel.TabIndex = 0; |
||
| 106 | // |
||
| 107 | // logoPictureBox |
||
| 108 | // |
||
| 109 | this.logoPictureBox.Dock = System.Windows.Forms.DockStyle.Fill; |
||
| 110 | this.logoPictureBox.Image = ((System.Drawing.Image)(resources.GetObject("logoPictureBox.Image"))); |
||
| 111 | this.logoPictureBox.Location = new System.Drawing.Point(3, 3); |
||
| 112 | this.logoPictureBox.Name = "logoPictureBox"; |
||
| 113 | this.tableLayoutPanel.SetRowSpan(this.logoPictureBox, 6); |
||
| 114 | this.logoPictureBox.Size = new System.Drawing.Size(131, 159); |
||
| 115 | this.logoPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; |
||
| 116 | this.logoPictureBox.TabIndex = 12; |
||
| 117 | this.logoPictureBox.TabStop = false; |
||
| 118 | // |
||
| 119 | // labelProductName |
||
| 120 | // |
||
| 121 | this.labelProductName.Dock = System.Windows.Forms.DockStyle.Fill; |
||
| 122 | this.labelProductName.Location = new System.Drawing.Point(143, 0); |
||
| 123 | this.labelProductName.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0); |
||
| 124 | this.labelProductName.MaximumSize = new System.Drawing.Size(0, 17); |
||
| 125 | this.labelProductName.Name = "labelProductName"; |
||
| 126 | this.labelProductName.Size = new System.Drawing.Size(271, 16); |
||
| 127 | this.labelProductName.TabIndex = 19; |
||
| 128 | this.labelProductName.Text = "Product Name"; |
||
| 129 | this.labelProductName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; |
||
| 130 | // |
||
| 131 | // labelVersion |
||
| 132 | // |
||
| 133 | this.labelVersion.Dock = System.Windows.Forms.DockStyle.Fill; |
||
| 134 | this.labelVersion.Location = new System.Drawing.Point(143, 16); |
||
| 135 | this.labelVersion.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0); |
||
| 136 | this.labelVersion.MaximumSize = new System.Drawing.Size(0, 17); |
||
| 137 | this.labelVersion.Name = "labelVersion"; |
||
| 138 | this.labelVersion.Size = new System.Drawing.Size(271, 16); |
||
| 139 | this.labelVersion.TabIndex = 0; |
||
| 140 | this.labelVersion.Text = "Version"; |
||
| 141 | this.labelVersion.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; |
||
| 142 | // |
||
| 143 | // labelCopyright |
||
| 144 | // |
||
| 145 | this.labelCopyright.Dock = System.Windows.Forms.DockStyle.Fill; |
||
| 146 | this.labelCopyright.Location = new System.Drawing.Point(143, 32); |
||
| 147 | this.labelCopyright.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0); |
||
| 148 | this.labelCopyright.MaximumSize = new System.Drawing.Size(0, 17); |
||
| 149 | this.labelCopyright.Name = "labelCopyright"; |
||
| 150 | this.labelCopyright.Size = new System.Drawing.Size(271, 16); |
||
| 151 | this.labelCopyright.TabIndex = 21; |
||
| 152 | this.labelCopyright.Text = "Copyright"; |
||
| 153 | this.labelCopyright.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; |
||
| 154 | // |
||
| 155 | // labelCompanyName |
||
| 156 | // |
||
| 157 | this.labelCompanyName.Dock = System.Windows.Forms.DockStyle.Fill; |
||
| 158 | this.labelCompanyName.Location = new System.Drawing.Point(143, 48); |
||
| 159 | this.labelCompanyName.Margin = new System.Windows.Forms.Padding(6, 0, 3, 0); |
||
| 160 | this.labelCompanyName.MaximumSize = new System.Drawing.Size(0, 17); |
||
| 161 | this.labelCompanyName.Name = "labelCompanyName"; |
||
| 162 | this.labelCompanyName.Size = new System.Drawing.Size(271, 16); |
||
| 163 | this.labelCompanyName.TabIndex = 22; |
||
| 164 | this.labelCompanyName.Text = "Company Name"; |
||
| 165 | this.labelCompanyName.TextAlign = System.Drawing.ContentAlignment.MiddleLeft; |
||
| 166 | // |
||
| 167 | // textBoxDescription |
||
| 168 | // |
||
| 169 | this.textBoxDescription.Dock = System.Windows.Forms.DockStyle.Fill; |
||
| 170 | this.textBoxDescription.Location = new System.Drawing.Point(143, 67); |
||
| 171 | this.textBoxDescription.Margin = new System.Windows.Forms.Padding(6, 3, 3, 3); |
||
| 172 | this.textBoxDescription.Multiline = true; |
||
| 173 | this.textBoxDescription.Name = "textBoxDescription"; |
||
| 174 | this.textBoxDescription.ReadOnly = true; |
||
| 175 | this.textBoxDescription.ScrollBars = System.Windows.Forms.ScrollBars.Both; |
||
| 176 | this.textBoxDescription.Size = new System.Drawing.Size(271, 66); |
||
| 177 | this.textBoxDescription.TabIndex = 23; |
||
| 178 | this.textBoxDescription.TabStop = false; |
||
| 179 | this.textBoxDescription.Text = "Description"; |
||
| 180 | // |
||
| 181 | // okButton |
||
| 182 | // |
||
| 183 | this.okButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); |
||
| 184 | this.okButton.DialogResult = System.Windows.Forms.DialogResult.Cancel; |
||
| 185 | this.okButton.Location = new System.Drawing.Point(339, 139); |
||
| 186 | this.okButton.Name = "okButton"; |
||
| 187 | this.okButton.Size = new System.Drawing.Size(75, 23); |
||
| 188 | this.okButton.TabIndex = 24; |
||
| 189 | this.okButton.Text = "&OK"; |
||
| 190 | // |
||
| 191 | // AboutBox |
||
| 192 | // |
||
| 193 | this.AcceptButton = this.okButton; |
||
| 194 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); |
||
| 195 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; |
||
| 196 | this.ClientSize = new System.Drawing.Size(435, 183); |
||
| 197 | this.Controls.Add(this.tableLayoutPanel); |
||
| 198 | this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog; |
||
| 199 | this.MaximizeBox = false; |
||
| 200 | this.MinimizeBox = false; |
||
| 201 | this.Name = "AboutBox"; |
||
| 202 | this.Padding = new System.Windows.Forms.Padding(9); |
||
| 203 | this.ShowIcon = false; |
||
| 204 | this.ShowInTaskbar = false; |
||
| 205 | this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; |
||
| 206 | this.Text = "AboutBox"; |
||
| 207 | this.tableLayoutPanel.ResumeLayout(false); |
||
| 208 | this.tableLayoutPanel.PerformLayout(); |
||
| 209 | ((System.ComponentModel.ISupportInitialize)(this.logoPictureBox)).EndInit(); |
||
| 210 | this.ResumeLayout(false); |
||
| 211 | |||
| 212 | } |
||
| 213 | |||
| 214 | #endregion |
||
| 215 | |||
| 216 | private System.Windows.Forms.TableLayoutPanel tableLayoutPanel; |
||
| 217 | private System.Windows.Forms.Label labelProductName; |
||
| 218 | private System.Windows.Forms.Label labelVersion; |
||
| 219 | private System.Windows.Forms.Label labelCopyright; |
||
| 220 | private System.Windows.Forms.Label labelCompanyName; |
||
| 221 | private System.Windows.Forms.TextBox textBoxDescription; |
||
| 222 | private System.Windows.Forms.Button okButton; |
||
| 223 | private System.Windows.Forms.PictureBox logoPictureBox; |
||
| 224 | } |
||
| 225 | } |
Powered by WebSVN v2.8.3