📄 answerform.designer.cs
字号:
namespace LiveQnA4
{
partial class AnswerForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
private System.Windows.Forms.MainMenu mainMenu1;
/// <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.mainMenu1 = new System.Windows.Forms.MainMenu();
this.listView1 = new System.Windows.Forms.ListView();
this.columnHeaderAnswer = new System.Windows.Forms.ColumnHeader();
this.columnHeaderBy = new System.Windows.Forms.ColumnHeader();
this.timer1 = new System.Windows.Forms.Timer();
this.SuspendLayout();
//
// listView1
//
this.listView1.Columns.Add(this.columnHeaderAnswer);
this.listView1.Columns.Add(this.columnHeaderBy);
this.listView1.Dock = System.Windows.Forms.DockStyle.Fill;
this.listView1.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
this.listView1.Location = new System.Drawing.Point(0, 0);
this.listView1.Name = "listView1";
this.listView1.Size = new System.Drawing.Size(240, 268);
this.listView1.TabIndex = 0;
this.listView1.View = System.Windows.Forms.View.Details;
//
// columnHeaderAnswer
//
this.columnHeaderAnswer.Text = "Answer";
this.columnHeaderAnswer.Width = 140;
//
// columnHeaderBy
//
this.columnHeaderBy.Text = "By";
this.columnHeaderBy.Width = 100;
//
// timer1
//
this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
//
// AnswerForm
//
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.listView1);
this.Menu = this.mainMenu1;
this.Name = "AnswerForm";
this.Text = "Answers";
this.Closing += new System.ComponentModel.CancelEventHandler(this.AnswerForm_Closing);
this.Load += new System.EventHandler(this.AnswerForm_Load);
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.ListView listView1;
private System.Windows.Forms.ColumnHeader columnHeaderAnswer;
private System.Windows.Forms.ColumnHeader columnHeaderBy;
private System.Windows.Forms.Timer timer1;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -