Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
570
UltraTabControl....HELP!
posted

I have deployed a Windows application using Infragistics 2008 Vol 1 (CLR 2.0) at a client site.

In both the development area (missed it before production) and on the deployed applications, we are having a problem with the client area of the tabs on the tab control.

What is occuring is a 'ghost' partial image of the controls of a 'busy' tab are still visible after navigating to a tab with fewer controls.

It's fairly maddening. How can I make sure that the client area of the tab control is 'cleared' when switching to a different tab?

Parents
No Data
Reply
  • 37774
    Suggested Answer
    posted

    I'm not quite sure what you're referring to, but you could try calling Invalidate on the tab control itself to force it to repaint.  You could also try something like:

    this.ultraTabControl1.UIElement.DirtyChildElements();

    -Matt

Children