forked from ChineduOpara/KCS.Common.Windows
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCollapsiblePanel.Designer.cs
More file actions
109 lines (103 loc) · 5.48 KB
/
CollapsiblePanel.Designer.cs
File metadata and controls
109 lines (103 loc) · 5.48 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
namespace OVT.CustomControls
{
partial class CollapsiblePanel
{
/// <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();
this.pnlHeader = new System.Windows.Forms.Panel();
this.pictureBoxExpandCollapse = new System.Windows.Forms.PictureBox();
this.pictureBoxImage = new System.Windows.Forms.PictureBox();
this.timerAnimation = new System.Windows.Forms.Timer(this.components);
this.toolTip = new System.Windows.Forms.ToolTip(this.components);
this.pnlHeader.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.pictureBoxExpandCollapse)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBoxImage)).BeginInit();
this.SuspendLayout();
//
// pnlHeader
//
this.pnlHeader.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.pnlHeader.BackColor = System.Drawing.Color.Transparent;
this.pnlHeader.Controls.Add(this.pictureBoxExpandCollapse);
this.pnlHeader.Controls.Add(this.pictureBoxImage);
this.pnlHeader.Location = new System.Drawing.Point(0, 0);
this.pnlHeader.Margin = new System.Windows.Forms.Padding(0);
this.pnlHeader.Name = "pnlHeader";
this.pnlHeader.Size = new System.Drawing.Size(249, 30);
this.pnlHeader.TabIndex = 0;
this.pnlHeader.MouseLeave += new System.EventHandler(this.pnlHeader_MouseLeave);
this.pnlHeader.MouseHover += new System.EventHandler(this.pnlHeader_MouseHover);
//
// pictureBoxExpandCollapse
//
this.pictureBoxExpandCollapse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.pictureBoxExpandCollapse.BackColor = System.Drawing.Color.Transparent;
this.pictureBoxExpandCollapse.Image = global::OVT.CustomControls.Properties.Resources.collapse;
this.pictureBoxExpandCollapse.Location = new System.Drawing.Point(224, 5);
this.pictureBoxExpandCollapse.Name = "pictureBoxExpandCollapse";
this.pictureBoxExpandCollapse.Size = new System.Drawing.Size(20, 20);
this.pictureBoxExpandCollapse.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
this.pictureBoxExpandCollapse.TabIndex = 2;
this.pictureBoxExpandCollapse.TabStop = false;
this.pictureBoxExpandCollapse.MouseLeave += new System.EventHandler(this.pictureBoxExpandCollapse_MouseLeave);
this.pictureBoxExpandCollapse.MouseMove += new System.Windows.Forms.MouseEventHandler(this.pictureBoxExpandCollapse_MouseMove);
this.pictureBoxExpandCollapse.Click += new System.EventHandler(this.pictureBoxExpandCollapse_Click);
//
// pictureBoxImage
//
this.pictureBoxImage.BackColor = System.Drawing.Color.Transparent;
this.pictureBoxImage.Location = new System.Drawing.Point(0, 0);
this.pictureBoxImage.Name = "pictureBoxImage";
this.pictureBoxImage.Size = new System.Drawing.Size(30, 30);
this.pictureBoxImage.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
this.pictureBoxImage.TabIndex = 1;
this.pictureBoxImage.TabStop = false;
this.pictureBoxImage.Visible = false;
//
// timerAnimation
//
this.timerAnimation.Interval = 50;
this.timerAnimation.Tick += new System.EventHandler(this.timerAnimation_Tick);
//
// CollapsiblePanel
//
this.BackColor = System.Drawing.Color.Transparent;
this.Controls.Add(this.pnlHeader);
this.Name = "CollapsiblePanel";
this.Size = new System.Drawing.Size(250, 150);
this.pnlHeader.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.pictureBoxExpandCollapse)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.pictureBoxImage)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Panel pnlHeader;
private System.Windows.Forms.PictureBox pictureBoxExpandCollapse;
private System.Windows.Forms.PictureBox pictureBoxImage;
private System.Windows.Forms.Timer timerAnimation;
private System.Windows.Forms.ToolTip toolTip;
}
}