1 Star 1 Fork 0

jackrebel/alipansign

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Form1.Designer.cs 7.01 KB
一键复制 编辑 原始数据 按行查看 历史
jackrebel 提交于 2023-08-31 09:42 . no commit message
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.rtbInfo = new System.Windows.Forms.RichTextBox();
this.btnSaveini = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.linkLabel1 = new System.Windows.Forms.LinkLabel();
this.dataGridView1 = new System.Windows.Forms.DataGridView();
this.cbisexit = new System.Windows.Forms.CheckBox();
this.cbAuto = new System.Windows.Forms.CheckBox();
this.btnSign = new System.Windows.Forms.Button();
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
this.SuspendLayout();
//
// rtbInfo
//
this.rtbInfo.Dock = System.Windows.Forms.DockStyle.Bottom;
this.rtbInfo.Location = new System.Drawing.Point(0, 733);
this.rtbInfo.Name = "rtbInfo";
this.rtbInfo.Size = new System.Drawing.Size(1281, 190);
this.rtbInfo.TabIndex = 0;
this.rtbInfo.Text = "";
//
// btnSaveini
//
this.btnSaveini.Location = new System.Drawing.Point(1025, 408);
this.btnSaveini.Name = "btnSaveini";
this.btnSaveini.Size = new System.Drawing.Size(165, 68);
this.btnSaveini.TabIndex = 2;
this.btnSaveini.Text = "保存配置";
this.btnSaveini.UseVisualStyleBackColor = true;
this.btnSaveini.Click += new System.EventHandler(this.btnSaveini_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.ForeColor = System.Drawing.Color.Green;
this.label1.Location = new System.Drawing.Point(7, 26);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(302, 27);
this.label1.TabIndex = 3;
this.label1.Text = "阿里云盘refresh_token";
//
// linkLabel1
//
this.linkLabel1.AutoSize = true;
this.linkLabel1.Location = new System.Drawing.Point(643, 26);
this.linkLabel1.Name = "linkLabel1";
this.linkLabel1.Size = new System.Drawing.Size(316, 27);
this.linkLabel1.TabIndex = 4;
this.linkLabel1.TabStop = true;
this.linkLabel1.Text = "如何获取refresh_token?";
this.linkLabel1.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.linkLabel1_LinkClicked);
//
// dataGridView1
//
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dataGridView1.EditMode = System.Windows.Forms.DataGridViewEditMode.EditOnEnter;
this.dataGridView1.Location = new System.Drawing.Point(13, 56);
this.dataGridView1.Name = "dataGridView1";
this.dataGridView1.RowHeadersWidth = 92;
this.dataGridView1.RowTemplate.Height = 40;
this.dataGridView1.Size = new System.Drawing.Size(946, 630);
this.dataGridView1.TabIndex = 5;
//
// cbisexit
//
this.cbisexit.AutoSize = true;
this.cbisexit.Location = new System.Drawing.Point(973, 217);
this.cbisexit.Name = "cbisexit";
this.cbisexit.Size = new System.Drawing.Size(233, 31);
this.cbisexit.TabIndex = 6;
this.cbisexit.Tag = "";
this.cbisexit.Text = "签到后自动退出";
this.cbisexit.UseVisualStyleBackColor = true;
//
// cbAuto
//
this.cbAuto.AutoSize = true;
this.cbAuto.Location = new System.Drawing.Point(973, 164);
this.cbAuto.Name = "cbAuto";
this.cbAuto.Size = new System.Drawing.Size(287, 31);
this.cbAuto.TabIndex = 6;
this.cbAuto.Text = "打开程序时自动签到";
this.cbAuto.UseVisualStyleBackColor = true;
//
// btnSign
//
this.btnSign.Location = new System.Drawing.Point(973, 579);
this.btnSign.Name = "btnSign";
this.btnSign.Size = new System.Drawing.Size(287, 107);
this.btnSign.TabIndex = 2;
this.btnSign.Text = "签到";
this.btnSign.UseVisualStyleBackColor = true;
this.btnSign.Click += new System.EventHandler(this.btnSign_Click);
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(14F, 27F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1281, 923);
this.Controls.Add(this.cbAuto);
this.Controls.Add(this.cbisexit);
this.Controls.Add(this.dataGridView1);
this.Controls.Add(this.linkLabel1);
this.Controls.Add(this.label1);
this.Controls.Add(this.btnSign);
this.Controls.Add(this.btnSaveini);
this.Controls.Add(this.rtbInfo);
this.MaximizeBox = false;
this.Name = "Form1";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "阿里云盘签到1.0";
this.Load += new System.EventHandler(this.Form1_Load);
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.RichTextBox rtbInfo;
private System.Windows.Forms.Button btnSaveini;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.LinkLabel linkLabel1;
private System.Windows.Forms.DataGridView dataGridView1;
private System.Windows.Forms.CheckBox cbisexit;
private System.Windows.Forms.CheckBox cbAuto;
private System.Windows.Forms.Button btnSign;
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C#
1
https://gitee.com/doob/alipansign.git
git@gitee.com:doob/alipansign.git
doob
alipansign
alipansign
master

搜索帮助

23e8dbc6 1850385 7e0993f3 1850385