Guest User

Reddit project 1m - generated

a guest
Feb 11th, 2012
613
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 11.93 KB | None | 0 0
  1. namespace First_Medium
  2. {
  3.     partial class Form1
  4.     {
  5.         /// <summary>
  6.         /// Required designer variable.
  7.         /// </summary>
  8.         private System.ComponentModel.IContainer components = null;
  9.  
  10.         /// <summary>
  11.         /// Clean up any resources being used.
  12.         /// </summary>
  13.         /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14.         protected override void Dispose(bool disposing)
  15.         {
  16.             if (disposing && (components != null))
  17.             {
  18.                 components.Dispose();
  19.             }
  20.             base.Dispose(disposing);
  21.         }
  22.  
  23.         #region Windows Form Designer generated code
  24.  
  25.         /// <summary>
  26.         /// Required method for Designer support - do not modify
  27.         /// the contents of this method with the code editor.
  28.         /// </summary>
  29.         private void InitializeComponent()
  30.         {
  31.             this.monthCalendar1 = new System.Windows.Forms.MonthCalendar();
  32.             this.outputTextBox = new System.Windows.Forms.TextBox();
  33.             this.todayTextBox = new System.Windows.Forms.TextBox();
  34.             this.addButton = new System.Windows.Forms.Button();
  35.             this.editButton = new System.Windows.Forms.Button();
  36.             this.removeButton = new System.Windows.Forms.Button();
  37.             this.showAllButton = new System.Windows.Forms.Button();
  38.             this.SuspendLayout();
  39.             //
  40.             // monthCalendar1
  41.             //
  42.             this.monthCalendar1.CalendarDimensions = new System.Drawing.Size(3, 2);
  43.             this.monthCalendar1.Location = new System.Drawing.Point(2, 0);
  44.             this.monthCalendar1.Name = "monthCalendar1";
  45.             this.monthCalendar1.TabIndex = 0;
  46.             this.monthCalendar1.DateChanged += new System.Windows.Forms.DateRangeEventHandler(this.monthCalendar1_DateChanged);
  47.             //
  48.             // outputTextBox
  49.             //
  50.             this.outputTextBox.Location = new System.Drawing.Point(472, 0);
  51.             this.outputTextBox.Multiline = true;
  52.             this.outputTextBox.Name = "outputTextBox";
  53.             this.outputTextBox.ReadOnly = true;
  54.             this.outputTextBox.Size = new System.Drawing.Size(237, 311);
  55.             this.outputTextBox.TabIndex = 1;
  56.             //
  57.             // todayTextBox
  58.             //
  59.             this.todayTextBox.Location = new System.Drawing.Point(12, 323);
  60.             this.todayTextBox.Name = "todayTextBox";
  61.             this.todayTextBox.ReadOnly = true;
  62.             this.todayTextBox.Size = new System.Drawing.Size(220, 20);
  63.             this.todayTextBox.TabIndex = 2;
  64.             //
  65.             // addButton
  66.             //
  67.             this.addButton.Location = new System.Drawing.Point(238, 321);
  68.             this.addButton.Name = "addButton";
  69.             this.addButton.Size = new System.Drawing.Size(110, 23);
  70.             this.addButton.TabIndex = 3;
  71.             this.addButton.Text = "Add Event";
  72.             this.addButton.UseVisualStyleBackColor = true;
  73.             this.addButton.Click += new System.EventHandler(this.addButton_Click);
  74.             //
  75.             // editButton
  76.             //
  77.             this.editButton.Location = new System.Drawing.Point(354, 321);
  78.             this.editButton.Name = "editButton";
  79.             this.editButton.Size = new System.Drawing.Size(110, 23);
  80.             this.editButton.TabIndex = 4;
  81.             this.editButton.Text = "Edit Event";
  82.             this.editButton.UseVisualStyleBackColor = true;
  83.             this.editButton.Click += new System.EventHandler(this.editButton_Click);
  84.             //
  85.             // removeButton
  86.             //
  87.             this.removeButton.Location = new System.Drawing.Point(470, 321);
  88.             this.removeButton.Name = "removeButton";
  89.             this.removeButton.Size = new System.Drawing.Size(110, 23);
  90.             this.removeButton.TabIndex = 5;
  91.             this.removeButton.Text = "Remove Event";
  92.             this.removeButton.UseVisualStyleBackColor = true;
  93.             this.removeButton.Click += new System.EventHandler(this.removeButton_Click);
  94.             //
  95.             // showAllButton
  96.             //
  97.             this.showAllButton.Location = new System.Drawing.Point(586, 321);
  98.             this.showAllButton.Name = "showAllButton";
  99.             this.showAllButton.Size = new System.Drawing.Size(110, 23);
  100.             this.showAllButton.TabIndex = 6;
  101.             this.showAllButton.Text = "Show All Events";
  102.             this.showAllButton.UseVisualStyleBackColor = true;
  103.             this.showAllButton.Click += new System.EventHandler(this.showAllButton_Click);
  104.             //
  105.             // Form1
  106.             //
  107.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  108.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  109.             this.ClientSize = new System.Drawing.Size(727, 364);
  110.             this.Controls.Add(this.showAllButton);
  111.             this.Controls.Add(this.removeButton);
  112.             this.Controls.Add(this.editButton);
  113.             this.Controls.Add(this.addButton);
  114.             this.Controls.Add(this.todayTextBox);
  115.             this.Controls.Add(this.outputTextBox);
  116.             this.Controls.Add(this.monthCalendar1);
  117.             this.Name = "Form1";
  118.             this.Text = "Reddit";
  119.             this.ResumeLayout(false);
  120.             this.PerformLayout();
  121.  
  122.         }
  123.  
  124.         #endregion
  125.  
  126.         private System.Windows.Forms.MonthCalendar monthCalendar1;
  127.         private System.Windows.Forms.TextBox outputTextBox;
  128.         private System.Windows.Forms.TextBox todayTextBox;
  129.         private System.Windows.Forms.Button addButton;
  130.         private System.Windows.Forms.Button editButton;
  131.         private System.Windows.Forms.Button removeButton;
  132.         private System.Windows.Forms.Button showAllButton;
  133.  
  134.     }
  135.  
  136.  
  137.  
  138.     partial class EventSetter
  139.     {
  140.         /// <summary>
  141.         /// Required designer variable.
  142.         /// </summary>
  143.         private System.ComponentModel.IContainer components = null;
  144.  
  145.         /// <summary>
  146.         /// Clean up any resources being used.
  147.         /// </summary>
  148.         /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  149.         protected override void Dispose(bool disposing)
  150.         {
  151.             if (disposing && (components != null))
  152.             {
  153.                 components.Dispose();
  154.             }
  155.             base.Dispose(disposing);
  156.         }
  157.  
  158.         #region Windows Form Designer generated code
  159.  
  160.         /// <summary>
  161.         /// Required method for Designer support - do not modify
  162.         /// the contents of this method with the code editor.
  163.         /// </summary>
  164.         private void InitializeComponent()
  165.         {
  166.             this.dateTimePicker = new System.Windows.Forms.DateTimePicker();
  167.             this.nameTextBox = new System.Windows.Forms.TextBox();
  168.             this.descriptionTextBox = new System.Windows.Forms.TextBox();
  169.             this.okButton = new System.Windows.Forms.Button();
  170.             this.SuspendLayout();
  171.             //
  172.             // dateTimePicker
  173.             //
  174.             this.dateTimePicker.Location = new System.Drawing.Point(12, 12);
  175.             this.dateTimePicker.Name = "dateTimePicker";
  176.             this.dateTimePicker.Size = new System.Drawing.Size(200, 20);
  177.             this.dateTimePicker.TabIndex = 0;
  178.             //
  179.             // nameTextBox
  180.             //
  181.             this.nameTextBox.Location = new System.Drawing.Point(12, 38);
  182.             this.nameTextBox.Name = "nameTextBox";
  183.             this.nameTextBox.Size = new System.Drawing.Size(100, 20);
  184.             this.nameTextBox.TabIndex = 1;
  185.             //
  186.             // descriptionTextBox
  187.             //
  188.             this.descriptionTextBox.Location = new System.Drawing.Point(12, 64);
  189.             this.descriptionTextBox.Multiline = true;
  190.             this.descriptionTextBox.Name = "descriptionTextBox";
  191.             this.descriptionTextBox.Size = new System.Drawing.Size(214, 91);
  192.             this.descriptionTextBox.TabIndex = 2;
  193.             //
  194.             // okButton
  195.             //
  196.             this.okButton.Location = new System.Drawing.Point(151, 161);
  197.             this.okButton.Name = "okButton";
  198.             this.okButton.Size = new System.Drawing.Size(75, 23);
  199.             this.okButton.TabIndex = 3;
  200.             this.okButton.Text = "OK";
  201.             this.okButton.UseVisualStyleBackColor = true;
  202.             this.okButton.Click += new System.EventHandler(this.okButton_Click);
  203.             //
  204.             // EventSetter
  205.             //
  206.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  207.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  208.             this.ClientSize = new System.Drawing.Size(230, 188);
  209.             this.Controls.Add(this.okButton);
  210.             this.Controls.Add(this.descriptionTextBox);
  211.             this.Controls.Add(this.nameTextBox);
  212.             this.Controls.Add(this.dateTimePicker);
  213.             this.Name = "EventSetter";
  214.             this.Text = "EventSetter";
  215.             this.ResumeLayout(false);
  216.             this.PerformLayout();
  217.  
  218.         }
  219.  
  220.         #endregion
  221.  
  222.         private System.Windows.Forms.DateTimePicker dateTimePicker;
  223.         private System.Windows.Forms.TextBox nameTextBox;
  224.         private System.Windows.Forms.TextBox descriptionTextBox;
  225.         private System.Windows.Forms.Button okButton;
  226.     }
  227.  
  228.  
  229.  
  230.     partial class EventChooser
  231.     {
  232.         /// <summary>
  233.         /// Required designer variable.
  234.         /// </summary>
  235.         private System.ComponentModel.IContainer components = null;
  236.  
  237.         /// <summary>
  238.         /// Clean up any resources being used.
  239.         /// </summary>
  240.         /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  241.         protected override void Dispose(bool disposing)
  242.         {
  243.             if (disposing && (components != null))
  244.             {
  245.                 components.Dispose();
  246.             }
  247.             base.Dispose(disposing);
  248.         }
  249.  
  250.         #region Windows Form Designer generated code
  251.  
  252.         /// <summary>
  253.         /// Required method for Designer support - do not modify
  254.         /// the contents of this method with the code editor.
  255.         /// </summary>
  256.         private void InitializeComponent()
  257.         {
  258.             this.comboBox = new System.Windows.Forms.ComboBox();
  259.             this.okButton = new System.Windows.Forms.Button();
  260.             this.SuspendLayout();
  261.             //
  262.             // comboBox
  263.             //
  264.             this.comboBox.FormattingEnabled = true;
  265.             this.comboBox.Location = new System.Drawing.Point(12, 12);
  266.             this.comboBox.Name = "comboBox";
  267.             this.comboBox.Size = new System.Drawing.Size(242, 21);
  268.             this.comboBox.TabIndex = 0;
  269.             //
  270.             // okButton
  271.             //
  272.             this.okButton.Location = new System.Drawing.Point(179, 45);
  273.             this.okButton.Name = "okButton";
  274.             this.okButton.Size = new System.Drawing.Size(75, 23);
  275.             this.okButton.TabIndex = 1;
  276.             this.okButton.Text = "OK";
  277.             this.okButton.UseVisualStyleBackColor = true;
  278.             this.okButton.Click += new System.EventHandler(this.okButton_Click);
  279.             //
  280.             // EventChooser
  281.             //
  282.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  283.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  284.             this.ClientSize = new System.Drawing.Size(266, 80);
  285.             this.Controls.Add(this.okButton);
  286.             this.Controls.Add(this.comboBox);
  287.             this.Name = "EventChooser";
  288.             this.Text = "EventChooser";
  289.             this.ResumeLayout(false);
  290.  
  291.         }
  292.  
  293.         #endregion
  294.  
  295.         private System.Windows.Forms.ComboBox comboBox;
  296.         private System.Windows.Forms.Button okButton;
  297.     }
  298. }
Add Comment
Please, Sign In to add comment