1 Star 0 Fork 2

goujibing/GitHubWikiTool

forked from Sunday/GitHubWikiTool 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Form1.Designer.cs 7.35 KB
一键复制 编辑 原始数据 按行查看 历史
namespace WindowsFormsApp1
{
partial class Form1
{
/// <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.txb_url = new System.Windows.Forms.TextBox();
this.button1 = new System.Windows.Forms.Button();
this.txb_path = new System.Windows.Forms.TextBox();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.label3 = new System.Windows.Forms.Label();
this.label4 = new System.Windows.Forms.Label();
this.progressBar1 = new System.Windows.Forms.ProgressBar();
this.lb_jd = new System.Windows.Forms.Label();
this.button3 = new System.Windows.Forms.Button();
this.button2 = new System.Windows.Forms.Button();
this.SuspendLayout();
//
// txb_url
//
this.txb_url.Location = new System.Drawing.Point(129, 20);
this.txb_url.Name = "txb_url";
this.txb_url.Size = new System.Drawing.Size(396, 21);
this.txb_url.TabIndex = 0;
this.txb_url.Text = "https://github.com/dotnetcore/FreeSql/wiki";
//
// button1
//
this.button1.Location = new System.Drawing.Point(46, 89);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(75, 23);
this.button1.TabIndex = 2;
this.button1.Text = "爬取";
this.button1.UseVisualStyleBackColor = true;
this.button1.Click += new System.EventHandler(this.button1_Click);
//
// txb_path
//
this.txb_path.Location = new System.Drawing.Point(129, 47);
this.txb_path.Name = "txb_path";
this.txb_path.Size = new System.Drawing.Size(396, 21);
this.txb_path.TabIndex = 3;
this.txb_path.Text = "C:\\wiki";
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(16, 23);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(107, 12);
this.label1.TabIndex = 4;
this.label1.Text = "Github wiki 地址";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(46, 50);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(77, 12);
this.label2.TabIndex = 5;
this.label2.Text = "wiki存放位置";
//
// label3
//
this.label3.AutoSize = true;
this.label3.Location = new System.Drawing.Point(127, 94);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(107, 12);
this.label3.TabIndex = 8;
this.label3.Text = "爬取比较慢,请稍等";
//
// label4
//
this.label4.AutoSize = true;
this.label4.Location = new System.Drawing.Point(152, 189);
this.label4.Name = "label4";
this.label4.Size = new System.Drawing.Size(359, 12);
this.label4.TabIndex = 9;
this.label4.Text = "你可以git下载wiki文件,此工具可以把md转成html。暂无样式提供";
//
// progressBar1
//
this.progressBar1.Location = new System.Drawing.Point(45, 132);
this.progressBar1.Name = "progressBar1";
this.progressBar1.Size = new System.Drawing.Size(373, 23);
this.progressBar1.TabIndex = 10;
//
// lb_jd
//
this.lb_jd.AutoSize = true;
this.lb_jd.Location = new System.Drawing.Point(425, 138);
this.lb_jd.Name = "lb_jd";
this.lb_jd.Size = new System.Drawing.Size(53, 12);
this.lb_jd.TabIndex = 11;
this.lb_jd.Text = "进度 0/0";
//
// button3
//
this.button3.Location = new System.Drawing.Point(18, 184);
this.button3.Name = "button3";
this.button3.Size = new System.Drawing.Size(128, 23);
this.button3.TabIndex = 7;
this.button3.Text = "Markdown转Html工具";
this.button3.UseVisualStyleBackColor = true;
this.button3.Click += new System.EventHandler(this.button3_Click);
//
// button2
//
this.button2.Location = new System.Drawing.Point(18, 228);
this.button2.Name = "button2";
this.button2.Size = new System.Drawing.Size(128, 23);
this.button2.TabIndex = 12;
this.button2.Text = "批量下载图片";
this.button2.UseVisualStyleBackColor = true;
this.button2.Click += new System.EventHandler(this.button2_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(536, 263);
this.Controls.Add(this.button2);
this.Controls.Add(this.lb_jd);
this.Controls.Add(this.progressBar1);
this.Controls.Add(this.label4);
this.Controls.Add(this.label3);
this.Controls.Add(this.button3);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.txb_path);
this.Controls.Add(this.button1);
this.Controls.Add(this.txb_url);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.MaximizeBox = false;
this.Name = "Form1";
this.Text = "github wiki爬取工具";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.TextBox txb_url;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.TextBox txb_path;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.Label label4;
private System.Windows.Forms.ProgressBar progressBar1;
private System.Windows.Forms.Label lb_jd;
private System.Windows.Forms.Button button3;
private System.Windows.Forms.Button button2;
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/goujibing/GitHubWikiTool.git
[email protected]:goujibing/GitHubWikiTool.git
goujibing
GitHubWikiTool
GitHubWikiTool
master

搜索帮助