📄 form1.designer.cs
字号:
namespace LiveQnA2
{
partial class Form1
{
/// <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.buttonQnAService = new System.Windows.Forms.Button();
this.buttonShowXML = new System.Windows.Forms.Button();
this.statusBar1 = new System.Windows.Forms.StatusBar();
this.textBox1 = new System.Windows.Forms.TextBox();
this.SuspendLayout();
//
// buttonQnAService
//
this.buttonQnAService.Location = new System.Drawing.Point(48, 169);
this.buttonQnAService.Name = "buttonQnAService";
this.buttonQnAService.Size = new System.Drawing.Size(144, 32);
this.buttonQnAService.TabIndex = 0;
this.buttonQnAService.Text = "Access QnA Service";
this.buttonQnAService.Click += new System.EventHandler(this.buttonQnAService_Click);
//
// buttonShowXML
//
this.buttonShowXML.Enabled = false;
this.buttonShowXML.Location = new System.Drawing.Point(48, 207);
this.buttonShowXML.Name = "buttonShowXML";
this.buttonShowXML.Size = new System.Drawing.Size(144, 32);
this.buttonShowXML.TabIndex = 1;
this.buttonShowXML.Text = "Show XML";
this.buttonShowXML.Click += new System.EventHandler(this.buttonShowXML_Click);
//
// statusBar1
//
this.statusBar1.Location = new System.Drawing.Point(0, 246);
this.statusBar1.Name = "statusBar1";
this.statusBar1.Size = new System.Drawing.Size(240, 22);
//
// textBox1
//
this.textBox1.Dock = System.Windows.Forms.DockStyle.Top;
this.textBox1.Location = new System.Drawing.Point(0, 0);
this.textBox1.Multiline = true;
this.textBox1.Name = "textBox1";
this.textBox1.ReadOnly = true;
this.textBox1.ScrollBars = System.Windows.Forms.ScrollBars.Both;
this.textBox1.Size = new System.Drawing.Size(240, 163);
this.textBox1.TabIndex = 3;
this.textBox1.Text = "textBox1";
this.textBox1.Visible = false;
this.textBox1.WordWrap = false;
//
// Form1
//
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.textBox1);
this.Controls.Add(this.statusBar1);
this.Controls.Add(this.buttonShowXML);
this.Controls.Add(this.buttonQnAService);
this.Menu = this.mainMenu1;
this.MinimizeBox = false;
this.Name = "Form1";
this.Text = "Live QnA XML data";
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.Button buttonQnAService;
private System.Windows.Forms.Button buttonShowXML;
private System.Windows.Forms.StatusBar statusBar1;
private System.Windows.Forms.TextBox textBox1;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -