-
Apologies for such a mundane question, but is there an efficient way to redraw an individual |
Beta Was this translation helpful? Give feedback.
Answered by
tznind
Feb 7, 2023
Replies: 1 comment
-
I don't think you can refresh an individual item but you can use If you are doing this from a Thread though I would make sure to call wrapped with |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I don't think you can refresh an individual item but you can use
StatusBar.SetNeedsDisplay()
to redraw the whole bar (but not rest of the UI).If you are doing this from a Thread though I would make sure to call wrapped with
Application.MainLoop.Invoke(()=>myStatusBar.SetNeedsDisplay());
.