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
160
Can you show me how to styling a Tool Window to default style of OS (Ex: windows 10)
posted

Current Tool Window always showing in Windows XP style. 

Can you show me how to styling a Tool Window to default style of Windows OS (Ex: windows 10). 

I am setting Themes to "LunaNormal"

Parents
No Data
Reply
  • 7555
    Offline posted

    Hello Cao,

    You could try hooking the ToolWindowLoaded and set the ‘UseOSNonClientArea’ property, which is use to set indicating whether the content should use the operating system.

    Something like this:

    private void mainDockManager_ToolWindowLoaded(object sender, Infragistics.Windows.DockManager.Events.PaneToolWindowEventArgs e)
    {
    e.Window.UseOSNonClientArea = false;

    }

    Let me know if this helped.

Children