当前位置: 首页>>代码示例>>Java>>正文


Java GuiUtils.fadeOut方法代码示例

本文整理汇总了Java中wallettemplate.utils.GuiUtils.fadeOut方法的典型用法代码示例。如果您正苦于以下问题:Java GuiUtils.fadeOut方法的具体用法?Java GuiUtils.fadeOut怎么用?Java GuiUtils.fadeOut使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在wallettemplate.utils.GuiUtils的用法示例。


在下文中一共展示了GuiUtils.fadeOut方法的14个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: newWallet

import wallettemplate.utils.GuiUtils; //导入方法依赖的package包/类
@FXML protected void newWallet(ActionEvent event) throws IOException {
 
 createWallet(null);
 createAuthenticatorObject();
 
 shouldCreateNewAccountOnFinish = true;
 
 // update params in main
 Main.returnedParamsFromSetup = appParams;
 
 for (String word : walletSeed.getMnemonicCode()){mnemonic = mnemonic + word + " ";}
 lblSeed.setText(mnemonic);
 
 Animation ani = GuiUtils.fadeOut(MainPane);
 GuiUtils.fadeIn(SetPasswordPane);
 MainPane.setVisible(false);
 SetPasswordPane.setVisible(true);
}
 
开发者ID:BitcoinAuthenticator,项目名称:Wallet,代码行数:19,代码来源:StartupController.java

示例2: toMainPane

import wallettemplate.utils.GuiUtils; //导入方法依赖的package包/类
@FXML protected void toMainPane(ActionEvent event) {
 shouldCreateNewAccountOnFinish = false;
 Animation ani = GuiUtils.fadeOut(MainRestorePane);
 Animation ani2 = GuiUtils.fadeOut(SetPasswordPane);
 GuiUtils.fadeIn(MainPane);
 SetPasswordPane.setVisible(false);
 MainRestorePane.setVisible(false);
 MainPane.setVisible(true);
}
 
开发者ID:BitcoinAuthenticator,项目名称:Wallet,代码行数:10,代码来源:StartupController.java

示例3: openWeb

import wallettemplate.utils.GuiUtils; //导入方法依赖的package包/类
@FXML protected void openWeb(ActionEvent event){
 Animation ani = GuiUtils.fadeOut(SetPasswordPane);
 GuiUtils.fadeIn(Pane6);
 SetPasswordPane.setVisible(false);
 Pane6.setVisible(true);
 browser.autosize();
 URL location = Main.class.getResource("passwords.html");
 browser.getEngine().load(location.toString());
}
 
开发者ID:BitcoinAuthenticator,项目名称:Wallet,代码行数:10,代码来源:StartupController.java

示例4: toBackupNewWalletPane

import wallettemplate.utils.GuiUtils; //导入方法依赖的package包/类
@FXML protected void toBackupNewWalletPane(ActionEvent event) {
 if (txAccount.getText().toString().equals("")){
	 informationalAlert("Unfortunately, you messed up.",
			 "You need to enter a name for your account");
 }
 
 if(handlePasswordPane(txPW1.getText(), txPW2.getText()))
 {
	 try {
		firstAccountName = txAccount.getText();
		//createNewStandardAccount(txAccount.getText());
		
		ckSeed.selectedProperty().addListener(new ChangeListener<Boolean>() {
			 public void changed(ObservableValue<? extends Boolean> ov,
					 Boolean old_val, Boolean new_val) {
				 if (ckSeed.isSelected()){
					 btnContinue2.setStyle("-fx-background-color: #95d946;");
				 }
				 else {
					 btnContinue2.setStyle("-fx-background-color: #badb93;");
				 }
			 }
		 });
		 Animation ani = GuiUtils.fadeOut(SetPasswordPane);
		 GuiUtils.fadeIn(BackupNewWalletPane);
		 SetPasswordPane.setVisible(false);
		 BackupNewWalletPane.setVisible(true);
		 //Main.bitcoin.wallet().encrypt(txPW1.getText().toString());
	} catch (Exception e) { 
		e.printStackTrace();
		GuiUtils.informationalAlert("Cannot Create account !", "Please try again");
	}
	 
 }
}
 
开发者ID:BitcoinAuthenticator,项目名称:Wallet,代码行数:36,代码来源:StartupController.java

示例5: learnMore

import wallettemplate.utils.GuiUtils; //导入方法依赖的package包/类
@FXML protected void learnMore(){
	Animation ani = GuiUtils.fadeOut(Pane1);
	GuiUtils.fadeIn(Pane2);
	Pane1.setVisible(false);
	Pane2.setVisible(true);
}
 
开发者ID:BitcoinAuthenticator,项目名称:Wallet,代码行数:7,代码来源:OneNameController.java

