-
Notifications
You must be signed in to change notification settings - Fork 0
/
Calender.Designer.cs
107 lines (101 loc) · 4.51 KB
/
Calender.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
namespace Appointment_Scheduler_Felix_Berinde
{
partial class Calender
{
/// <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.AllButton = new System.Windows.Forms.RadioButton();
this.monthlyButton = new System.Windows.Forms.RadioButton();
this.weeklyButton = new System.Windows.Forms.RadioButton();
this.dataGridView1 = new System.Windows.Forms.DataGridView();
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
this.SuspendLayout();
//
// AllButton
//
this.AllButton.AutoSize = true;
this.AllButton.Location = new System.Drawing.Point(830, 732);
this.AllButton.Name = "AllButton";
this.AllButton.Size = new System.Drawing.Size(36, 17);
this.AllButton.TabIndex = 0;
this.AllButton.TabStop = true;
this.AllButton.Text = "All";
this.AllButton.UseVisualStyleBackColor = true;
//
// monthlyButton
//
this.monthlyButton.AutoSize = true;
this.monthlyButton.Location = new System.Drawing.Point(481, 732);
this.monthlyButton.Name = "monthlyButton";
this.monthlyButton.Size = new System.Drawing.Size(62, 17);
this.monthlyButton.TabIndex = 1;
this.monthlyButton.TabStop = true;
this.monthlyButton.Text = "Monthly";
this.monthlyButton.UseVisualStyleBackColor = true;
//
// weeklyButton
//
this.weeklyButton.AutoSize = true;
this.weeklyButton.Location = new System.Drawing.Point(179, 732);
this.weeklyButton.Name = "weeklyButton";
this.weeklyButton.Size = new System.Drawing.Size(61, 17);
this.weeklyButton.TabIndex = 2;
this.weeklyButton.TabStop = true;
this.weeklyButton.Text = "Weekly";
this.weeklyButton.UseVisualStyleBackColor = true;
//
// dataGridView1
//
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridView1.Location = new System.Drawing.Point(12, 12);
this.dataGridView1.Name = "dataGridView1";
this.dataGridView1.Size = new System.Drawing.Size(1060, 678);
this.dataGridView1.TabIndex = 3;
//
// Calender
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1084, 761);
this.Controls.Add(this.dataGridView1);
this.Controls.Add(this.weeklyButton);
this.Controls.Add(this.monthlyButton);
this.Controls.Add(this.AllButton);
this.MaximumSize = new System.Drawing.Size(1100, 800);
this.MinimumSize = new System.Drawing.Size(1100, 800);
this.Name = "Calender";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Calender";
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.RadioButton AllButton;
private System.Windows.Forms.RadioButton monthlyButton;
private System.Windows.Forms.RadioButton weeklyButton;
private System.Windows.Forms.DataGridView dataGridView1;
}
}