Skip to content

Commit 7c7d1ef

Browse files
michael-hawkerRosuavio
authored andcommitted
Fix Layout package Resource Strings
1 parent d9f6174 commit 7c7d1ef

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Microsoft.Toolkit.Uwp.UI.Controls.Layout/BladeView/BladeItem.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ protected override void OnExpanded(EventArgs args)
7070
{
7171
Width = _normalModeWidth;
7272
VisualStateManager.GoToState(this, "Expanded", true);
73-
var name = "WCT_BladeView_ExpandButton_Collapsed".GetLocalized("Microsoft.Toolkit.Uwp.UI.Controls.Core/Resources");
73+
var name = "WCT_BladeView_ExpandButton_Collapsed".GetLocalized("Microsoft.Toolkit.Uwp.UI.Controls.Layout/Resources");
7474
if (_enlargeButton != null)
7575
{
7676
AutomationProperties.SetName(_enlargeButton, name);
@@ -86,7 +86,7 @@ protected override void OnCollapsed(EventArgs args)
8686
{
8787
Width = double.NaN;
8888
VisualStateManager.GoToState(this, "Collapsed", true);
89-
var name = "WCT_BladeView_ExpandButton_Expanded".GetLocalized("Microsoft.Toolkit.Uwp.UI.Controls.Core/Resources");
89+
var name = "WCT_BladeView_ExpandButton_Expanded".GetLocalized("Microsoft.Toolkit.Uwp.UI.Controls.Layout/Resources");
9090
if (_enlargeButton != null)
9191
{
9292
AutomationProperties.SetName(_enlargeButton, name);

Microsoft.Toolkit.Uwp.UI.Controls.Layout/GridSplitter/GridSplitter.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ public GridSplitter()
168168
{
169169
DefaultStyleKey = typeof(GridSplitter);
170170
Loaded += GridSplitter_Loaded;
171-
string automationName = "WCT_GridSplitter_AutomationName".GetLocalized("Microsoft.Toolkit.Uwp.UI.Controls.Core/Resources");
171+
string automationName = "WCT_GridSplitter_AutomationName".GetLocalized("Microsoft.Toolkit.Uwp.UI.Controls.Layout/Resources");
172172
AutomationProperties.SetName(this, automationName);
173173
}
174174

0 commit comments

Comments
 (0)