C#/.NET


C#/C++ のソースを HTML に変換する ツール CSharpToHTML


AboutDialogBox.cs

namespace CSharpToHTML
{
   /// <summary>AboutDialogBox</summary>
   public class AboutDialogBox : System.Windows.Forms.Form
   {
       #region デザイナ変数

       private System.Windows.Forms.PictureBox iconPictureBox;
       private System.Windows.Forms.Label applicationNameLabel;
       private System.Windows.Forms.Label versionLabel;
       private System.Windows.Forms.Label companyNameLabel;
       private System.Windows.Forms.Button okButton;
       /// <summary>必要なデザイナ変数</summary>
       private System.ComponentModel.Container components = null;

       #endregion // デザイナ変数

       #region Constructor

       public AboutDialogBox()
       {
           // Windows フォーム デザイナ サポートに必要
           InitializeComponent();
       }

       #endregion // Constructor

       #region Override

       /// <summary>使用されているリソースに後処理を実行</summary>
       protected override void Dispose(bool disposing)
       {
           if (disposing)
           {
               if (components != null)
               {
                   components.Dispose();
               }
           }
           base.Dispose(disposing);
       }

       #endregion // Override

       #region Windows Form Designer generated code

       /// <summary>デザイナ サポートに必要なメソッド</summary>
       private void InitializeComponent()
       {
           System.Resources.ResourceManager resources = new System.Resources.ResourceManager(typeof(AboutDialogBox));
           this.iconPictureBox = new System.Windows.Forms.PictureBox();
           this.applicationNameLabel = new System.Windows.Forms.Label();
           this.companyNameLabel = new System.Windows.Forms.Label();
           this.versionLabel = new System.Windows.Forms.Label();
           this.okButton = new System.Windows.Forms.Button();
           this.SuspendLayout();
           //
           // iconPictureBox
           //
           this.iconPictureBox.Image = ((System.Drawing.Image)(resources.GetObject("iconPictureBox.Image")));
           this.iconPictureBox.Location = new System.Drawing.Point(16, 8);
           this.iconPictureBox.Name = "iconPictureBox";
           this.iconPictureBox.Size = new System.Drawing.Size(16, 16);
           this.iconPictureBox.TabIndex = 0;
           this.iconPictureBox.TabStop = false;
           //
           // applicationNameLabel
           //
           this.applicationNameLabel.Location = new System.Drawing.Point(56, 8);
           this.applicationNameLabel.Name = "applicationNameLabel";
           this.applicationNameLabel.TabIndex = 1;
           this.applicationNameLabel.Text = "CSharpToHTML";
           //
           // companyNameLabel
           //
           this.companyNameLabel.Location = new System.Drawing.Point(56, 32);
           this.companyNameLabel.Name = "companyNameLabel";
           this.companyNameLabel.Size = new System.Drawing.Size(152, 23);
           this.companyNameLabel.TabIndex = 3;
           this.companyNameLabel.Text = "Sho\'s Software";
           //
           // versionLabel
           //
           this.versionLabel.Location = new System.Drawing.Point(176, 8);
           this.versionLabel.Name = "versionLabel";
           this.versionLabel.TabIndex = 2;
           this.versionLabel.Text = "Version 1.02";
           //
           // okButton
           //
           this.okButton.DialogResult = System.Windows.Forms.DialogResult.OK;
           this.okButton.Location = new System.Drawing.Point(280, 32);
           this.okButton.Name = "okButton";
           this.okButton.TabIndex = 4;
           this.okButton.Text = "閉じる";
           //
           // AboutDialogBox
           //
           this.AcceptButton = this.okButton;
           this.AutoScaleBaseSize = new System.Drawing.Size(5, 12);
           this.ClientSize = new System.Drawing.Size(362, 63);
           this.ControlBox = false;
           this.Controls.Add(this.okButton);
           this.Controls.Add(this.versionLabel);
           this.Controls.Add(this.companyNameLabel);
           this.Controls.Add(this.applicationNameLabel);
           this.Controls.Add(this.iconPictureBox);
           this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
           this.MaximizeBox = false;
           this.MinimizeBox = false;
           this.Name = "AboutDialogBox";
           this.ShowInTaskbar = false;
           this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
           this.Text = "バージョン情報";
           this.ResumeLayout(false);

       }

       #endregion
   }
}


C#/C++ のソースを HTML に変換する ツール CSharpToHTML