2024-09-22 11:05:41 +08:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
|
2025-02-10 20:53:40 +08:00
|
|
|
|
namespace WPFluent.Converters;
|
|
|
|
|
|
|
2024-09-22 11:05:41 +08:00
|
|
|
|
public class BooleanToVisConverter : BooleanConverter<Visibility>
|
|
|
|
|
|
{
|
|
|
|
|
|
public BooleanToVisConverter() : base(Visibility.Visible, Visibility.Collapsed)
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|