Difference between paint() and paintcomponent()?

后端 未结 2 1720
刺人心
刺人心 2020-11-27 21:33

I have tried tutorials on this but I still don\'t quite understand it. Basically my question is which method is better and why? Should I use paint or pain

相关标签:
2条回答
  • 2020-11-27 22:10

    Generally speaking, when painting in Swing, it is recommended to override paintComponent.

    There are a number of reasons why, one is paintComponent is painted at the bottom layer, meaning you won't accidentally wiping out any components that were rendered during the paint process - this happens a lot to people who post here.

    There are a, very, few times you might need to override paint, but I would always encourage you to try making it work with paintComponent first.

    Check out

    • Performing custom painting
    • Painting in AWT and Swing (+1 to trashgod)
    0 讨论(0)
  • 2020-11-27 22:21

    Quoting from documentation of paint() method

    This method actually delegates the work of painting to three protected methods: paintComponent, paintBorder, and paintChildren. ... A subclass that just wants to specialize the UI (look and feel) delegate's paint method should just override paintComponent.

    It looks like the paint() method actually draws the component, including the border and children. If you only want to customize the component's appearance excluding the border and children, you use paintComponent().

    http://docs.oracle.com/javase/7/docs/api/javax/swing/JComponent.html#paint(java.awt.Graphics)

    0 讨论(0)
提交回复
热议问题