if (Application.Current.Host.Content.IsFullScreen)
{
}Private Sub MainPage_Loaded(ByVal sender As Object, ByVal e As System.Windows.RoutedEventArgs) Handles Me.Loaded AddHandler App.Current.Host.Content.FullScreenChanged, AddressOf fullScreenChanged End Sub Private Sub fullScreenChanged() If Not App.Current.Host.Content.IsFullScreen Then Logo.Visibility = Visibility.Collapsed End If End Sub