repaint
What are the benefits to using DoEvents over Repaint on a userform in VBA?
What are the benefits to using DoEvents over Repaint on a userform in VBA? Is it due to performance, for minimising the annoyance of things such as screen flicker, or for when you need to update more[详细]
2023-01-27 13:19 分类:问答Prevent repainting of window in C++
I am writing a global hook DLL that needs to do some drawing using GDI+ on a window in response to an event. My problem is that the window that is being drawn keeps repainting itself, so what I draw g[详细]
2023-01-26 20:19 分类:问答Java repaint method does not work when called from another class
I have been coding up Java with Netbeans for about a year now, and have written a lot of data manipulation code which plots graphs on-screen. I generally plant a JPanel object in my main window, write[详细]
2023-01-26 19:53 分类:问答How to improve painting performance of DataGridView?
(sorry for bad English) I have a big problem with performance of DataGridView when it re-paints. I\'m using a DataGridView to show logs from an external application stream. Messages from the stream[详细]
2023-01-26 17:46 分类:问答repaint in a loop
I am writing a game using Java Swing. I want to paint each time a loop executes with a small delay in between to create a cascade effect on screen. I believe that the efficiency routines in the system[详细]
2023-01-24 11:06 分类:问答paintComponent() leaving behind previously drawn images after repaint()
I have a JPanel which draws .png images. each image has 2 copies to signify whether or not it has been selected. One image is normal and one has a colored border to signify the selection has been made[详细]
2023-01-23 10:55 分类:问答Java Repaint on MouseMoved causes lag
I\'m trying to make my java app repaint each time the mouse has been moved to update the screen when the user moved over a diagram ( -> display the name of the diagram ) and when the user does not mov[详细]
2023-01-23 08:46 分类:问答Why does a partially hidden JFrame not repaint properly on Linux when switching between virtual desktops
we have problems with Java 6 applications that do not properly refresh when switching virtual desktops. The problem so far has been reproduced on Fedora 11 and 13 with GNOME and Suse SLES 10 with KDE.[详细]
2023-01-23 03:59 分类:问答Fast Repaint Question ( Canvas Object )
New Details: Repaint method of my JPanel object does not work when called from inside actionPerformed event of my main class. It DOES work inside the ImageViewer method of the main class ImageViewer[详细]
2023-01-22 18:35 分类:问答Delphi 6 - Bitmap only updates when owner window requires a repaint when using the Graphics32 library
I have an application that creates 3D motion on a TPaintBox Canvas using native Delphi code.In the old code I rendered the 3D image to a temporary TBitmap on a Timer event.In the TPaintBox OnPaint() e[详细]
2023-01-19 14:44 分类:问答