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 e2d9e93 commit ad1800aCopy full SHA for ad1800a
Microsoft.Toolkit.Uwp.UI.Controls/BladeView/BladeItemAutomationPeer.cs
@@ -73,6 +73,12 @@ protected override string GetNameCore()
73
return name;
74
}
75
76
+ name = this.OwnerBladeItem.Header?.ToString();
77
+ if (!string.IsNullOrEmpty(name))
78
+ {
79
+ return name;
80
+ }
81
+
82
TextBlock textBlock = this.OwnerBladeItem.FindDescendant<TextBlock>();
83
if (textBlock != null)
84
{
0 commit comments