File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Microsoft.Toolkit.Uwp.UI.Controls.Layout Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -70,7 +70,7 @@ protected override void OnExpanded(EventArgs args)
70
70
{
71
71
Width = _normalModeWidth ;
72
72
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" ) ;
74
74
if ( _enlargeButton != null )
75
75
{
76
76
AutomationProperties . SetName ( _enlargeButton , name ) ;
@@ -86,7 +86,7 @@ protected override void OnCollapsed(EventArgs args)
86
86
{
87
87
Width = double . NaN ;
88
88
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" ) ;
90
90
if ( _enlargeButton != null )
91
91
{
92
92
AutomationProperties . SetName ( _enlargeButton , name ) ;
Original file line number Diff line number Diff line change @@ -168,7 +168,7 @@ public GridSplitter()
168
168
{
169
169
DefaultStyleKey = typeof ( GridSplitter ) ;
170
170
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" ) ;
172
172
AutomationProperties . SetName ( this , automationName ) ;
173
173
}
174
174
You can’t perform that action at this time.
0 commit comments