123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- using System;
- using System.Globalization;
- using System.Windows.Data;
- using System.Windows;
- namespace ComPDFKit.Controls.Common
- {
-
-
-
- [ValueConversion(typeof(bool), typeof(Visibility))]
- public class BoolToVisibleConverter : IValueConverter
- {
- #region IValueConverter Members
-
-
-
-
-
-
-
-
-
-
- public object Convert(
- object value,
- Type targetType,
- object parameter,
- CultureInfo culture)
- {
- if ((bool)value)
- {
- return Visibility.Visible;
- }
- else
- {
- return Visibility.Collapsed;
- }
- }
-
-
-
-
-
-
-
-
-
-
- public object ConvertBack(
- object value,
- Type targetType,
- object parameter,
- CultureInfo culture)
- {
- return (Visibility)value == Visibility.Visible;
- }
- #endregion IValueConverter Members
- }
-
-
-
- [ValueConversion(typeof(bool), typeof(Visibility))]
- public class BoolToCollapsedConverter : IValueConverter
- {
- #region IValueConverter Members
-
-
-
-
-
-
-
-
-
-
- public object Convert(
- object value,
- Type targetType,
- object parameter,
- CultureInfo culture)
- {
- if ((bool)value)
- {
- return Visibility.Collapsed;
- }
- else
- {
- return Visibility.Visible;
- }
- }
-
-
-
-
-
-
-
-
-
-
- public object ConvertBack(
- object value,
- Type targetType,
- object parameter,
- CultureInfo culture)
- {
- return null;
- }
- #endregion IValueConverter Members
- }
- }
|