Browse Source

Make ListBoxItem focusable thus selectable.

pull/72/merge
Steven Kirk 11 years ago
parent
commit
86fedfa945
  1. 1
      Perspex.Controls/ListBoxItem.cs

1
Perspex.Controls/ListBoxItem.cs

@ -25,6 +25,7 @@ namespace Perspex.Controls
static ListBoxItem() static ListBoxItem()
{ {
SelectableMixin.Attach<ListBoxItem>(IsSelectedProperty); SelectableMixin.Attach<ListBoxItem>(IsSelectedProperty);
FocusableProperty.OverrideDefaultValue<ListBoxItem>(true);
} }
/// <summary> /// <summary>

Loading…
Cancel
Save