-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainForm.Designer.cs
116 lines (111 loc) · 4.76 KB
/
MainForm.Designer.cs
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
111
112
113
114
115
116
namespace LessonPlanner
{
partial class MainForm
{
/// <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()
{
daysTree = new TreeView();
monthPicker = new ComboBox();
tasksGroupBox = new GroupBox();
saveAllTasksButton = new Button();
addTaskButton = new Button();
tasksGroupBox.SuspendLayout();
SuspendLayout();
//
// daysTree
//
daysTree.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left;
daysTree.Location = new Point(12, 41);
daysTree.Name = "daysTree";
daysTree.PathSeparator = "/";
daysTree.Size = new Size(184, 657);
daysTree.TabIndex = 0;
daysTree.AfterSelect += daysTree_AfterSelect;
//
// monthPicker
//
monthPicker.FormattingEnabled = true;
monthPicker.Items.AddRange(new object[] { "1. Январь (Січень)", "2. Февраль (Лютий)", "3. Март (Березень)", "4. Апрель (Квітень)", "5. Май (Травень)", "6. Июнь (Червень)", "7. Июль (Липень)", "8. Август (Серпень)", "9. Сентябрь (Вересень)", "10. Октябрь (Жовтень)", "11. Ноябрь (Листопад)", "12. Декабрь (Грудень)" });
monthPicker.Location = new Point(12, 12);
monthPicker.Name = "monthPicker";
monthPicker.Size = new Size(184, 23);
monthPicker.TabIndex = 1;
monthPicker.SelectedIndexChanged += monthPicker_SelectedIndexChanged;
//
// tasksGroupBox
//
tasksGroupBox.Anchor = AnchorStyles.Top | AnchorStyles.Bottom | AnchorStyles.Left | AnchorStyles.Right;
tasksGroupBox.Controls.Add(saveAllTasksButton);
tasksGroupBox.Controls.Add(addTaskButton);
tasksGroupBox.Location = new Point(202, 12);
tasksGroupBox.Name = "tasksGroupBox";
tasksGroupBox.Size = new Size(382, 686);
tasksGroupBox.TabIndex = 2;
tasksGroupBox.TabStop = false;
tasksGroupBox.Text = "Задания:";
//
// saveAllTasksButton
//
saveAllTasksButton.Location = new Point(6, 657);
saveAllTasksButton.Name = "saveAllTasksButton";
saveAllTasksButton.Size = new Size(370, 23);
saveAllTasksButton.TabIndex = 1;
saveAllTasksButton.Text = "Сохранить все";
saveAllTasksButton.UseVisualStyleBackColor = true;
saveAllTasksButton.Click += saveAllTasksButton_Click;
//
// addTaskButton
//
addTaskButton.Location = new Point(6, 630);
addTaskButton.Name = "addTaskButton";
addTaskButton.Size = new Size(370, 23);
addTaskButton.TabIndex = 0;
addTaskButton.Text = "Добавить задание";
addTaskButton.UseVisualStyleBackColor = true;
addTaskButton.Click += addTaskButton_Click;
//
// MainForm
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
ClientSize = new Size(596, 710);
Controls.Add(tasksGroupBox);
Controls.Add(daysTree);
Controls.Add(monthPicker);
MinimumSize = new Size(612, 321);
Name = "MainForm";
StartPosition = FormStartPosition.CenterScreen;
Text = "Планировщик занятий";
Load += mainForm_Load;
tasksGroupBox.ResumeLayout(false);
ResumeLayout(false);
}
#endregion
private TreeView daysTree;
private ComboBox monthPicker;
private GroupBox tasksGroupBox;
private Button addTaskButton;
private Button saveAllTasksButton;
}
}