aboutsummaryrefslogtreecommitdiff
path: root/Histacom2/OS/Win95/Windows95TaskbarItem.Designer.cs
diff options
context:
space:
mode:
authorMichael Webb <[email protected]>2019-04-08 19:12:48 -0500
committerGitHub <[email protected]>2019-04-08 19:12:48 -0500
commit84ef46952f11ed3c17e16297264ab84ac4fbbc1b (patch)
tree6c1443e8e9d4cb28f8e4599e79cdc52641ff4cd7 /Histacom2/OS/Win95/Windows95TaskbarItem.Designer.cs
parent9d3fa715e583b668f2ffd3754886b343c5440032 (diff)
parent86fc6b56d9285975d915646bb3f01b5c4c131caa (diff)
downloadhistacom2-net-core.tar.gz
histacom2-net-core.tar.bz2
histacom2-net-core.zip
Merge pull request #7 from reflectronic/netcorenet-core
Port to .NET Core
Diffstat (limited to 'Histacom2/OS/Win95/Windows95TaskbarItem.Designer.cs')
-rw-r--r--Histacom2/OS/Win95/Windows95TaskbarItem.Designer.cs95
1 files changed, 95 insertions, 0 deletions
diff --git a/Histacom2/OS/Win95/Windows95TaskbarItem.Designer.cs b/Histacom2/OS/Win95/Windows95TaskbarItem.Designer.cs
new file mode 100644
index 0000000..3df7a69
--- /dev/null
+++ b/Histacom2/OS/Win95/Windows95TaskbarItem.Designer.cs
@@ -0,0 +1,95 @@
+namespace Histacom2.OS.Win95
+{
+ partial class Windows95TaskbarItem
+ {
+ /// <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(Windows95TaskbarItem));
+ this.progName = new System.Windows.Forms.Label();
+ this.progPic = new System.Windows.Forms.PictureBox();
+ this.panel1 = new System.Windows.Forms.Panel();
+ ((System.ComponentModel.ISupportInitialize)(this.progPic)).BeginInit();
+ this.panel1.SuspendLayout();
+ this.SuspendLayout();
+ //
+ // progName
+ //
+ this.progName.AutoSize = true;
+ this.progName.BackColor = System.Drawing.Color.Transparent;
+ this.progName.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F);
+ this.progName.Location = new System.Drawing.Point(21, 2);
+ this.progName.Name = "progName";
+ this.progName.Size = new System.Drawing.Size(35, 13);
+ this.progName.TabIndex = 1;
+ this.progName.Text = "label1";
+ this.progName.Click += new System.EventHandler(this.Win95TaskBarItem_Click);
+ //
+ // progPic
+ //
+ this.progPic.BackColor = System.Drawing.Color.Transparent;
+ this.progPic.Location = new System.Drawing.Point(4, 3);
+ this.progPic.Name = "progPic";
+ this.progPic.Size = new System.Drawing.Size(16, 16);
+ this.progPic.TabIndex = 0;
+ this.progPic.TabStop = false;
+ this.progPic.Click += new System.EventHandler(this.Win95TaskBarItem_Click);
+ //
+ // panel1
+ //
+ this.panel1.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("panel1.BackgroundImage")));
+ this.panel1.Controls.Add(this.progName);
+ this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
+ this.panel1.Location = new System.Drawing.Point(0, 0);
+ this.panel1.Name = "panel1";
+ this.panel1.Size = new System.Drawing.Size(160, 22);
+ this.panel1.TabIndex = 2;
+ this.panel1.Paint += new System.Windows.Forms.PaintEventHandler(this.panel1_Paint);
+ //
+ // Win95TaskBarItem
+ //
+ this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
+ this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+ this.Controls.Add(this.progPic);
+ this.Controls.Add(this.panel1);
+ this.Name = "Win95TaskBarItem";
+ this.Size = new System.Drawing.Size(160, 22);
+ this.Load += new System.EventHandler(this.Win95TaskBarItem_Load);
+ this.Click += new System.EventHandler(this.Win95TaskBarItem_Click);
+ ((System.ComponentModel.ISupportInitialize)(this.progPic)).EndInit();
+ this.panel1.ResumeLayout(false);
+ this.panel1.PerformLayout();
+ this.ResumeLayout(false);
+
+ }
+
+ #endregion
+
+ private System.Windows.Forms.PictureBox progPic;
+ private System.Windows.Forms.Label progName;
+ private System.Windows.Forms.Panel panel1;
+ }
+}