📄 cal.designer.cs
字号:
using System;
namespace Opportune.CalEx
{
partial class Cal
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
private DateTime _now;
/// <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 Component 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.panel1 = new System.Windows.Forms.Panel();
this.textYear = new System.Windows.Forms.TextBox();
this.labelCurrYear = new System.Windows.Forms.Label();
this.labelCurrMonth = new System.Windows.Forms.Label();
this.buttonNextMonth = new System.Windows.Forms.Button();
this.buttonPrevMonth = new System.Windows.Forms.Button();
this.panel2 = new System.Windows.Forms.Panel();
this.panel3 = new System.Windows.Forms.Panel();
this.panel4 = new System.Windows.Forms.Panel();
this.labelToday = new System.Windows.Forms.Label();
this.buttonGotoToday = new System.Windows.Forms.Button();
this.panel1.SuspendLayout();
this.panel4.SuspendLayout();
this.SuspendLayout();
//
// panel1
//
this.panel1.Controls.Add(this.textYear);
this.panel1.Controls.Add(this.labelCurrYear);
this.panel1.Controls.Add(this.labelCurrMonth);
this.panel1.Controls.Add(this.buttonNextMonth);
this.panel1.Controls.Add(this.buttonPrevMonth);
this.panel1.Location = new System.Drawing.Point(6, 7);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(215, 36);
this.panel1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.panel1_MouseDown);
//
// textYear
//
this.textYear.Location = new System.Drawing.Point(132, 10);
this.textYear.Name = "textYear";
this.textYear.Size = new System.Drawing.Size(38, 21);
this.textYear.TabIndex = 5;
this.textYear.Text = "year";
//
// labelCurrYear
//
this.labelCurrYear.Location = new System.Drawing.Point(97, 8);
this.labelCurrYear.Name = "labelCurrYear";
this.labelCurrYear.Size = new System.Drawing.Size(40, 20);
this.labelCurrYear.Text = "year";
//
// labelCurrMonth
//
this.labelCurrMonth.Location = new System.Drawing.Point(61, 7);
this.labelCurrMonth.Name = "labelCurrMonth";
this.labelCurrMonth.Size = new System.Drawing.Size(40, 20);
this.labelCurrMonth.Text = "month";
//
// buttonNextMonth
//
this.buttonNextMonth.Location = new System.Drawing.Point(172, 8);
this.buttonNextMonth.Name = "buttonNextMonth";
this.buttonNextMonth.Size = new System.Drawing.Size(30, 20);
this.buttonNextMonth.TabIndex = 1;
this.buttonNextMonth.Text = ">";
this.buttonNextMonth.Click += new System.EventHandler(this.buttonNextMonth_Click);
//
// buttonPrevMonth
//
this.buttonPrevMonth.Location = new System.Drawing.Point(16, 8);
this.buttonPrevMonth.Name = "buttonPrevMonth";
this.buttonPrevMonth.Size = new System.Drawing.Size(30, 20);
this.buttonPrevMonth.TabIndex = 0;
this.buttonPrevMonth.Text = "<";
this.buttonPrevMonth.Click += new System.EventHandler(this.buttonPrevMonth_Click);
//
// panel2
//
this.panel2.Location = new System.Drawing.Point(6, 49);
this.panel2.Name = "panel2";
this.panel2.Size = new System.Drawing.Size(215, 36);
this.panel2.Paint += new System.Windows.Forms.PaintEventHandler(this.panel2_Paint);
//
// panel3
//
this.panel3.Location = new System.Drawing.Point(6, 91);
this.panel3.Name = "panel3";
this.panel3.Size = new System.Drawing.Size(215, 111);
this.panel3.Paint += new System.Windows.Forms.PaintEventHandler(this.panel3_Paint);
this.panel3.MouseDown += new System.Windows.Forms.MouseEventHandler(this.panel3_MouseDown);
//
// panel4
//
this.panel4.Controls.Add(this.labelToday);
this.panel4.Controls.Add(this.buttonGotoToday);
this.panel4.Location = new System.Drawing.Point(6, 204);
this.panel4.Name = "panel4";
this.panel4.Size = new System.Drawing.Size(215, 36);
//
// labelToday
//
this.labelToday.Location = new System.Drawing.Point(15, 10);
this.labelToday.Name = "labelToday";
this.labelToday.Size = new System.Drawing.Size(82, 19);
this.labelToday.Text = "today";
//
// buttonGotoToday
//
this.buttonGotoToday.Location = new System.Drawing.Point(125, 10);
this.buttonGotoToday.Name = "buttonGotoToday";
this.buttonGotoToday.Size = new System.Drawing.Size(87, 20);
this.buttonGotoToday.TabIndex = 0;
this.buttonGotoToday.Text = "Goto Today";
this.buttonGotoToday.Click += new System.EventHandler(this.buttonGotoToday_Click);
//
// Cal
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.Controls.Add(this.panel4);
this.Controls.Add(this.panel3);
this.Controls.Add(this.panel2);
this.Controls.Add(this.panel1);
this.Name = "Cal";
this.Size = new System.Drawing.Size(239, 243);
this.ParentChanged += new System.EventHandler(this.Cal_ParentChanged);
this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.panel3_MouseDown);
this.panel1.ResumeLayout(false);
this.panel4.ResumeLayout(false);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.Panel panel2;
private System.Windows.Forms.Panel panel3;
private System.Windows.Forms.Panel panel4;
private System.Windows.Forms.Button buttonPrevMonth;
private System.Windows.Forms.Button buttonNextMonth;
private System.Windows.Forms.Label labelCurrMonth;
private System.Windows.Forms.Label labelCurrYear;
private System.Windows.Forms.TextBox textYear;
private System.Windows.Forms.Button buttonGotoToday;
private System.Windows.Forms.Label labelToday;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -