?? successpage.cs
字號:
?namespace Imps.Client.Pc.Password
{
using Imps.Client.Pc.Controls;
using System;
using System.ComponentModel;
using System.Drawing;
using System.Windows.Forms;
public class SuccessPage : StepPageBase
{
private IContainer components;
private XLabel lbMessageTip;
public SuccessPage(SetPasswordWizard host) : base(host)
{
this.InitializeComponent();
}
protected override void Dispose(bool disposing)
{
if (disposing && (this.components != null))
{
this.components.Dispose();
}
base.Dispose(disposing);
}
public override bool GetValidData()
{
return true;
}
private void InitializeComponent()
{
this.lbMessageTip = new XLabel();
base.SuspendLayout();
this.lbMessageTip.BorderColor = Color.Empty;
this.lbMessageTip.ButtonBorderStyle = ButtonBorderStyle.None;
this.lbMessageTip.Font = new Font("Microsoft Sans Serif", 12f, FontStyle.Bold, GraphicsUnit.Point, 0);
this.lbMessageTip.Location = new Point(3, 0x6f);
this.lbMessageTip.Name = "lbMessageTip";
this.lbMessageTip.Size = new Size(0x142, 0x2a);
this.lbMessageTip.TabIndex = 0x15;
this.lbMessageTip.Text = "您的密碼已設置成功,請記住新的密碼!";
this.lbMessageTip.UseMnemonic = false;
base.AutoScaleDimensions = new SizeF(6f, 13f);
base.AutoScaleMode = AutoScaleMode.Font;
base.Controls.Add(this.lbMessageTip);
base.Name = "SuccessPage";
base.Size = new Size(0x163, 0x164);
base.ResumeLayout(false);
}
public override void MoveToNextStage()
{
base._host.Close();
}
public override string CancelConfirmMsg
{
get
{
return string.Empty;
}
}
public override bool CanMovePrivious
{
get
{
return false;
}
}
public override string NextStepText
{
get
{
return "完成";
}
}
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -