星火微课系统客户端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213141516171819
  1. using System;
  2. using System.Windows;
  3. using System.Windows.Data;
  4. namespace ComeCapture.Converters
  5. {
  6. public class ToolConverter : IValueConverter
  7. {
  8. public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
  9. {
  10. return value.ToString() == parameter.ToString() ? Visibility.Visible : Visibility.Collapsed;
  11. }
  12. public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
  13. {
  14. return null;
  15. }
  16. }
  17. }