e-register check Püfungvorbereitung und -abschluss

This commit is contained in:
Stoyan Zlatev
2024-12-03 17:03:33 +01:00
parent 6bb2ba0b68
commit a385f35efd
88 changed files with 5088 additions and 1213 deletions
@@ -0,0 +1,16 @@
namespace Common.UI.Infrastructure
{
using System;
using System.Globalization;
using System.Windows;
using System.Windows.Data;
public class BooleanToVisibilityConverter : IValueConverter
{
public object Convert(object value, Type targetType, Object parameter, CultureInfo culture)
=> value is bool visible && visible ? Visibility.Visible : Visibility.Collapsed;
public object ConvertBack(object value, Type targetType, Object parameter, CultureInfo culture)
=> throw new NotImplementedException();
}
}