GUI programming study notes one-GUI overview

GUI programming study notes one-GUI overview


What is GUI programming

  • Java graphical interface
  • But it ’s not popular anymore
    • 1. The interface is not beautiful
    • 2. Requires jre environment
  • Why study
    • 1. The basis of MVC, you can understand the MVC architecture and understand the listener
    • 2. It is convenient to write some gadgets by yourself
    • 3. It may be necessary to maintain the Swing interface while working, although the probability is extremely small (very old company)

GUI components

  • window
  • Pop-ups
  • panel
  • Text box
  • List box
  • Button
  • image
  • Listen for events
  • Mouse events
  • Keyboard events

GUI core technology

  • AWT (Abstract Window Tool)

  • Swing


Other uses

  • Cracking tools, plug-ins, etc. (because Java has a virtual machine, separated by a layer, it is not easy to detect)
Published 318 original articles · Like 44 · Visitors 20,000+

Guess you like

Origin blog.csdn.net/qq_43594119/article/details/105665535