|
- using AlibabaCloud.SDK.Iot20180120.Models;
- 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 BPASmartClient.MorkF.Convert
- {
- internal class PotActionToVisibilityConvert : IValueConverter
- {
- public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
- {
- Visibility vs = Visibility.Collapsed;
- if(value is string action)
- {
- switch (action)
- {
- case "":
- default:
- break;
- }
- }
- return vs;
- }
-
- public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
- {
- throw new NotImplementedException();
- }
- }
- }
|