123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- using System.Globalization;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows;
- using System.Windows.Data;
- namespace EfemDualUI.Converter
- {
- public class VisibilityConverter : IValueConverter
- {
- public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
- {
- int target = 1;
- if (parameter != null)
- {
- target = int.Parse(parameter.ToString());
- }
- return (int)value == target ? Visibility.Visible : Visibility.Hidden;
- }
- public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
- {
- throw new NotImplementedException();
- }
- }
- }
|