Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- namespace First_Medium
- {
- partial class Form1
- {
- /// <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.monthCalendar1 = new System.Windows.Forms.MonthCalendar();
- this.outputTextBox = new System.Windows.Forms.TextBox();
- this.todayTextBox = new System.Windows.Forms.TextBox();
- this.addButton = new System.Windows.Forms.Button();
- this.editButton = new System.Windows.Forms.Button();
- this.removeButton = new System.Windows.Forms.Button();
- this.showAllButton = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // monthCalendar1
- //
- this.monthCalendar1.CalendarDimensions = new System.Drawing.Size(3, 2);
- this.monthCalendar1.Location = new System.Drawing.Point(2, 0);
- this.monthCalendar1.Name = "monthCalendar1";
- this.monthCalendar1.TabIndex = 0;
- this.monthCalendar1.DateChanged += new System.Windows.Forms.DateRangeEventHandler(this.monthCalendar1_DateChanged);
- //
- // outputTextBox
- //
- this.outputTextBox.Location = new System.Drawing.Point(472, 0);
- this.outputTextBox.Multiline = true;
- this.outputTextBox.Name = "outputTextBox";
- this.outputTextBox.ReadOnly = true;
- this.outputTextBox.Size = new System.Drawing.Size(237, 311);
- this.outputTextBox.TabIndex = 1;
- //
- // todayTextBox
- //
- this.todayTextBox.Location = new System.Drawing.Point(12, 323);
- this.todayTextBox.Name = "todayTextBox";
- this.todayTextBox.ReadOnly = true;
- this.todayTextBox.Size = new System.Drawing.Size(220, 20);
- this.todayTextBox.TabIndex = 2;
- //
- // addButton
- //
- this.addButton.Location = new System.Drawing.Point(238, 321);
- this.addButton.Name = "addButton";
- this.addButton.Size = new System.Drawing.Size(110, 23);
- this.addButton.TabIndex = 3;
- this.addButton.Text = "Add Event";
- this.addButton.UseVisualStyleBackColor = true;
- this.addButton.Click += new System.EventHandler(this.addButton_Click);
- //
- // editButton
- //
- this.editButton.Location = new System.Drawing.Point(354, 321);
- this.editButton.Name = "editButton";
- this.editButton.Size = new System.Drawing.Size(110, 23);
- this.editButton.TabIndex = 4;
- this.editButton.Text = "Edit Event";
- this.editButton.UseVisualStyleBackColor = true;
- this.editButton.Click += new System.EventHandler(this.editButton_Click);
- //
- // removeButton
- //
- this.removeButton.Location = new System.Drawing.Point(470, 321);
- this.removeButton.Name = "removeButton";
- this.removeButton.Size = new System.Drawing.Size(110, 23);
- this.removeButton.TabIndex = 5;
- this.removeButton.Text = "Remove Event";
- this.removeButton.UseVisualStyleBackColor = true;
- this.removeButton.Click += new System.EventHandler(this.removeButton_Click);
- //
- // showAllButton
- //
- this.showAllButton.Location = new System.Drawing.Point(586, 321);
- this.showAllButton.Name = "showAllButton";
- this.showAllButton.Size = new System.Drawing.Size(110, 23);
- this.showAllButton.TabIndex = 6;
- this.showAllButton.Text = "Show All Events";
- this.showAllButton.UseVisualStyleBackColor = true;
- this.showAllButton.Click += new System.EventHandler(this.showAllButton_Click);
- //
- // Form1
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(727, 364);
- this.Controls.Add(this.showAllButton);
- this.Controls.Add(this.removeButton);
- this.Controls.Add(this.editButton);
- this.Controls.Add(this.addButton);
- this.Controls.Add(this.todayTextBox);
- this.Controls.Add(this.outputTextBox);
- this.Controls.Add(this.monthCalendar1);
- this.Name = "Form1";
- this.Text = "Reddit";
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.MonthCalendar monthCalendar1;
- private System.Windows.Forms.TextBox outputTextBox;
- private System.Windows.Forms.TextBox todayTextBox;
- private System.Windows.Forms.Button addButton;
- private System.Windows.Forms.Button editButton;
- private System.Windows.Forms.Button removeButton;
- private System.Windows.Forms.Button showAllButton;
- }
- partial class EventSetter
- {
- /// <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.dateTimePicker = new System.Windows.Forms.DateTimePicker();
- this.nameTextBox = new System.Windows.Forms.TextBox();
- this.descriptionTextBox = new System.Windows.Forms.TextBox();
- this.okButton = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // dateTimePicker
- //
- this.dateTimePicker.Location = new System.Drawing.Point(12, 12);
- this.dateTimePicker.Name = "dateTimePicker";
- this.dateTimePicker.Size = new System.Drawing.Size(200, 20);
- this.dateTimePicker.TabIndex = 0;
- //
- // nameTextBox
- //
- this.nameTextBox.Location = new System.Drawing.Point(12, 38);
- this.nameTextBox.Name = "nameTextBox";
- this.nameTextBox.Size = new System.Drawing.Size(100, 20);
- this.nameTextBox.TabIndex = 1;
- //
- // descriptionTextBox
- //
- this.descriptionTextBox.Location = new System.Drawing.Point(12, 64);
- this.descriptionTextBox.Multiline = true;
- this.descriptionTextBox.Name = "descriptionTextBox";
- this.descriptionTextBox.Size = new System.Drawing.Size(214, 91);
- this.descriptionTextBox.TabIndex = 2;
- //
- // okButton
- //
- this.okButton.Location = new System.Drawing.Point(151, 161);
- this.okButton.Name = "okButton";
- this.okButton.Size = new System.Drawing.Size(75, 23);
- this.okButton.TabIndex = 3;
- this.okButton.Text = "OK";
- this.okButton.UseVisualStyleBackColor = true;
- this.okButton.Click += new System.EventHandler(this.okButton_Click);
- //
- // EventSetter
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(230, 188);
- this.Controls.Add(this.okButton);
- this.Controls.Add(this.descriptionTextBox);
- this.Controls.Add(this.nameTextBox);
- this.Controls.Add(this.dateTimePicker);
- this.Name = "EventSetter";
- this.Text = "EventSetter";
- this.ResumeLayout(false);
- this.PerformLayout();
- }
- #endregion
- private System.Windows.Forms.DateTimePicker dateTimePicker;
- private System.Windows.Forms.TextBox nameTextBox;
- private System.Windows.Forms.TextBox descriptionTextBox;
- private System.Windows.Forms.Button okButton;
- }
- partial class EventChooser
- {
- /// <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.comboBox = new System.Windows.Forms.ComboBox();
- this.okButton = new System.Windows.Forms.Button();
- this.SuspendLayout();
- //
- // comboBox
- //
- this.comboBox.FormattingEnabled = true;
- this.comboBox.Location = new System.Drawing.Point(12, 12);
- this.comboBox.Name = "comboBox";
- this.comboBox.Size = new System.Drawing.Size(242, 21);
- this.comboBox.TabIndex = 0;
- //
- // okButton
- //
- this.okButton.Location = new System.Drawing.Point(179, 45);
- this.okButton.Name = "okButton";
- this.okButton.Size = new System.Drawing.Size(75, 23);
- this.okButton.TabIndex = 1;
- this.okButton.Text = "OK";
- this.okButton.UseVisualStyleBackColor = true;
- this.okButton.Click += new System.EventHandler(this.okButton_Click);
- //
- // EventChooser
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
- this.ClientSize = new System.Drawing.Size(266, 80);
- this.Controls.Add(this.okButton);
- this.Controls.Add(this.comboBox);
- this.Name = "EventChooser";
- this.Text = "EventChooser";
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.ComboBox comboBox;
- private System.Windows.Forms.Button okButton;
- }
- }
Add Comment
Please, Sign In to add comment