Skip to content

Commit

Permalink
Apply XAML Styler
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-hawker committed Nov 26, 2024
1 parent 7985456 commit 18b340f
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 20 deletions.
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<Page
x:Class="ExtensionsExperiment.Samples.DispatcherQueueExtensions.KeyboardDebounceSample"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<Page x:Class="ExtensionsExperiment.Samples.DispatcherQueueExtensions.KeyboardDebounceSample"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"
mc:Ignorable="d">

<StackPanel Spacing="8">
<TextBox PlaceholderText="Type here..." TextChanged="TextBox_TextChanged"/>
<TextBlock x:Name="ResultText"/>
<TextBox PlaceholderText="Type here..."
TextChanged="TextBox_TextChanged" />
<TextBlock x:Name="ResultText" />
</StackPanel>
</Page>
20 changes: 10 additions & 10 deletions components/Extensions/samples/Dispatcher/MouseDebounceSample.xaml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<Page
x:Class="ExtensionsExperiment.Samples.DispatcherQueueExtensions.MouseDebounceSample"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<Page x:Class="ExtensionsExperiment.Samples.DispatcherQueueExtensions.MouseDebounceSample"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Background="{ThemeResource ApplicationPageBackgroundThemeBrush}"
mc:Ignorable="d">

<StackPanel Spacing="8">
<Button Click="Button_Click" Content="Click Me"/>
<TextBlock x:Name="ResultText"/>
<Button Click="Button_Click"
Content="Click Me" />
<TextBlock x:Name="ResultText" />
</StackPanel>
</Page>

0 comments on commit 18b340f

Please sign in to comment.