12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using System.Globalization;
- using System.Windows.Data;
- namespace ComPDFKit.Controls.Common
- {
- public class TextLengthToBoolConverter: IValueConverter
- {
- public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
- {
- if (value == null)
- {
- return false;
- }
- else
- {
- if (value is string)
- {
- string checkStr = (string)value;
- if (string.IsNullOrEmpty(checkStr) == false )
- {
- return true;
- }
- }
- return false;
- }
- }
- public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
- {
- return null;
- }
- }
- }
|