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
45
How to hide Application Bar in WinLiveTileView Control
posted

is there any way to hide application bar in WinLiveTileView Control

i can't find any properties hiding application bar...

Parents
  • 2155
    Verified Answer
    Offline posted

    Hello Dave,

    You should be able to prevent the application bar from opening by canceling UltraLiveTileView’s ApplicationBarInitializing event like below.

            private void ultraLiveTileView1_ApplicationBarInitializing(object sender, ApplicationBarInitializingEventArgs e)
            {
                e.Cancel = true;
            }

    Please let me know if I may be of further assistance.

Reply Children
No Data