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 BoolToExpandedStyleConverter : IValueConverter { public object Convert(object value, Type targetType, object parameter, CultureInfo culture) { if (value is bool isExpanded && isExpanded) { return Application.Current.FindResource("ExpandedParentMenuButtonStyle"); } return Application.Current.FindResource("ParentMenuButtonStyle"); } public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture) { throw new NotImplementedException(); } } }