Oyasumi/Oyasumi/Form1.Designer.cs

134 lines
5.0 KiB
C#

namespace Oyasumi
{
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()
{
components = new System.ComponentModel.Container();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
notifyIcon = new NotifyIcon(components);
contextMenuStrip = new ContextMenuStrip(components);
startTimer5m = new ToolStripMenuItem();
startTimer10m = new ToolStripMenuItem();
startTimer25m = new ToolStripMenuItem();
timer = new System.Windows.Forms.Timer(components);
timeCircle = new Panel();
startTimer45m = new ToolStripMenuItem();
contextMenuStrip.SuspendLayout();
SuspendLayout();
//
// notifyIcon
//
notifyIcon.ContextMenuStrip = contextMenuStrip;
notifyIcon.Icon = (Icon)resources.GetObject("notifyIcon.Icon");
notifyIcon.Text = "Oyasumi";
notifyIcon.Visible = true;
notifyIcon.MouseClick += notifyIcon_MouseClick;
//
// contextMenuStrip
//
contextMenuStrip.Items.AddRange(new ToolStripItem[] { startTimer5m, startTimer10m, startTimer25m, startTimer45m });
contextMenuStrip.Name = "contextMenuStrip1";
contextMenuStrip.Size = new Size(204, 114);
//
// startTimer5m
//
startTimer5m.Name = "startTimer5m";
startTimer5m.Size = new Size(203, 22);
startTimer5m.Text = "im tired - 5 min";
startTimer5m.Click += startTimer5m_Click;
//
// startTimer10m
//
startTimer10m.Name = "startTimer10m";
startTimer10m.Size = new Size(203, 22);
startTimer10m.Text = "im getting tired - 10 min";
startTimer10m.Click += startTimer10m_Click;
//
// startTimer25m
//
startTimer25m.Name = "startTimer25m";
startTimer25m.Size = new Size(203, 22);
startTimer25m.Text = "im a little tired - 25 min";
startTimer25m.Click += startTimer25m_Click;
//
// timer
//
timer.Interval = 1000;
timer.Tick += timer_Tick;
//
// timeCircle
//
timeCircle.BackColor = Color.Transparent;
timeCircle.Location = new Point(0, 0);
timeCircle.Name = "timeCircle";
timeCircle.Size = new Size(48, 48);
timeCircle.TabIndex = 1;
timeCircle.Paint += timeCircle_Paint;
//
// startTimer45m
//
startTimer45m.Name = "startTimer45m";
startTimer45m.Size = new Size(203, 22);
startTimer45m.Text = "in a little while - 45 min";
startTimer45m.Click += startTimer45m_Click;
//
// Form1
//
AutoScaleDimensions = new SizeF(7F, 15F);
AutoScaleMode = AutoScaleMode.Font;
BackColor = Color.Black;
ClientSize = new Size(128, 128);
ControlBox = false;
Controls.Add(timeCircle);
FormBorderStyle = FormBorderStyle.None;
MaximizeBox = false;
MinimizeBox = false;
Name = "Form1";
ShowInTaskbar = false;
Text = "Form1";
TopMost = true;
TransparencyKey = Color.Black;
WindowState = FormWindowState.Minimized;
Load += Form1_Load;
contextMenuStrip.ResumeLayout(false);
ResumeLayout(false);
}
#endregion
private NotifyIcon notifyIcon;
private ContextMenuStrip contextMenuStrip;
private ToolStripMenuItem startTimer5m;
private ToolStripMenuItem startTimer25m;
private System.Windows.Forms.Timer timer;
private Panel timeCircle;
private ToolStripMenuItem startTimer10m;
private ToolStripMenuItem startTimer45m;
}
}