You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
414 B

  1. namespace BPA.UIControl.Converters
  2. {
  3. /// <summary>
  4. /// bool - 取反
  5. /// </summary>
  6. public class BooleanToInverseConverter : BooleanConverter<bool>
  7. {
  8. /// <summary>
  9. /// Initializes a new instance of the <see cref="BooleanToInverseConverter"/> class.
  10. /// </summary>
  11. public BooleanToInverseConverter()
  12. : base(false, true)
  13. {
  14. }
  15. }
  16. }