Ejemplo n.º 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();
 }
Ejemplo n.º 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));
     }
 }
Ejemplo n.º 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();
 }
Ejemplo n.º 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));
     }
 }