-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSyncInterface.Designer.cs
More file actions
110 lines (106 loc) · 3.99 KB
/
SyncInterface.Designer.cs
File metadata and controls
110 lines (106 loc) · 3.99 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
110
namespace DesktopApplication {
partial class DataCopyTool {
/// <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() {
dynamicPanel = new FlowLayoutPanel();
addRow = new Button();
SaveButton = new Button();
LoadButton = new Button();
ClearButton = new Button();
SuspendLayout();
//
// dynamicPanel
//
dynamicPanel.AutoScroll = true;
dynamicPanel.BorderStyle = BorderStyle.FixedSingle;
dynamicPanel.Location = new Point(22, 26);
dynamicPanel.Margin = new Padding(6, 6, 6, 6);
dynamicPanel.Name = "dynamicPanel";
dynamicPanel.Size = new Size(1148, 685);
dynamicPanel.TabIndex = 7;
//
// addRow
//
addRow.Location = new Point(323, 725);
addRow.Margin = new Padding(6, 6, 6, 6);
addRow.Name = "addRow";
addRow.Size = new Size(139, 49);
addRow.TabIndex = 8;
addRow.Text = "Add Task";
addRow.UseVisualStyleBackColor = true;
addRow.Click += addRow_Click;
//
// SaveButton
//
SaveButton.Location = new Point(22, 725);
SaveButton.Margin = new Padding(6, 6, 6, 6);
SaveButton.Name = "SaveButton";
SaveButton.Size = new Size(139, 49);
SaveButton.TabIndex = 11;
SaveButton.Text = "Save";
SaveButton.UseVisualStyleBackColor = true;
SaveButton.Click += SaveButton_Click;
//
// LoadButton
//
LoadButton.Location = new Point(173, 725);
LoadButton.Margin = new Padding(6, 6, 6, 6);
LoadButton.Name = "LoadButton";
LoadButton.Size = new Size(139, 49);
LoadButton.TabIndex = 13;
LoadButton.Text = "Load";
LoadButton.UseVisualStyleBackColor = true;
LoadButton.Click += LoadButton_Click;
//
// ClearButton
//
ClearButton.Location = new Point(1031, 725);
ClearButton.Margin = new Padding(6, 6, 6, 6);
ClearButton.Name = "ClearButton";
ClearButton.Size = new Size(139, 49);
ClearButton.TabIndex = 14;
ClearButton.Text = "Clear";
ClearButton.UseVisualStyleBackColor = true;
ClearButton.Click += ClearButton_Click;
//
// DataCopyTool
//
AutoScaleDimensions = new SizeF(13F, 32F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(1185, 802);
Controls.Add(ClearButton);
Controls.Add(LoadButton);
Controls.Add(SaveButton);
Controls.Add(addRow);
Controls.Add(dynamicPanel);
Margin = new Padding(6, 6, 6, 6);
Name = "DataCopyTool";
Text = "Parallel Data copy";
ResumeLayout(false);
}
#endregion
private FlowLayoutPanel dynamicPanel;
private Button addRow;
private Button SaveButton;
private Button LoadButton;
private Button ClearButton;
}
}