SuperDesign/Source/开发辅助工具/Tools/FrmFileTime.Designer.cs
zilinsoft 993f1ca1a9 ### 2024-12-20 星期五更新
------
#### SuperDesign    V3.0.2412.2001
- *.[新增]新增程序更新日志设置和自动发布功能。
- *.[修复]修复Post数据格式不正确时双击文本框会导致软件闪退的BUG。
2024-12-20 08:15:19 +08:00

155 lines
6.8 KiB
C#

namespace .Tools
{
partial class FrmFileTime
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <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()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmFileTime));
this.TxtPath = new ryControls.TextBoxEx2();
this.BtnConvert = new ryControls.ButtonEx();
this.BtnBrowser = new ryControls.ButtonEx();
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
this.dateTimePicker2 = new System.Windows.Forms.DateTimePicker();
this.label1 = new System.Windows.Forms.Label();
this.label2 = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// TxtPath
//
this.TxtPath.BackColor = System.Drawing.Color.White;
this.TxtPath.EmptyText = "";
this.TxtPath.Location = new System.Drawing.Point(45, 117);
this.TxtPath.MaxLength = 999999999;
this.TxtPath.Multiline = false;
this.TxtPath.Name = "TxtPath";
this.TxtPath.OnlyNumeric = false;
this.TxtPath.PasswordChar = '\0';
this.TxtPath.ReadOnly = true;
this.TxtPath.SelectedText = "";
this.TxtPath.SelectionLength = 0;
this.TxtPath.SelectionStart = 0;
this.TxtPath.Size = new System.Drawing.Size(594, 32);
this.TxtPath.TabIndex = 0;
this.TxtPath.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
this.TxtPath.ToolTip = "";
this.TxtPath.WordWrap = true;
//
// BtnConvert
//
this.BtnConvert.BaseColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(76)))), ((int)(((byte)(95)))));
this.BtnConvert.Location = new System.Drawing.Point(247, 291);
this.BtnConvert.Name = "BtnConvert";
this.BtnConvert.Size = new System.Drawing.Size(195, 61);
this.BtnConvert.TabIndex = 1;
this.BtnConvert.Text = "立即修改";
this.BtnConvert.UseVisualStyleBackColor = true;
this.BtnConvert.Click += new System.EventHandler(this.BtnConvert_Click);
//
// BtnBrowser
//
this.BtnBrowser.BaseColor = System.Drawing.Color.FromArgb(((int)(((byte)(51)))), ((int)(((byte)(76)))), ((int)(((byte)(95)))));
this.BtnBrowser.Location = new System.Drawing.Point(645, 117);
this.BtnBrowser.Name = "BtnBrowser";
this.BtnBrowser.Size = new System.Drawing.Size(41, 32);
this.BtnBrowser.TabIndex = 3;
this.BtnBrowser.Text = "...";
this.BtnBrowser.UseVisualStyleBackColor = true;
this.BtnBrowser.Click += new System.EventHandler(this.BtnBrowser_Click);
//
// openFileDialog1
//
this.openFileDialog1.Filter = "所有文件|*.*";
//
// dateTimePicker1
//
this.dateTimePicker1.CustomFormat = "yyyy年MM月dd日 HH:mm:ss";
this.dateTimePicker1.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
this.dateTimePicker1.Location = new System.Drawing.Point(137, 166);
this.dateTimePicker1.Name = "dateTimePicker1";
this.dateTimePicker1.Size = new System.Drawing.Size(200, 21);
this.dateTimePicker1.TabIndex = 4;
//
// dateTimePicker2
//
this.dateTimePicker2.CustomFormat = "yyyy年MM月dd日 HH:mm:ss";
this.dateTimePicker2.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
this.dateTimePicker2.Location = new System.Drawing.Point(137, 193);
this.dateTimePicker2.Name = "dateTimePicker2";
this.dateTimePicker2.Size = new System.Drawing.Size(200, 21);
this.dateTimePicker2.TabIndex = 5;
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(69, 172);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(53, 12);
this.label1.TabIndex = 6;
this.label1.Text = "创建时间";
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(69, 199);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(53, 12);
this.label2.TabIndex = 7;
this.label2.Text = "修改时间";
//
// FrmFileTime
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(744, 533);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.dateTimePicker2);
this.Controls.Add(this.dateTimePicker1);
this.Controls.Add(this.BtnBrowser);
this.Controls.Add(this.BtnConvert);
this.Controls.Add(this.TxtPath);
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Name = "FrmFileTime";
this.Text = "文件时间修改";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private ryControls.TextBoxEx2 TxtPath;
private ryControls.ButtonEx BtnConvert;
private ryControls.ButtonEx BtnBrowser;
private System.Windows.Forms.OpenFileDialog openFileDialog1;
private System.Windows.Forms.DateTimePicker dateTimePicker1;
private System.Windows.Forms.DateTimePicker dateTimePicker2;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.Label label2;
}
}