Browse Source

Support out of the box Member Selector in DropDown

pull/2122/head
Andrey Kunchev 8 years ago
parent
commit
850cbfdbf0
  1. 3
      src/Avalonia.Controls/DropDown.cs

3
src/Avalonia.Controls/DropDown.cs

@ -284,7 +284,8 @@ namespace Avalonia.Controls
}
else
{
SelectionBoxItem = item;
var selector = MemberSelector;
SelectionBoxItem = selector != null ? selector.Select(item) : item;
}
}

Loading…
Cancel
Save