-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTaskBoard.Designer.cs
More file actions
74 lines (67 loc) · 3.15 KB
/
TaskBoard.Designer.cs
File metadata and controls
74 lines (67 loc) · 3.15 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 TaskBoardWf
{
partial class TaskBoard
{
/// <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 Windows Form 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.RubberBandBox = new System.Windows.Forms.PictureBox();
((System.ComponentModel.ISupportInitialize)(this.RubberBandBox)).BeginInit();
this.SuspendLayout();
//
// RubberBandBox
//
this.RubberBandBox.BackColor = System.Drawing.Color.Transparent;
this.RubberBandBox.Location = new System.Drawing.Point(10, 10);
this.RubberBandBox.Name = "RubberBandBox";
this.RubberBandBox.Size = new System.Drawing.Size(10, 10);
this.RubberBandBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
this.RubberBandBox.TabIndex = 0;
this.RubberBandBox.TabStop = false;
//
// TaskBoard
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
this.ClientSize = new System.Drawing.Size(922, 595);
this.Controls.Add(this.RubberBandBox);
this.KeyPreview = true;
this.Name = "TaskBoard";
this.Text = "TaskBoard";
this.Activated += new System.EventHandler(this.TaskBoard_Activated);
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.TaskBoard_FormClosing);
this.Load += new System.EventHandler(this.TaskBoard_Load);
this.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TaskBoard_KeyDown);
this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.TaskBoard_MouseDown);
this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.TaskBoard_MouseMove);
this.MouseUp += new System.Windows.Forms.MouseEventHandler(this.TaskBoard_MouseUp);
this.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.TaskBoard_PreviewKeyDown);
((System.ComponentModel.ISupportInitialize)(this.RubberBandBox)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.PictureBox RubberBandBox;
private TaskBoardWf.TaskUserControl taskUserControl1;
}
}