代碼private void UcAdreess_ContentControlChange(object sender, ButtonClickEventArgs e)
{
this.tbAddress.Focus();
}
代碼public override void Forward()
{
MsgFail msg = new MsgFail();
if (System.Windows.Forms.DialogResult.OK == msg.ShowDialog())
{
UcDriverComplaint com = new UcDriverComplaint();
this.ChangeControl(com);
}
}
代碼public override void Back()
{
UcDriverNotice notice = new UcDriverNotice();
ChangeControl(notice, true);
//base.Back();
}