-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathButton.Designer.cs
More file actions
73 lines (67 loc) · 3 KB
/
Copy pathButton.Designer.cs
File metadata and controls
73 lines (67 loc) · 3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
namespace JoystickButtonTest
{
partial class Button
{
/// <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()
{
this.components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Button));
this.btnStatus = new System.Windows.Forms.Label();
this.ilButton = new System.Windows.Forms.ImageList(this.components);
this.SuspendLayout();
//
// btnStatus
//
this.btnStatus.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
this.btnStatus.ForeColor = System.Drawing.SystemColors.Info;
this.btnStatus.ImageKey = "button_off.png";
this.btnStatus.ImageList = this.ilButton;
this.btnStatus.Location = new System.Drawing.Point(0, 0);
this.btnStatus.Name = "btnStatus";
this.btnStatus.Size = new System.Drawing.Size(32, 32);
this.btnStatus.TabIndex = 6;
this.btnStatus.Text = "###";
this.btnStatus.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
//
// ilButton
//
this.ilButton.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("ilButton.ImageStream")));
this.ilButton.TransparentColor = System.Drawing.Color.Transparent;
this.ilButton.Images.SetKeyName(0, "button_off.png");
this.ilButton.Images.SetKeyName(1, "button_on.png");
//
// Button
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.Controls.Add(this.btnStatus);
this.Name = "Button";
this.Size = new System.Drawing.Size(32, 32);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Label btnStatus;
private System.Windows.Forms.ImageList ilButton;
}
}