Skip to content

Commit 625716b

Browse files
Scroll indicators test change in code behind
Co-authored-by: Rosario Pulella <[email protected]>
1 parent 4ee302d commit 625716b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Microsoft.Toolkit.Uwp.SampleApp/SamplePages/ListViewExtensions/ListViewExtensionsPage.xaml.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,13 +72,13 @@ private void UpdateScrollIndicator(bool isScrolling)
7272
{
7373
if (isScrolling)
7474
{
75-
ScrollIndicatorTest.Text = "Scroll started";
75+
ScrollIndicatorTest.Text = "Scrolling";
7676
ScrollIndicator.Fill = new SolidColorBrush(Colors.Green);
7777
}
7878
else
7979
{
8080
ScrollIndicator.Fill = new SolidColorBrush(Colors.Red);
81-
ScrollIndicatorTest.Text = "Scroll completed";
81+
ScrollIndicatorTest.Text = "Not Scolling";
8282
}
8383
}
8484

@@ -121,4 +121,4 @@ private static async void OnExecuteSampleCommand(string item)
121121
await new MessageDialog($"You clicked {item} via the 'ListViewExtensions.Command' binding", "Item Clicked").ShowAsync();
122122
}
123123
}
124-
}
124+
}

0 commit comments

Comments
 (0)