Advertisement
Guest User

DoingRightNow_designer

a guest
May 23rd, 2013
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 5.15 KB | None | 0 0
  1. namespace WhatAreYouDoingRightNow
  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.components = new System.ComponentModel.Container();
  32.             System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
  33.             this.textBox1 = new System.Windows.Forms.TextBox();
  34.             this.button1 = new System.Windows.Forms.Button();
  35.             this.label1 = new System.Windows.Forms.Label();
  36.             this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components);
  37.             this.timer1 = new System.Windows.Forms.Timer(this.components);
  38.             this.label2 = new System.Windows.Forms.Label();
  39.             this.SuspendLayout();
  40.             //
  41.             // textBox1
  42.             //
  43.             this.textBox1.Location = new System.Drawing.Point(12, 51);
  44.             this.textBox1.Name = "textBox1";
  45.             this.textBox1.Size = new System.Drawing.Size(246, 20);
  46.             this.textBox1.TabIndex = 0;
  47.             this.textBox1.KeyDown += new System.Windows.Forms.KeyEventHandler(this.textBox1_KeyDown);
  48.             //
  49.             // button1
  50.             //
  51.             this.button1.Location = new System.Drawing.Point(264, 48);
  52.             this.button1.Name = "button1";
  53.             this.button1.Size = new System.Drawing.Size(75, 23);
  54.             this.button1.TabIndex = 1;
  55.             this.button1.Text = "Go!";
  56.             this.button1.UseVisualStyleBackColor = true;
  57.             this.button1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.button1_MouseDown);
  58.             //
  59.             // label1
  60.             //
  61.             this.label1.AutoSize = true;
  62.             this.label1.Font = new System.Drawing.Font("Arial", 12.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
  63.             this.label1.Location = new System.Drawing.Point(12, 19);
  64.             this.label1.Name = "label1";
  65.             this.label1.Size = new System.Drawing.Size(234, 19);
  66.             this.label1.TabIndex = 2;
  67.             this.label1.Text = "What are you doing right now?";
  68.             //
  69.             // notifyIcon1
  70.             //
  71.             this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon")));
  72.             this.notifyIcon1.Text = "What Are You Doing Right Now!?";
  73.             this.notifyIcon1.Visible = true;
  74.             this.notifyIcon1.MouseClick += new System.Windows.Forms.MouseEventHandler(this.notifyIcon1_MouseClick);
  75.             //
  76.             // timer1
  77.             //
  78.             this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
  79.             //
  80.             // label2
  81.             //
  82.             this.label2.AutoSize = true;
  83.             this.label2.Location = new System.Drawing.Point(277, 13);
  84.             this.label2.Name = "label2";
  85.             this.label2.Size = new System.Drawing.Size(35, 13);
  86.             this.label2.TabIndex = 3;
  87.             this.label2.Text = "label2";
  88.             //
  89.             // Form1
  90.             //
  91.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  92.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  93.             this.ClientSize = new System.Drawing.Size(349, 89);
  94.             this.Controls.Add(this.label2);
  95.             this.Controls.Add(this.label1);
  96.             this.Controls.Add(this.button1);
  97.             this.Controls.Add(this.textBox1);
  98.             this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  99.             this.MaximizeBox = false;
  100.             this.MinimizeBox = false;
  101.             this.Name = "Form1";
  102.             this.ShowInTaskbar = false;
  103.             this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  104.             this.Text = "What Are You Doing Right Now!?";
  105.             this.Resize += new System.EventHandler(this.Form1_Resize_1);
  106.             this.ResumeLayout(false);
  107.             this.PerformLayout();
  108.  
  109.         }
  110.  
  111.         #endregion
  112.  
  113.         private System.Windows.Forms.TextBox textBox1;
  114.         private System.Windows.Forms.Button button1;
  115.         private System.Windows.Forms.Label label1;
  116.         private System.Windows.Forms.NotifyIcon notifyIcon1;
  117.         private System.Windows.Forms.Timer timer1;
  118.         private System.Windows.Forms.Label label2;
  119.     }
  120. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement