diff options
| author | lempamo <[email protected]> | 2017-10-23 21:14:20 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2017-10-23 21:14:20 -0500 |
| commit | aff052b475abc5d4035369a85fa471f62cad021b (patch) | |
| tree | 70ccdd91154536e8f50828569f9faa3d61c70748 /Histacom2/OS/Win98/Win98Apps/Win98Welcome.Designer.cs | |
| parent | 680e4930a893fc144a169d267878eb9407dd656f (diff) | |
| parent | f6da3b0cfd6c63c5d1d07df8b7e41f499de645fa (diff) | |
| download | histacom2-aff052b475abc5d4035369a85fa471f62cad021b.tar.gz histacom2-aff052b475abc5d4035369a85fa471f62cad021b.tar.bz2 histacom2-aff052b475abc5d4035369a85fa471f62cad021b.zip | |
Merge pull request #167 from jtsshieh/master
Added Welcome Screen and fixed another theme bug
Diffstat (limited to 'Histacom2/OS/Win98/Win98Apps/Win98Welcome.Designer.cs')
| -rw-r--r-- | Histacom2/OS/Win98/Win98Apps/Win98Welcome.Designer.cs | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/Histacom2/OS/Win98/Win98Apps/Win98Welcome.Designer.cs b/Histacom2/OS/Win98/Win98Apps/Win98Welcome.Designer.cs new file mode 100644 index 0000000..4d6671a --- /dev/null +++ b/Histacom2/OS/Win98/Win98Apps/Win98Welcome.Designer.cs @@ -0,0 +1,68 @@ +namespace Histacom2.OS.Win98.Win98Apps +{ + partial class Win98Welcome + { + /// <summary> + /// Required designer variable. + /// </summary> + private System.ComponentModel.IContainer components = null; + + /// <summary> + /// Clean up any resources being used. + /// </summary> + /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Component 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() + { + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Win98Welcome)); + this.classicButton1 = new Histacom2.Engine.UI.ClassicButton(); + this.SuspendLayout(); + // + // classicButton1 + // + this.classicButton1.AdaptBackColorWithTheme = true; + this.classicButton1.AdaptFontWithTheme = true; + this.classicButton1.AdaptForeColorWithTheme = true; + this.classicButton1.BackColor = System.Drawing.Color.Silver; + this.classicButton1.DialogResult = System.Windows.Forms.DialogResult.None; + this.classicButton1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F); + this.classicButton1.ForeColor = System.Drawing.Color.Black; + this.classicButton1.Location = new System.Drawing.Point(401, 304); + this.classicButton1.Name = "classicButton1"; + this.classicButton1.Size = new System.Drawing.Size(79, 23); + this.classicButton1.TabIndex = 0; + this.classicButton1.Text = "Close"; + this.classicButton1.Click += new System.EventHandler(this.classicButton1_Click); + // + // Win98Welcome + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage"))); + this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.Controls.Add(this.classicButton1); + this.Name = "Win98Welcome"; + this.Size = new System.Drawing.Size(483, 327); + this.ResumeLayout(false); + + } + + #endregion + + private Engine.UI.ClassicButton classicButton1; + } +} |
