📄 mainform.designer.cs
字号:
namespace AccessingAppointments
{
partial class MainForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
private System.Windows.Forms.MainMenu m_mainMenu;
/// <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)
{
m_outlookSession.Dispose();
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.m_mainMenu = new System.Windows.Forms.MainMenu();
this.m_mnuNew = new System.Windows.Forms.MenuItem();
this.m_mnuDetails = new System.Windows.Forms.MenuItem();
this.m_lstAppointments = new System.Windows.Forms.ListView();
this.m_colSubject = new System.Windows.Forms.ColumnHeader();
this.m_colStart = new System.Windows.Forms.ColumnHeader();
this.m_colEnd = new System.Windows.Forms.ColumnHeader();
this.SuspendLayout();
//
// m_mainMenu
//
this.m_mainMenu.MenuItems.Add(this.m_mnuNew);
this.m_mainMenu.MenuItems.Add(this.m_mnuDetails);
//
// m_mnuNew
//
this.m_mnuNew.Text = "New";
this.m_mnuNew.Click += new System.EventHandler(this.m_mnuNew_Click);
//
// m_mnuDetails
//
this.m_mnuDetails.Text = "Details";
this.m_mnuDetails.Click += new System.EventHandler(this.m_mnuDetails_Click);
//
// m_lstAppointments
//
this.m_lstAppointments.Columns.Add(this.m_colSubject);
this.m_lstAppointments.Columns.Add(this.m_colStart);
this.m_lstAppointments.Columns.Add(this.m_colEnd);
this.m_lstAppointments.Dock = System.Windows.Forms.DockStyle.Fill;
this.m_lstAppointments.FullRowSelect = true;
this.m_lstAppointments.Location = new System.Drawing.Point(0, 0);
this.m_lstAppointments.Name = "m_lstAppointments";
this.m_lstAppointments.Size = new System.Drawing.Size(240, 268);
this.m_lstAppointments.TabIndex = 0;
this.m_lstAppointments.View = System.Windows.Forms.View.Details;
this.m_lstAppointments.ItemActivate += new System.EventHandler(this.m_lstAppointments_ItemActivate);
//
// m_colSubject
//
this.m_colSubject.Text = "Subject";
this.m_colSubject.Width = 150;
//
// m_colStart
//
this.m_colStart.Text = "Start";
this.m_colStart.Width = 120;
//
// m_colEnd
//
this.m_colEnd.Text = "End";
this.m_colEnd.Width = 120;
//
// MainForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.AutoScroll = true;
this.ClientSize = new System.Drawing.Size(240, 268);
this.Controls.Add(this.m_lstAppointments);
this.Menu = this.m_mainMenu;
this.Name = "MainForm";
this.Text = "Appointments";
this.Activated += new System.EventHandler(this.MainForm_Activated);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.MenuItem m_mnuNew;
private System.Windows.Forms.MenuItem m_mnuDetails;
private System.Windows.Forms.ListView m_lstAppointments;
private System.Windows.Forms.ColumnHeader m_colSubject;
private System.Windows.Forms.ColumnHeader m_colStart;
private System.Windows.Forms.ColumnHeader m_colEnd;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -