mirror of
https://e.coding.net/circlecloud/SEOKeywordSearch.git
synced 2024-11-14 00:48:48 +00:00
346 lines
16 KiB
C#
346 lines
16 KiB
C#
namespace SEOKeywordSearch
|
||
{
|
||
partial class Frm_Main
|
||
{
|
||
/// <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()
|
||
{
|
||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
|
||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
|
||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
|
||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle();
|
||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle();
|
||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle();
|
||
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle();
|
||
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_Main));
|
||
this.SearchView = new System.Windows.Forms.DataGridView();
|
||
this.company = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||
this.keyword = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||
this.百度s = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||
this.必应s = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||
this.搜狗s = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||
this.sum = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||
this.ResultView = new System.Windows.Forms.DataGridView();
|
||
this.公司名称 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||
this.关键词 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||
this.百度r = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||
this.必应r = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||
this.搜狗r = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||
this.查询时间 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
||
this.search = new System.Windows.Forms.Button();
|
||
this.max = new System.Windows.Forms.TextBox();
|
||
this.label1 = new System.Windows.Forms.Label();
|
||
this.state = new System.Windows.Forms.Label();
|
||
this.saveout = new System.Windows.Forms.Button();
|
||
this.readin = new System.Windows.Forms.Button();
|
||
this.openFile = new System.Windows.Forms.OpenFileDialog();
|
||
this.saveFile = new System.Windows.Forms.SaveFileDialog();
|
||
this.clearresult = new System.Windows.Forms.Button();
|
||
this.clearsearch = new System.Windows.Forms.Button();
|
||
this.label2 = new System.Windows.Forms.Label();
|
||
this.retry = new System.Windows.Forms.TextBox();
|
||
((System.ComponentModel.ISupportInitialize)(this.SearchView)).BeginInit();
|
||
((System.ComponentModel.ISupportInitialize)(this.ResultView)).BeginInit();
|
||
this.SuspendLayout();
|
||
//
|
||
// SearchView
|
||
//
|
||
this.SearchView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
||
this.SearchView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
||
this.company,
|
||
this.keyword,
|
||
this.百度s,
|
||
this.必应s,
|
||
this.搜狗s,
|
||
this.sum});
|
||
this.SearchView.Location = new System.Drawing.Point(10, 58);
|
||
this.SearchView.Name = "SearchView";
|
||
this.SearchView.RowTemplate.Height = 23;
|
||
this.SearchView.Size = new System.Drawing.Size(850, 200);
|
||
this.SearchView.TabIndex = 0;
|
||
//
|
||
// company
|
||
//
|
||
this.company.HeaderText = "公司网址";
|
||
this.company.Name = "company";
|
||
this.company.Width = 150;
|
||
//
|
||
// keyword
|
||
//
|
||
this.keyword.HeaderText = "关键词(用英文逗号隔开)";
|
||
this.keyword.Name = "keyword";
|
||
this.keyword.Width = 330;
|
||
//
|
||
// 百度s
|
||
//
|
||
dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
||
this.百度s.DefaultCellStyle = dataGridViewCellStyle1;
|
||
this.百度s.HeaderText = "百度第一页";
|
||
this.百度s.Name = "百度s";
|
||
this.百度s.Width = 90;
|
||
//
|
||
// 必应s
|
||
//
|
||
dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
||
this.必应s.DefaultCellStyle = dataGridViewCellStyle2;
|
||
this.必应s.HeaderText = "必应第一页";
|
||
this.必应s.Name = "必应s";
|
||
this.必应s.Width = 90;
|
||
//
|
||
// 搜狗s
|
||
//
|
||
dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
||
this.搜狗s.DefaultCellStyle = dataGridViewCellStyle3;
|
||
this.搜狗s.HeaderText = "搜狗第一页";
|
||
this.搜狗s.Name = "搜狗s";
|
||
this.搜狗s.Width = 90;
|
||
//
|
||
// sum
|
||
//
|
||
dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
||
this.sum.DefaultCellStyle = dataGridViewCellStyle4;
|
||
this.sum.HeaderText = "总计";
|
||
this.sum.Name = "sum";
|
||
this.sum.Width = 55;
|
||
//
|
||
// ResultView
|
||
//
|
||
this.ResultView.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
||
this.ResultView.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
||
this.公司名称,
|
||
this.关键词,
|
||
this.百度r,
|
||
this.必应r,
|
||
this.搜狗r,
|
||
this.查询时间});
|
||
this.ResultView.Location = new System.Drawing.Point(11, 293);
|
||
this.ResultView.Name = "ResultView";
|
||
this.ResultView.RowTemplate.Height = 23;
|
||
this.ResultView.Size = new System.Drawing.Size(850, 300);
|
||
this.ResultView.TabIndex = 1;
|
||
//
|
||
// 公司名称
|
||
//
|
||
this.公司名称.HeaderText = "公司网站";
|
||
this.公司名称.Name = "公司名称";
|
||
this.公司名称.Width = 150;
|
||
//
|
||
// 关键词
|
||
//
|
||
this.关键词.HeaderText = "关键词";
|
||
this.关键词.Name = "关键词";
|
||
this.关键词.Width = 200;
|
||
//
|
||
// 百度r
|
||
//
|
||
dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
||
this.百度r.DefaultCellStyle = dataGridViewCellStyle5;
|
||
this.百度r.HeaderText = "百度";
|
||
this.百度r.Name = "百度r";
|
||
//
|
||
// 必应r
|
||
//
|
||
dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
||
this.必应r.DefaultCellStyle = dataGridViewCellStyle6;
|
||
this.必应r.HeaderText = "必应";
|
||
this.必应r.Name = "必应r";
|
||
//
|
||
// 搜狗r
|
||
//
|
||
dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
||
this.搜狗r.DefaultCellStyle = dataGridViewCellStyle7;
|
||
this.搜狗r.HeaderText = "搜狗";
|
||
this.搜狗r.Name = "搜狗r";
|
||
//
|
||
// 查询时间
|
||
//
|
||
this.查询时间.HeaderText = "查询时间";
|
||
this.查询时间.Name = "查询时间";
|
||
this.查询时间.Width = 130;
|
||
//
|
||
// search
|
||
//
|
||
this.search.Location = new System.Drawing.Point(360, 10);
|
||
this.search.Name = "search";
|
||
this.search.Size = new System.Drawing.Size(152, 36);
|
||
this.search.TabIndex = 2;
|
||
this.search.Text = "查 询 关 键 词";
|
||
this.search.UseVisualStyleBackColor = true;
|
||
this.search.Click += new System.EventHandler(this.search_Click);
|
||
//
|
||
// max
|
||
//
|
||
this.max.Location = new System.Drawing.Point(663, 4);
|
||
this.max.Name = "max";
|
||
this.max.Size = new System.Drawing.Size(83, 21);
|
||
this.max.TabIndex = 3;
|
||
this.max.Text = "20";
|
||
//
|
||
// label1
|
||
//
|
||
this.label1.AutoSize = true;
|
||
this.label1.Location = new System.Drawing.Point(592, 7);
|
||
this.label1.Name = "label1";
|
||
this.label1.Size = new System.Drawing.Size(65, 12);
|
||
this.label1.TabIndex = 7;
|
||
this.label1.Text = "查询页数: ";
|
||
//
|
||
// state
|
||
//
|
||
this.state.AutoSize = true;
|
||
this.state.Font = new System.Drawing.Font("宋体", 10.5F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
|
||
this.state.ForeColor = System.Drawing.SystemColors.ControlText;
|
||
this.state.Location = new System.Drawing.Point(98, 267);
|
||
this.state.Name = "state";
|
||
this.state.Size = new System.Drawing.Size(37, 14);
|
||
this.state.TabIndex = 8;
|
||
this.state.Text = "状态";
|
||
this.state.TextAlign = System.Drawing.ContentAlignment.TopCenter;
|
||
//
|
||
// saveout
|
||
//
|
||
this.saveout.Location = new System.Drawing.Point(181, 29);
|
||
this.saveout.Name = "saveout";
|
||
this.saveout.Size = new System.Drawing.Size(73, 23);
|
||
this.saveout.TabIndex = 9;
|
||
this.saveout.Text = "导出关键词";
|
||
this.saveout.UseVisualStyleBackColor = true;
|
||
this.saveout.Click += new System.EventHandler(this.saveout_Click);
|
||
//
|
||
// readin
|
||
//
|
||
this.readin.Location = new System.Drawing.Point(19, 29);
|
||
this.readin.Name = "readin";
|
||
this.readin.Size = new System.Drawing.Size(73, 23);
|
||
this.readin.TabIndex = 10;
|
||
this.readin.Text = "导入关键词";
|
||
this.readin.UseVisualStyleBackColor = true;
|
||
this.readin.Click += new System.EventHandler(this.readin_Click);
|
||
//
|
||
// openFile
|
||
//
|
||
this.openFile.FileName = "openFileDialog1";
|
||
//
|
||
// clearresult
|
||
//
|
||
this.clearresult.Location = new System.Drawing.Point(19, 264);
|
||
this.clearresult.Name = "clearresult";
|
||
this.clearresult.Size = new System.Drawing.Size(73, 23);
|
||
this.clearresult.TabIndex = 11;
|
||
this.clearresult.Text = "清除结果";
|
||
this.clearresult.UseVisualStyleBackColor = true;
|
||
this.clearresult.Click += new System.EventHandler(this.clearresult_Click);
|
||
//
|
||
// clearsearch
|
||
//
|
||
this.clearsearch.Location = new System.Drawing.Point(100, 29);
|
||
this.clearsearch.Name = "clearsearch";
|
||
this.clearsearch.Size = new System.Drawing.Size(73, 23);
|
||
this.clearsearch.TabIndex = 12;
|
||
this.clearsearch.Text = "清除关键词";
|
||
this.clearsearch.UseVisualStyleBackColor = true;
|
||
this.clearsearch.Click += new System.EventHandler(this.clearsearch_Click);
|
||
//
|
||
// label2
|
||
//
|
||
this.label2.AutoSize = true;
|
||
this.label2.BackColor = System.Drawing.SystemColors.ControlLight;
|
||
this.label2.Location = new System.Drawing.Point(592, 34);
|
||
this.label2.Name = "label2";
|
||
this.label2.Size = new System.Drawing.Size(65, 12);
|
||
this.label2.TabIndex = 14;
|
||
this.label2.Text = "失败重试: ";
|
||
//
|
||
// retry
|
||
//
|
||
this.retry.Location = new System.Drawing.Point(663, 31);
|
||
this.retry.Name = "retry";
|
||
this.retry.Size = new System.Drawing.Size(83, 21);
|
||
this.retry.TabIndex = 13;
|
||
this.retry.Text = "3";
|
||
//
|
||
// Frm_Main
|
||
//
|
||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
|
||
this.ClientSize = new System.Drawing.Size(872, 603);
|
||
this.Controls.Add(this.label2);
|
||
this.Controls.Add(this.retry);
|
||
this.Controls.Add(this.clearsearch);
|
||
this.Controls.Add(this.clearresult);
|
||
this.Controls.Add(this.readin);
|
||
this.Controls.Add(this.saveout);
|
||
this.Controls.Add(this.state);
|
||
this.Controls.Add(this.label1);
|
||
this.Controls.Add(this.max);
|
||
this.Controls.Add(this.search);
|
||
this.Controls.Add(this.ResultView);
|
||
this.Controls.Add(this.SearchView);
|
||
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
||
this.MaximizeBox = false;
|
||
this.MinimizeBox = false;
|
||
this.Name = "Frm_Main";
|
||
this.Text = "SEO排名查询软件 2015-7-30";
|
||
this.Load += new System.EventHandler(this.Frm_Main_Load);
|
||
((System.ComponentModel.ISupportInitialize)(this.SearchView)).EndInit();
|
||
((System.ComponentModel.ISupportInitialize)(this.ResultView)).EndInit();
|
||
this.ResumeLayout(false);
|
||
this.PerformLayout();
|
||
|
||
}
|
||
|
||
#endregion
|
||
|
||
private System.Windows.Forms.DataGridView SearchView;
|
||
private System.Windows.Forms.DataGridView ResultView;
|
||
private System.Windows.Forms.Button search;
|
||
private System.Windows.Forms.TextBox max;
|
||
private System.Windows.Forms.Label label1;
|
||
private System.Windows.Forms.Label state;
|
||
private System.Windows.Forms.Button saveout;
|
||
private System.Windows.Forms.Button readin;
|
||
private System.Windows.Forms.OpenFileDialog openFile;
|
||
private System.Windows.Forms.SaveFileDialog saveFile;
|
||
private System.Windows.Forms.Button clearresult;
|
||
private System.Windows.Forms.Button clearsearch;
|
||
private System.Windows.Forms.DataGridViewTextBoxColumn 公司名称;
|
||
private System.Windows.Forms.DataGridViewTextBoxColumn 关键词;
|
||
private System.Windows.Forms.DataGridViewTextBoxColumn 百度r;
|
||
private System.Windows.Forms.DataGridViewTextBoxColumn 必应r;
|
||
private System.Windows.Forms.DataGridViewTextBoxColumn 搜狗r;
|
||
private System.Windows.Forms.DataGridViewTextBoxColumn 查询时间;
|
||
private System.Windows.Forms.DataGridViewTextBoxColumn company;
|
||
private System.Windows.Forms.DataGridViewTextBoxColumn keyword;
|
||
private System.Windows.Forms.DataGridViewTextBoxColumn 百度s;
|
||
private System.Windows.Forms.DataGridViewTextBoxColumn 必应s;
|
||
private System.Windows.Forms.DataGridViewTextBoxColumn 搜狗s;
|
||
private System.Windows.Forms.DataGridViewTextBoxColumn sum;
|
||
private System.Windows.Forms.Label label2;
|
||
private System.Windows.Forms.TextBox retry;
|
||
|
||
}
|
||
}
|
||
|