📄 channel.designer.cs
字号:
namespace NewsReader
{
partial class channel
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows 窗体设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.txtFeedName = new System.Windows.Forms.TextBox();
this.txtFeedUrl = new System.Windows.Forms.TextBox();
this.txtFeedDesc = new System.Windows.Forms.TextBox();
this.btnModiy = new System.Windows.Forms.Button();
this.btnOK = new System.Windows.Forms.Button();
this.btnCancel = new System.Windows.Forms.Button();
this.grbType = new System.Windows.Forms.GroupBox();
this.rdoHtml = new System.Windows.Forms.RadioButton();
this.rdoAtom = new System.Windows.Forms.RadioButton();
this.rdoRss = new System.Windows.Forms.RadioButton();
this.panel1 = new System.Windows.Forms.Panel();
this.lblcount = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.btnAutoTest = new System.Windows.Forms.Button();
this.grbType.SuspendLayout();
this.panel1.SuspendLayout();
this.SuspendLayout();
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 13);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(65, 12);
this.label1.TabIndex = 0;
this.label1.Text = "频道名称:";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(12, 44);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(65, 12);
this.label2.TabIndex = 1;
this.label2.Text = "频道地址:";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(13, 75);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(65, 12);
this.label3.TabIndex = 2;
this.label3.Text = "频道描述:";
//
// txtFeedName
//
this.txtFeedName.Location = new System.Drawing.Point(86, 9);
this.txtFeedName.Name = "txtFeedName";
this.txtFeedName.Size = new System.Drawing.Size(297, 21);
this.txtFeedName.TabIndex = 3;
//
// txtFeedUrl
//
this.txtFeedUrl.Location = new System.Drawing.Point(86, 42);
this.txtFeedUrl.Name = "txtFeedUrl";
this.txtFeedUrl.Size = new System.Drawing.Size(297, 21);
this.txtFeedUrl.TabIndex = 4;
//
// txtFeedDesc
//
this.txtFeedDesc.Location = new System.Drawing.Point(86, 75);
this.txtFeedDesc.Multiline = true;
this.txtFeedDesc.Name = "txtFeedDesc";
this.txtFeedDesc.Size = new System.Drawing.Size(297, 150);
this.txtFeedDesc.TabIndex = 5;
//
// btnModiy
//
this.btnModiy.Location = new System.Drawing.Point(179, 236);
this.btnModiy.Name = "btnModiy";
this.btnModiy.Size = new System.Drawing.Size(60, 30);
this.btnModiy.TabIndex = 6;
this.btnModiy.Text = "修改(&M)";
this.btnModiy.UseVisualStyleBackColor = true;
this.btnModiy.Click += new System.EventHandler(this.btnModiy_Click);
//
// btnOK
//
this.btnOK.Location = new System.Drawing.Point(251, 236);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(60, 30);
this.btnOK.TabIndex = 7;
this.btnOK.Text = "添加(&A)";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// btnCancel
//
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
this.btnCancel.Location = new System.Drawing.Point(323, 236);
this.btnCancel.Name = "btnCancel";
this.btnCancel.Size = new System.Drawing.Size(60, 30);
this.btnCancel.TabIndex = 8;
this.btnCancel.Text = "关闭(&C)";
this.btnCancel.UseVisualStyleBackColor = true;
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
// grbType
//
this.grbType.Controls.Add(this.rdoHtml);
this.grbType.Controls.Add(this.rdoAtom);
this.grbType.Controls.Add(this.rdoRss);
this.grbType.Location = new System.Drawing.Point(10, 103);
this.grbType.Name = "grbType";
this.grbType.Size = new System.Drawing.Size(68, 102);
this.grbType.TabIndex = 9;
this.grbType.TabStop = false;
this.grbType.Text = "文档格式";
//
// rdoHtml
//
this.rdoHtml.AutoSize = true;
this.rdoHtml.Location = new System.Drawing.Point(11, 19);
this.rdoHtml.Name = "rdoHtml";
this.rdoHtml.Size = new System.Drawing.Size(47, 16);
this.rdoHtml.TabIndex = 0;
this.rdoHtml.Tag = "html";
this.rdoHtml.Text = "HTML";
this.rdoHtml.UseVisualStyleBackColor = true;
//
// rdoAtom
//
this.rdoAtom.AutoSize = true;
this.rdoAtom.Location = new System.Drawing.Point(11, 68);
this.rdoAtom.Name = "rdoAtom";
this.rdoAtom.Size = new System.Drawing.Size(47, 16);
this.rdoAtom.TabIndex = 2;
this.rdoAtom.Tag = "feed";
this.rdoAtom.Text = "ATOM";
this.rdoAtom.UseVisualStyleBackColor = true;
//
// rdoRss
//
this.rdoRss.AutoSize = true;
this.rdoRss.Checked = true;
this.rdoRss.Location = new System.Drawing.Point(12, 42);
this.rdoRss.Name = "rdoRss";
this.rdoRss.Size = new System.Drawing.Size(41, 16);
this.rdoRss.TabIndex = 1;
this.rdoRss.TabStop = true;
this.rdoRss.Tag = "rss";
this.rdoRss.Text = "RSS";
this.rdoRss.UseVisualStyleBackColor = true;
//
// panel1
//
this.panel1.Controls.Add(this.lblcount);
this.panel1.Controls.Add(this.label4);
this.panel1.Location = new System.Drawing.Point(10, 211);
this.panel1.Name = "panel1";
this.panel1.Size = new System.Drawing.Size(68, 49);
this.panel1.TabIndex = 10;
//
// lblcount
//
this.lblcount.AutoSize = true;
this.lblcount.Location = new System.Drawing.Point(28, 27);
this.lblcount.Name = "lblcount";
this.lblcount.Size = new System.Drawing.Size(11, 12);
this.lblcount.TabIndex = 1;
this.lblcount.Text = "0";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(8, 9);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(53, 12);
this.label4.TabIndex = 0;
this.label4.Text = "点击次数";
//
// btnAutoTest
//
this.btnAutoTest.Location = new System.Drawing.Point(86, 236);
this.btnAutoTest.Name = "btnAutoTest";
this.btnAutoTest.Size = new System.Drawing.Size(81, 30);
this.btnAutoTest.TabIndex = 11;
this.btnAutoTest.Text = "测试地址(&T)";
this.btnAutoTest.UseVisualStyleBackColor = true;
this.btnAutoTest.Click += new System.EventHandler(this.btnAutoTest_Click);
//
// channel
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.CancelButton = this.btnCancel;
this.ClientSize = new System.Drawing.Size(395, 277);
this.Controls.Add(this.btnAutoTest);
this.Controls.Add(this.panel1);
this.Controls.Add(this.grbType);
this.Controls.Add(this.btnCancel);
this.Controls.Add(this.btnOK);
this.Controls.Add(this.btnModiy);
this.Controls.Add(this.txtFeedDesc);
this.Controls.Add(this.txtFeedUrl);
this.Controls.Add(this.txtFeedName);
this.Controls.Add(this.label3);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.KeyPreview = true;
this.Name = "channel";
this.Text = "频道信息";
this.grbType.ResumeLayout(false);
this.grbType.PerformLayout();
this.panel1.ResumeLayout(false);
this.panel1.PerformLayout();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.TextBox txtFeedName;
private System.Windows.Forms.TextBox txtFeedUrl;
private System.Windows.Forms.TextBox txtFeedDesc;
private System.Windows.Forms.Button btnModiy;
private System.Windows.Forms.Button btnOK;
private System.Windows.Forms.Button btnCancel;
private System.Windows.Forms.GroupBox grbType;
private System.Windows.Forms.RadioButton rdoAtom;
private System.Windows.Forms.RadioButton rdoRss;
private System.Windows.Forms.Panel panel1;
private System.Windows.Forms.Label lblcount;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.RadioButton rdoHtml;
private System.Windows.Forms.Button btnAutoTest;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -