Báo cáo tài liệu vi phạm
Giới thiệu
Kinh doanh - Marketing
Kinh tế quản lý
Biểu mẫu - Văn bản
Tài chính - Ngân hàng
Công nghệ thông tin
Tiếng anh ngoại ngữ
Kĩ thuật công nghệ
Khoa học tự nhiên
Khoa học xã hội
Văn hóa nghệ thuật
Sức khỏe - Y tế
Văn bản luật
Nông Lâm Ngư
Kỹ năng mềm
Luận văn - Báo cáo
Giải trí - Thư giãn
Tài liệu phổ thông
Văn mẫu
THỊ TRƯỜNG NGÀNH HÀNG
NÔNG NGHIỆP, THỰC PHẨM
Gạo
Rau hoa quả
Nông sản khác
Sữa và sản phẩm
Thịt và sản phẩm
Dầu thực vật
Thủy sản
Thức ăn chăn nuôi, vật tư nông nghiệp
CÔNG NGHIỆP
Dệt may
Dược phẩm, Thiết bị y tế
Máy móc, thiết bị, phụ tùng
Nhựa - Hóa chất
Phân bón
Sản phẩm gỗ, Hàng thủ công mỹ nghệ
Sắt, thép
Ô tô và linh kiện
Xăng dầu
DỊCH VỤ
Logistics
Tài chính-Ngân hàng
NGHIÊN CỨU THỊ TRƯỜNG
Hoa Kỳ
Nhật Bản
Trung Quốc
Hàn Quốc
Châu Âu
ASEAN
BẢN TIN
Bản tin Thị trường hàng ngày
Bản tin Thị trường và dự báo tháng
Bản tin Thị trường giá cả vật tư
Tìm
Danh mục
Kinh doanh - Marketing
Kinh tế quản lý
Biểu mẫu - Văn bản
Tài chính - Ngân hàng
Công nghệ thông tin
Tiếng anh ngoại ngữ
Kĩ thuật công nghệ
Khoa học tự nhiên
Khoa học xã hội
Văn hóa nghệ thuật
Y tế sức khỏe
Văn bản luật
Nông lâm ngư
Kĩ năng mềm
Luận văn - Báo cáo
Giải trí - Thư giãn
Tài liệu phổ thông
Văn mẫu
NGÀNH HÀNG
NÔNG NGHIỆP, THỰC PHẨM
Gạo
Rau hoa quả
Nông sản khác
Sữa và sản phẩm
Thịt và sản phẩm
Dầu thực vật
Thủy sản
Thức ăn chăn nuôi, vật tư nông nghiệp
CÔNG NGHIỆP
Dệt may
Dược phẩm, Thiết bị y tế
Máy móc, thiết bị, phụ tùng
Nhựa - Hóa chất
Phân bón
Sản phẩm gỗ, Hàng thủ công mỹ nghệ
Sắt, thép
Ô tô và linh kiện
Xăng dầu
DỊCH VỤ
Logistics
Tài chính-Ngân hàng
NGHIÊN CỨU THỊ TRƯỜNG
Hoa Kỳ
Nhật Bản
Trung Quốc
Hàn Quốc
Châu Âu
ASEAN
BẢN TIN
Bản tin Thị trường hàng ngày
Bản tin Thị trường và dự báo tháng
Bản tin Thị trường giá cả vật tư
Thông tin
Tài liệu Xanh là gì
Điều khoản sử dụng
Chính sách bảo mật
0
Trang chủ
Công Nghệ Thông Tin
Kỹ thuật lập trình
Lecture Java programming language: GUIs and Event-Driven programming - Ho Dac Hung
Đang chuẩn bị liên kết để tải về tài liệu:
Lecture Java programming language: GUIs and Event-Driven programming - Ho Dac Hung
Việt Cương
163
23
pdf
Không đóng trình duyệt đến khi xuất hiện nút TẢI XUỐNG
Tải xuống
Lecture Java programming language: GUIs and Event-Driven programming provide knowledge about what is a gui, the swing package, the swing package, the Jbutton class, handling events, layout manager, controlling layout, getting input from the user, | GUIs and Event-Driven Programming Ho Dac Hung 1 What is a GUI A GUI is a graphical user interface. 2 What is a GUI Not only does a GUI use components such as frames buttons text fields to communicate with the user but GUIs are event-driven. An event- driven application executed code in response to events. A GUI responds to an event by executing a method called an event handler. 3 The Swing Package The Swing API is part of the Java Foundation Classes and contains numerous components for creating GUIs. A frame is a top-level container for a GUI which holds and displays all the other components of an interface in a content frame. 4 The Swing Package setDefaultLookAndFeelDecorated boolean setDefaultCloseOperation class constant getContentPane setContentPane Container contentPane pack setVisible boolean 5 The Swing Package A Jframe object uses a content pane to hold GUI components A Jpanel object is one choice for a simple content pane. add Component GUIcomponent remove int index 6 The Swing Package The swing package include the JLabel class for creating labels that can be added to a content pane. JLabel String str JLabel String str align constant setText String str 7 The JButton Class A button is commonly used GUI component. A button can be clicked by the user to communicate with the application. 8 The JButton Class JButton String str setActionCommand String cmd getActionCommand addActionListener Object 9 Handling Events Swing components use listeners to determine if an event has occurred. A listener is an object that listen for action events. When an event is heard the listener responds by executing an event handler named actionPerformed . The actionPerformed method has an ActionEvent parameter passed by the GUI when an event occurs. The ActionEnevt parameter passed by the GUI when an event occurs. 10 Controlling Layout Layout refers to the arrangement of components In a Swing GUI the layout of a content pane can be controlled by adding border using a layout manager
TÀI LIỆU LIÊN QUAN
Lecture Introduction to programming with Java - Chapter 3: Java basics
Lecture Introduction to programming with Java - Chapter 6: Object-oriented programming
Lecture Introduction to programming with Java - Chapter 7: Object-oriented programming – Additional details
Lecture Introduction to programming with Java - Chapter 1: Introduction to computers and programming
Lecture Introduction to programming with Java - Chapter 16: GUI programming basics
Lecture Introduction to Java programming - Chapter 2: Elementary programming
Lecture Introduction to Java programming - Chapter 16: Event-driven programming
Lecture Introduction to programming with Java - Chapter 2: Algorithms and design
Lecture Introduction to programming with Java - Chapter 4: Control statements
Lecture Introduction to programming with Java - Chapter 5: Using pre-built methods
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.