We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81504ce commit 0c7cf48Copy full SHA for 0c7cf48
Microsoft.Toolkit.Uwp.UI.Controls.Layout/ListDetailsView/ListDetailsView.cs
@@ -3,6 +3,7 @@
3
// See the LICENSE file in the project root for more information.
4
5
using System.Collections.Generic;
6
+using System.Linq;
7
using Windows.ApplicationModel;
8
using Windows.UI.Core;
9
using Windows.UI.Xaml;
@@ -292,6 +293,11 @@ private void SetDetailsContent()
292
293
{
294
if (_detailsPresenter != null)
295
296
+ foreach(var child in _detailsPresenter.FindChildren().OfType<Control>())
297
+ {
298
+ child.Focus(FocusState.Unfocused);
299
+ }
300
+
301
// Update the content template:
302
if (_detailsPresenter.ContentTemplateSelector != null)
303
0 commit comments