20
|
1 using System;
|
|
2 using System.Windows.Data;
|
|
3
|
|
4 namespace Stocks.UI.Converters
|
|
5 {
|
|
6 public class BoolToSubscribedTextConverter : IValueConverter
|
|
7 {
|
|
8 #region IValueConverter Members
|
|
9
|
|
10 public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
|
|
11 {
|
|
12 return (bool) value ? "Subscribed" : "Unsubscribed";
|
|
13 }
|
|
14
|
|
15 public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
|
|
16 {
|
|
17 throw new NotImplementedException();
|
|
18 }
|
|
19
|
|
20 #endregion
|
|
21 }
|
|
22 } |