Ultra Geile Studenten Benutzer Oberfläche (UGSBO)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
816 B

  1. package com.ugsbo.VokableKartenSchreiber;
  2. import javafx.fxml.FXML;
  3. import javafx.scene.control.*;
  4. class VokabelKartenSchreiber{
  5. @FXML
  6. private static TextField Text_Name, Text_Frage, Text_Antwort1, Text_Antwort2, Text_Antwort3, Text_Antwort4;
  7. public static void main(String[] args) {
  8. }
  9. public static void button_absenden_pressed(){
  10. Vokabelkarte temp = new Vokabelkarte();
  11. temp.makeString(Text_Name.getText(), Text_Frage.getText(), Text_Antwort1.getText(), Text_Antwort2.getText(), Text_Antwort3.getText(), Text_Antwort4.getText());
  12. }
  13. /***
  14. * Falls die Gui nicht ganz funktioniert, hier eine Version die per Terminal gesteuert wird
  15. */
  16. public static void TerminalVersion() {
  17. VokabelnwithTerminal.start();
  18. }
  19. }