更改FTP文件导入
This commit is contained in:
94
FATrace.App/frmMessage.Designer.cs
generated
Normal file
94
FATrace.App/frmMessage.Designer.cs
generated
Normal file
@@ -0,0 +1,94 @@
|
||||
namespace FATrace.App
|
||||
{
|
||||
partial class frmMessage
|
||||
{
|
||||
/// <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(frmMessage));
|
||||
lblMessage = new Label();
|
||||
btnTrue = new Button();
|
||||
bntCancel = new Button();
|
||||
SuspendLayout();
|
||||
//
|
||||
// lblMessage
|
||||
//
|
||||
lblMessage.Font = new Font("微软雅黑", 21.75F, FontStyle.Bold, GraphicsUnit.Point, 134);
|
||||
lblMessage.ForeColor = Color.Blue;
|
||||
lblMessage.Location = new Point(22, 36);
|
||||
lblMessage.Name = "lblMessage";
|
||||
lblMessage.Size = new Size(710, 165);
|
||||
lblMessage.TabIndex = 0;
|
||||
lblMessage.Text = "消息内容";
|
||||
lblMessage.TextAlign = ContentAlignment.MiddleCenter;
|
||||
//
|
||||
// btnTrue
|
||||
//
|
||||
btnTrue.Font = new Font("Microsoft YaHei UI", 21.75F, FontStyle.Bold, GraphicsUnit.Point, 134);
|
||||
btnTrue.ForeColor = SystemColors.ControlDarkDark;
|
||||
btnTrue.Location = new Point(180, 246);
|
||||
btnTrue.Name = "btnTrue";
|
||||
btnTrue.Size = new Size(146, 66);
|
||||
btnTrue.TabIndex = 1;
|
||||
btnTrue.Text = "确 认";
|
||||
btnTrue.UseVisualStyleBackColor = true;
|
||||
btnTrue.Click += btnTrue_Click;
|
||||
//
|
||||
// bntCancel
|
||||
//
|
||||
bntCancel.Font = new Font("Microsoft YaHei UI", 21.75F, FontStyle.Bold, GraphicsUnit.Point, 134);
|
||||
bntCancel.ForeColor = SystemColors.ControlDarkDark;
|
||||
bntCancel.Location = new Point(384, 246);
|
||||
bntCancel.Name = "bntCancel";
|
||||
bntCancel.Size = new Size(146, 66);
|
||||
bntCancel.TabIndex = 2;
|
||||
bntCancel.Text = "取 消";
|
||||
bntCancel.UseVisualStyleBackColor = true;
|
||||
bntCancel.Click += bntCancel_Click;
|
||||
//
|
||||
// frmMessage
|
||||
//
|
||||
AutoScaleDimensions = new SizeF(7F, 17F);
|
||||
AutoScaleMode = AutoScaleMode.Font;
|
||||
ClientSize = new Size(744, 398);
|
||||
Controls.Add(bntCancel);
|
||||
Controls.Add(btnTrue);
|
||||
Controls.Add(lblMessage);
|
||||
Icon = (Icon)resources.GetObject("$this.Icon");
|
||||
MaximizeBox = false;
|
||||
MinimizeBox = false;
|
||||
Name = "frmMessage";
|
||||
Text = "消息确认";
|
||||
ResumeLayout(false);
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private Label lblMessage;
|
||||
private Button btnTrue;
|
||||
private Button bntCancel;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user