12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- 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 PDF_Master.DataConvert
- {
- public class TextAlignToCheckedConverter : IValueConverter
- {
- public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
- {
- if (value is string)
- {
- if (parameter is string)
- {
- var args = (string)value;
- if ((string)parameter == "AlignLeft" && args == "Left")
- {
- return true;
- }
- if ((string)parameter == "AlignCenter" && args == "Center")
- {
- return true;
- }
- if ((string)parameter == "AlignRight" && args == "Right")
- {
- return true;
- }
- if ((string)parameter == "Justify" && args == "Justify")
- {
- return true;
- }
- }
- }
- return false;
- }
- public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
- {
- throw new NotImplementedException();
- }
- }
- }
|