A Windows systray application that displays the current lunar phase.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

112 lines
4.6 KiB

namespace LunaWin
{
partial class LunaForm
{
/// <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.imgLogo = new System.Windows.Forms.PictureBox();
this.lblHeader = new System.Windows.Forms.Label();
this.lblText = new System.Windows.Forms.Label();
this.cmdHide = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.imgLogo)).BeginInit();
this.SuspendLayout();
//
// imgLogo
//
this.imgLogo.Image = global::LunaWin.Properties.Resources.fullmoon;
this.imgLogo.Location = new System.Drawing.Point(82, 12);
this.imgLogo.Name = "imgLogo";
this.imgLogo.Size = new System.Drawing.Size(175, 175);
this.imgLogo.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
this.imgLogo.TabIndex = 0;
this.imgLogo.TabStop = false;
//
// lblHeader
//
this.lblHeader.AutoSize = true;
this.lblHeader.Font = new System.Drawing.Font("Segoe UI Semibold", 14F);
this.lblHeader.Location = new System.Drawing.Point(75, 190);
this.lblHeader.Name = "lblHeader";
this.lblHeader.Size = new System.Drawing.Size(188, 25);
this.lblHeader.TabIndex = 1;
this.lblHeader.Text = "About LunaWin Beta";
//
// lblText
//
this.lblText.AutoSize = true;
this.lblText.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F);
this.lblText.Location = new System.Drawing.Point(47, 224);
this.lblText.MaximumSize = new System.Drawing.Size(250, 0);
this.lblText.Name = "lblText";
this.lblText.Size = new System.Drawing.Size(247, 51);
this.lblText.TabIndex = 2;
this.lblText.Text = "LunaWin calculates the current moon phase based on your system time (UTC).";
//
// cmdHide
//
this.cmdHide.Font = new System.Drawing.Font("Microsoft Sans Serif", 10F);
this.cmdHide.Location = new System.Drawing.Point(132, 303);
this.cmdHide.Name = "cmdHide";
this.cmdHide.Size = new System.Drawing.Size(75, 28);
this.cmdHide.TabIndex = 3;
this.cmdHide.Text = "Close";
this.cmdHide.UseVisualStyleBackColor = true;
this.cmdHide.Click += new System.EventHandler(this.cmdHide_Click);
//
// LunaForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(339, 363);
this.ControlBox = false;
this.Controls.Add(this.cmdHide);
this.Controls.Add(this.lblText);
this.Controls.Add(this.lblHeader);
this.Controls.Add(this.imgLogo);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.Name = "LunaForm";
this.ShowIcon = false;
this.ShowInTaskbar = false;
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "About LunaWin";
((System.ComponentModel.ISupportInitialize)(this.imgLogo)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.PictureBox imgLogo;
private System.Windows.Forms.Label lblHeader;
private System.Windows.Forms.Label lblText;
private System.Windows.Forms.Button cmdHide;
}
}