Example #1
0
 private void 创建钱包数据库NToolStripMenuItem_Click(object sender, EventArgs e)
 {
     using (CreateWalletDialog dialog = new CreateWalletDialog())
     {
         if (dialog.ShowDialog() != DialogResult.OK) return;
         Program.CurrentWallet = UserWallet.CreateDatabase(dialog.WalletPath, dialog.Password);
     }
     OnWalletChanged();
 }
Example #2
0
 private void 创建钱包数据库NToolStripMenuItem_Click(object sender, EventArgs e)
 {
     using (CreateWalletDialog dialog = new CreateWalletDialog())
     {
         if (dialog.ShowDialog() != DialogResult.OK)
         {
             return;
         }
         ChangeWallet(UserWallet.Create(dialog.WalletPath, dialog.Password));
     }
 }
Example #3
0
 private void 创建钱包数据库NToolStripMenuItem_Click(object sender, EventArgs e)
 {
     using (CreateWalletDialog dialog = new CreateWalletDialog())
     {
         if (dialog.ShowDialog() != DialogResult.OK)
         {
             return;
         }
         Program.CurrentWallet = UserWallet.CreateDatabase(dialog.WalletPath, dialog.Password);
     }
     OnWalletChanged();
 }
Example #4
0
 private void 创建钱包数据库NToolStripMenuItem_Click(object sender, EventArgs e)
 {
     using (CreateWalletDialog dialog = new CreateWalletDialog())
     {
         if (dialog.ShowDialog() != DialogResult.OK) return;
         ChangeWallet(UserWallet.Create(dialog.WalletPath, dialog.Password));
     }
 }