-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFloatingWindow.designer.cs
More file actions
58 lines (52 loc) · 2.4 KB
/
FloatingWindow.designer.cs
File metadata and controls
58 lines (52 loc) · 2.4 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
namespace FloatingToolStripLibrary
{
partial class FloatingWindow
{
/// <summary>
/// 必要なデザイナ変数です。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 使用中のリソースをすべてクリーンアップします。
/// </summary>
/// <param name="disposing">マネージ リソースが破棄される場合 true、破棄されない場合は false です。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region コンポーネント デザイナで生成されたコード
/// <summary>
/// デザイナ サポートに必要なメソッドです。このメソッドの内容を
/// コード エディタで変更しないでください。
/// </summary>
private void InitializeComponent()
{
this.SuspendLayout();
//
// FloatingWindow
//
this.ClientSize = new System.Drawing.Size(284, 45);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "FloatingWindow";
this.Padding = new System.Windows.Forms.Padding(0, 20, 0, 0);
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
this.MouseUp += new System.Windows.Forms.MouseEventHandler(this.FloatingToolStrip_MouseUp);
this.Paint += new System.Windows.Forms.PaintEventHandler(this.FloatingToolStrip_Paint);
this.MouseClick += new System.Windows.Forms.MouseEventHandler(this.FloatingWindow_MouseClick);
this.Shown += new System.EventHandler(this.FloatingWindow_Shown);
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.FloatingWindow_FormClosed);
this.MouseLeave += new System.EventHandler(this.FloatingWindow_MouseLeave);
this.Move += new System.EventHandler(this.FloatingToolStrip_Move);
this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.FloatingWindow_MouseMove);
this.ResumeLayout(false);
}
#endregion
}
}