is there any way to hide application bar in WinLiveTileView Control
i can't find any properties hiding application bar...
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.
Thanks! have a good day ~~