comparison MetroWpf/MetroWpf.Xaml/Converters/ContentVisibilityConverter.cs @ 15:060f02cd4591

Initial commit, pre airport work
author stevenh7776 stevenhollidge@hotmail.com
date Mon, 12 Mar 2012 23:05:21 +0800
parents
children
comparison
equal deleted inserted replaced
14:741981715d94 15:060f02cd4591
1 namespace MetroWpf.Xaml.Converters
2 {
3 using System;
4 using System.Windows;
5 using System.Windows.Data;
6
7 public class ContentToCollapsedConverter : IValueConverter
8 {
9 public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
10 {
11 if (value != null && !string.IsNullOrEmpty(value.ToString()))
12 {
13 return Visibility.Visible;
14 }
15 else
16 {
17 return Visibility.Collapsed;
18 }
19 }
20
21 public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
22 {
23 return value;
24 }
25 }
26 }