📄 mainform.designer.cs
字号:
namespace AccessingContacts
{
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_lstContacts = new System.Windows.Forms.ListView();
this.m_colFileAs = new System.Windows.Forms.ColumnHeader();
this.m_colMobile = new System.Windows.Forms.ColumnHeader();
this.m_colHome = new System.Windows.Forms.ColumnHeader();
this.m_colBusiness = new System.Windows.Forms.ColumnHeader();
this.m_colEmail = 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_lstContacts
//
this.m_lstContacts.Columns.Add(this.m_colFileAs);
this.m_lstContacts.Columns.Add(this.m_colMobile);
this.m_lstContacts.Columns.Add(this.m_colHome);
this.m_lstContacts.Columns.Add(this.m_colBusiness);
this.m_lstContacts.Columns.Add(this.m_colEmail);
this.m_lstContacts.Dock = System.Windows.Forms.DockStyle.Fill;
this.m_lstContacts.FullRowSelect = true;
this.m_lstContacts.Location = new System.Drawing.Point(0, 0);
this.m_lstContacts.Name = "m_lstContacts";
this.m_lstContacts.Size = new System.Drawing.Size(240, 268);
this.m_lstContacts.TabIndex = 0;
this.m_lstContacts.View = System.Windows.Forms.View.Details;
this.m_lstContacts.ItemActivate += new System.EventHandler(this.m_lstContacts_ItemActivate);
//
// m_colFileAs
//
this.m_colFileAs.Text = "FileAs";
this.m_colFileAs.Width = 90;
//
// m_colMobile
//
this.m_colMobile.Text = "Mobile Phone";
this.m_colMobile.Width = 100;
//
// m_colHome
//
this.m_colHome.Text = "Home Phone";
this.m_colHome.Width = 100;
//
// m_colBusiness
//
this.m_colBusiness.Text = "Business Phone";
this.m_colBusiness.Width = 100;
//
// m_colEmail
//
this.m_colEmail.Text = "Email";
this.m_colEmail.Width = 200;
//
// 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_lstContacts);
this.Menu = this.m_mainMenu;
this.Name = "MainForm";
this.Text = "Contacts";
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_lstContacts;
private System.Windows.Forms.ColumnHeader m_colFileAs;
private System.Windows.Forms.ColumnHeader m_colMobile;
private System.Windows.Forms.ColumnHeader m_colHome;
private System.Windows.Forms.ColumnHeader m_colBusiness;
private System.Windows.Forms.ColumnHeader m_colEmail;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -