mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
14 lines
404 B
C#
14 lines
404 B
C#
using System.Windows;
|
|
using System.Windows.Data;
|
|
|
|
namespace Flow.Launcher.Resources.MarkupExtensions;
|
|
|
|
#nullable enable
|
|
|
|
public class VisibleWhenExtension : CollapsedWhenExtension
|
|
{
|
|
protected override Visibility DefaultVisibility => Visibility.Collapsed;
|
|
protected override Visibility InvertedVisibility => Visibility.Visible;
|
|
|
|
public VisibleWhenExtension(Binding when) : base(when) { }
|
|
}
|