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 6883d49 commit 9395e9aCopy full SHA for 9395e9a
MaterialDesignThemes.Wpf/Transitions/TransitioningContentBase.cs
@@ -4,6 +4,7 @@
4
using System.Linq;
5
using System.Windows;
6
using System.Windows.Controls;
7
+using System.Windows.Input;
8
using System.Windows.Media;
9
using System.Windows.Media.Animation;
10
@@ -53,6 +54,8 @@ public override void OnApplyTemplate()
53
54
if (_translateTransform != null)
55
RegisterName(TranslateTransformPartName, _translateTransform);
56
57
+ KeyboardNavigation.SetIsTabStop(this, false);
58
+
59
base.OnApplyTemplate();
60
}
61
0 commit comments