示例6: goBack

import wallettemplate.utils.GuiUtils; //导入方法依赖的package包/类
@FXML protected void goBack(){
	Animation ani = GuiUtils.fadeOut(Pane2);
	GuiUtils.fadeIn(Pane1);
	Pane2.setVisible(false);
	Pane1.setVisible(true);
}
 
开发者ID:BitcoinAuthenticator,项目名称:Wallet,代码行数:7,代码来源:OneNameController.java

示例7: restoreFromSeed

import wallettemplate.utils.GuiUtils; //导入方法依赖的package包/类
@FXML protected void restoreFromSeed(ActionEvent event) {
 Animation ani = GuiUtils.fadeOut(MainPane);
 GuiUtils.fadeIn(MainRestorePane);
 MainPane.setVisible(false);
 MainRestorePane.setVisible(true);
}
 
开发者ID:BitcoinAuthenticator,项目名称:Wallet,代码行数:7,代码来源:StartupController.java

示例8: toCreateAccountPane

import wallettemplate.utils.GuiUtils; //导入方法依赖的package包/类
@FXML protected void toCreateAccountPane(ActionEvent event) {
 Animation ani = GuiUtils.fadeOut(BackupNewWalletPane);
 GuiUtils.fadeIn(SetPasswordPane);
 BackupNewWalletPane.setVisible(false);
 SetPasswordPane.setVisible(true);
}
 
开发者ID:BitcoinAuthenticator,项目名称:Wallet,代码行数:7,代码来源:StartupController.java

示例9: backToBackupNewWalletPane

import wallettemplate.utils.GuiUtils; //导入方法依赖的package包/类
@FXML protected void backToBackupNewWalletPane(ActionEvent event){
 Animation ani = GuiUtils.fadeOut(ExplanationPane1);
 GuiUtils.fadeIn(BackupNewWalletPane);
 ExplanationPane1.setVisible(false);
 BackupNewWalletPane.setVisible(true);
}
 
开发者ID:BitcoinAuthenticator,项目名称:Wallet,代码行数:7,代码来源:StartupController.java

示例10: webFinished

import wallettemplate.utils.GuiUtils; //导入方法依赖的package包/类
@FXML protected void webFinished(ActionEvent event){
 Animation ani = GuiUtils.fadeOut(Pane6);
 GuiUtils.fadeIn(SetPasswordPane);
 Pane6.setVisible(false);
 SetPasswordPane.setVisible(true);
}
 
开发者ID:BitcoinAuthenticator,项目名称:Wallet,代码行数:7,代码来源:StartupController.java

示例11: openSSS

import wallettemplate.utils.GuiUtils; //导入方法依赖的package包/类
@FXML protected void openSSS(ActionEvent event){
 Animation ani = GuiUtils.fadeOut(BackupNewWalletPane);
 GuiUtils.fadeIn(SSSBackupPane);
 BackupNewWalletPane.setVisible(false);
 SSSBackupPane.setVisible(true); 
}
 
开发者ID:BitcoinAuthenticator,项目名称:Wallet,代码行数:7,代码来源:StartupController.java

示例12: returntoBackupNewWalletPane

import wallettemplate.utils.GuiUtils; //导入方法依赖的package包/类
@FXML protected void returntoBackupNewWalletPane(ActionEvent event){
 Animation ani = GuiUtils.fadeOut(SSSBackupPane);
 GuiUtils.fadeIn(BackupNewWalletPane);
 SSSBackupPane.setVisible(false);
 BackupNewWalletPane.setVisible(true);
}
 
开发者ID:BitcoinAuthenticator,项目名称:Wallet,代码行数:7,代码来源:StartupController.java

示例13: showGCM

import wallettemplate.utils.GuiUtils; //导入方法依赖的package包/类
@FXML protected void showGCM() {
  	Animation ani = GuiUtils.fadeOut(pairPane);
GuiUtils.fadeIn(gcmPane);
  	pairPane.setVisible(false);
  	gcmPane.setVisible(true);
  }
 
开发者ID:BitcoinAuthenticator,项目名称:Wallet,代码行数:7,代码来源:PairWallet.java

示例14: showPairing

import wallettemplate.utils.GuiUtils; //导入方法依赖的package包/类
@FXML protected void showPairing() {
  	Animation ani = GuiUtils.fadeOut(gcmPane);
GuiUtils.fadeIn(pairPane);
  	gcmPane.setVisible(false);
  	pairPane.setVisible(true);
  }
 
开发者ID:BitcoinAuthenticator,项目名称:Wallet,代码行数:7,代码来源:PairWallet.java


注:本文中的wallettemplate.utils.GuiUtils.fadeOut方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。