Skip to content

Commit e6e5198

Browse files
AndrewKeepCodingmichael-hawker
authored andcommitted
Fix DispatcherQueueTimerExtensions sample file reference issue
1 parent 98f69b5 commit e6e5198

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

components/Extensions/samples/Dispatcher/KeyboardDebounceSample.xaml renamed to components/Extensions/samples/DispatcherQueueTimerExtensions/KeyboardDebounceSample.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Page x:Class="ExtensionsExperiment.Samples.DispatcherQueueExtensions.KeyboardDebounceSample"
1+
<Page x:Class="ExtensionsExperiment.Samples.DispatcherQueueTimerExtensions.KeyboardDebounceSample"
22
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
33
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
44
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"

components/Extensions/samples/Dispatcher/KeyboardDebounceSample.xaml.cs renamed to components/Extensions/samples/DispatcherQueueTimerExtensions/KeyboardDebounceSample.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
using DispatcherQueueTimer = Windows.System.DispatcherQueueTimer;
1212
#endif
1313

14-
namespace ExtensionsExperiment.Samples.DispatcherQueueExtensions;
14+
namespace ExtensionsExperiment.Samples.DispatcherQueueTimerExtensions;
1515

1616
[ToolkitSample(id: nameof(KeyboardDebounceSample), "DispatcherQueueTimer Debounce Keyboard", description: "A sample for showing how to use the DispatcherQueueTimer Debounce extension to smooth keyboard input.")]
1717
[ToolkitSampleNumericOption("Interval", 120, 60, 240)]

components/Extensions/samples/Dispatcher/MouseDebounceSample.xaml renamed to components/Extensions/samples/DispatcherQueueTimerExtensions/MouseDebounceSample.xaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Page x:Class="ExtensionsExperiment.Samples.DispatcherQueueExtensions.MouseDebounceSample"
1+
<Page x:Class="ExtensionsExperiment.Samples.DispatcherQueueTimerExtensions.MouseDebounceSample"
22
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
33
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
44
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"

components/Extensions/samples/Dispatcher/MouseDebounceSample.xaml.cs renamed to components/Extensions/samples/DispatcherQueueTimerExtensions/MouseDebounceSample.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
using DispatcherQueueTimer = Windows.System.DispatcherQueueTimer;
1212
#endif
1313

14-
namespace ExtensionsExperiment.Samples.DispatcherQueueExtensions;
14+
namespace ExtensionsExperiment.Samples.DispatcherQueueTimerExtensions;
1515

1616
[ToolkitSample(id: nameof(MouseDebounceSample), "DispatcherQueueTimer Debounce Mouse", description: "A sample for showing how to use the DispatcherQueueTimer Debounce extension to smooth mouse input.")]
1717
[ToolkitSampleNumericOption("Interval", 400, 300, 1000)]

0 commit comments

Comments
 (0)