/// <summary>
        /// 绑定资产
        /// </summary>
        private void GotoBindAsset()
        {
            this.Hide();
            DomainAccount bindStep1Form = new DomainAccount();

            bindStep1Form.ShowDialog();
        }
        private void btnLastStep_Click(object sender, EventArgs e)
        {
            this.Hide();

            DomainAccount bindStep1Form = new DomainAccount(UserName);

            bindStep1Form.ShowDialog();

            this.Close();
        }