1- using System . Globalization ;
1+ using System ;
2+ using System . Globalization ;
23using System . Windows ;
34using System . Windows . Data ;
45
56namespace Flow . Launcher . Converters ;
67
78public class BoolToVisibilityConverter : IValueConverter
89{
9- public object Convert ( object value , System . Type targetType , object parameter , CultureInfo culture )
10+ public object Convert ( object value , Type targetType , object parameter , CultureInfo culture )
1011 {
1112 return ( value , parameter ) switch
1213 {
@@ -18,13 +19,14 @@ public object Convert(object value, System.Type targetType, object parameter, Cu
1819 } ;
1920 }
2021
21- public object ConvertBack ( object value , System . Type targetType , object parameter , CultureInfo culture ) => throw new System . InvalidOperationException ( ) ;
22+ public object ConvertBack ( object value , Type targetType , object parameter , CultureInfo culture )
23+ => throw new InvalidOperationException ( ) ;
2224}
2325
2426public class SplitterConverter : IValueConverter
2527/* Prevents the dragging part of the preview area from working when preview is turned off. */
2628{
27- public object Convert ( object value , System . Type targetType , object parameter , CultureInfo culture )
29+ public object Convert ( object value , Type targetType , object parameter , CultureInfo culture )
2830 {
2931 return ( value , parameter ) switch
3032 {
@@ -36,5 +38,5 @@ public object Convert(object value, System.Type targetType, object parameter, Cu
3638 } ;
3739 }
3840
39- public object ConvertBack ( object value , System . Type targetType , object parameter , CultureInfo culture ) => throw new System . InvalidOperationException ( ) ;
41+ public object ConvertBack ( object value , Type targetType , object parameter , CultureInfo culture ) => throw new InvalidOperationException ( ) ;
4042}
0 commit comments