| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Windows;
- using System.Windows.Data;
- namespace Muchinfo.MTPClient.Infrastructure.Converters
- {
- public class RiskLevelToVisibilityConverter : IValueConverter
- {
- public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
- {
- if (value == null || value.ToString() == "" || decimal.Parse(value.ToString())==-1)
- {
- return Visibility.Collapsed;
- }
- if (decimal.Parse(value.ToString()) >= 0)
- {
- return Visibility.Visible;
- }
- return Visibility.Collapsed;
- }
- public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
- {
- throw new NotImplementedException();
- }
- }
- public class RiskLevelToVisibilityDifConverter : IValueConverter
- {
- public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
- {
- if (value == null || value.ToString() == "" || decimal.Parse(value.ToString()) == -1)
- {
- return Visibility.Visible;
- }
- if (decimal.Parse(value.ToString()) >= 0)
- {
- return Visibility.Collapsed;
- }
- return Visibility.Visible;
- }
- public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
- {
- throw new NotImplementedException();
- }
- }
- }
|