ShellSelectedConverter.cs 247 B

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