using System; using System.Collections.Generic; using System.Globalization; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System.Windows.Data; namespace AIK.Views.Converters { public class BoolToSelectedStyleConverter : IValueConverter { public object Convert(object value, Type targetType, object parameter, CultureInfo culture) { if (value is bool isSelected && isSelected) { return Application.Current.FindResource("SelectedChildMenuButtonStyle"); } return Application.Current.FindResource("ChildMenuButtonStyle"); } public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) { throw new NotImplementedException(); } } }