Merge pull request #337 from telerik/Nasko/lv-handle-space
Prevent handling of the ListViewItem's KeyDown when the sender is not…
This commit is contained in:
Коммит
f662432d7a
|
@ -517,6 +517,11 @@ namespace Telerik.UI.Xaml.Controls.Data.ListView
|
|||
{
|
||||
base.OnKeyDown(e);
|
||||
|
||||
if (e.OriginalSource != this)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
bool success = false;
|
||||
this.ListView.currentLogicalIndex = this.logicalIndex;
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче