ShellSelectedConverter.cs 274 B

12345678910
  1. namespace InABox.Mobile
  2. {
  3. public class ShellSelectedConverter : AbstractConverter<IShell, bool>
  4. {
  5. protected override bool Convert(IShell value, object? parameter = null)
  6. {
  7. return value?.Parent?.IsSelected(value) == true;
  8. }
  9. }
  10. }