BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//American Young Coder - ECPv6.10.1.1//NONSGML v1.0//EN
CALSCALE:GREGORIAN
METHOD:PUBLISH
X-ORIGINAL-URL:https://www.ayclogic.com
X-WR-CALDESC:Events for American Young Coder
REFRESH-INTERVAL;VALUE=DURATION:PT1H
X-Robots-Tag:noindex
X-PUBLISHED-TTL:PT1H
BEGIN:VTIMEZONE
TZID:America/Los_Angeles
BEGIN:DAYLIGHT
TZOFFSETFROM:-0800
TZOFFSETTO:-0700
TZNAME:PDT
DTSTART:20200308T100000
END:DAYLIGHT
BEGIN:STANDARD
TZOFFSETFROM:-0700
TZOFFSETTO:-0800
TZNAME:PST
DTSTART:20201101T090000
END:STANDARD
END:VTIMEZONE
BEGIN:VEVENT
DTSTART;TZID=America/Los_Angeles:20200613T150000
DTEND;TZID=America/Los_Angeles:20200613T160000
DTSTAMP:20260429T195211
CREATED:20200616T050624Z
LAST-MODIFIED:20200616T050813Z
UID:3695-1592060400-1592064000@www.ayclogic.com
SUMMARY:3 PM - Intro To Java
DESCRIPTION:We went over FlowPane\nWe went over BorderPane\nHomework:\n\nModify the BorderPane project that we did in the class. I have uploaded the files to the google drive if you missed the last class.\n\nInside sample.fxml on the BorderPane tag element\, add the following\n\nfx:controller="sample.Controller"\n\nSo it will probably look similar to this\n\n<BorderPane fx:controller="sample.Controller" prefHeight="300.0" prefWidth="400.0" xmlns="http://javafx.com/javafx/10.0.2-internal" xmlns:fx="http://javafx.com/fxml/1">\n\n\n\nRemove all the buttons on the top and on the left sections.\nRemove the top FlowPane and left FlowPane.\nAdd a FlowPane on the bottom of BorderPane.\nUsing BorderPane\, FlowPane and Gridpane like we learned last week\, create a user interface like the following:\n\nWhen you click Show Info button do the following\n\nIt needs to call the Controller.showInforAlert method like below\n\n\npublic void showInfoAlert(ActionEvent ae) {\n    Alert a = new Alert(Alert.AlertType.INFORMATION);\n    String message = "Hello World\n";\n    message += "JavaFX";\n    a.setHeaderText("Welcome To AYCLOGIC");\n    a.setContentText(message);\n    a.show();\n}\n\n\n\nYou need to connect the sample.fxml “Show Info” button with this “showInfoAlert(ActionEvent ae)” method like we have done in the class before.\nIf you do it correctly\, when you click the “Show Info” button\, it will show a popup dialog like the following\n\n\n\n\n\n\nWhen you click Submit button it will do the following\n\nGet the text from the first text field. The one right next to the First Name label.\nGet the text from the second text field. The one right next to the Last Name label.\nGet the text from the last text field. The one right next to the Phone label.\nDisplay an alert with all of those 3 informations from the text fields like the following\n\n\nYou need to follow example fro “Show Info” button on how to create an Alert Dialog like above.\n\n\n\n\nWhen you click Clear button\, it will clear all the 3 text fields.
URL:https://www.ayclogic.com/event/3-pm-intro-to-java-13/
CATEGORIES:Introduction To Java
END:VEVENT
END:VCALENDAR