| 1234567891011121314151617181920 | 
							- using System;
 
- using System.Globalization;
 
- using System.Windows;
 
- using System.Windows.Data;
 
- namespace MediaBrowser.UI.Converters
 
- {
 
-     public class WeatherVisibilityConverter : IValueConverter
 
-     {
 
-         public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
 
-         {
 
-             return value == null ? Visibility.Collapsed : Visibility.Visible;
 
-         }
 
-         public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
 
-         {
 
-             throw new NotImplementedException();
 
-         }
 
-     }
 
- }
 
 
  |