File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
Microsoft.Toolkit.Uwp.SampleApp/SamplePages/ListViewExtensions Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -54,13 +54,13 @@ private void Load()
54
54
var index = int . TryParse ( indexInput . Text , out var i ) ? i : 0 ;
55
55
var itemPlacement = itemPlacementInput . SelectedItem switch
56
56
{
57
- "Default" => UI . ItemPlacement . Default ,
58
- "Left" => UI . ItemPlacement . Left ,
59
- "Top" => UI . ItemPlacement . Top ,
60
- "Center" => UI . ItemPlacement . Center ,
61
- "Right" => UI . ItemPlacement . Right ,
62
- "Bottom" => UI . ItemPlacement . Bottom ,
63
- _ => UI . ItemPlacement . Default
57
+ "Default" => ItemPlacement . Default ,
58
+ "Left" => ItemPlacement . Left ,
59
+ "Top" => ItemPlacement . Top ,
60
+ "Center" => ItemPlacement . Center ,
61
+ "Right" => ItemPlacement . Right ,
62
+ "Bottom" => ItemPlacement . Bottom ,
63
+ _ => ItemPlacement . Default
64
64
} ;
65
65
66
66
var disableAnimation = disableAnimationInput . IsChecked ?? false ;
You can’t perform that action at this time.
0 commit comments