Skip to content

Commit 979ce51

Browse files
michael-hawkerArlodotexe
authored andcommitted
Fix XAML Styling
1 parent 904616c commit 979ce51

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

components/SettingsControls/samples/SettingsExpanderDragHandleSample.xaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<Page x:Class="SettingsControlsExperiment.Samples.SettingsExpanderDragHandleSample"
1+
<Page x:Class="SettingsControlsExperiment.Samples.SettingsExpanderDragHandleSample"
22
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
33
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
44
xmlns:Interactivity="using:Microsoft.Xaml.Interactivity"
@@ -37,7 +37,7 @@
3737
FontSize="20"
3838
Foreground="{ThemeResource TextFillColorSecondaryBrush}"
3939
Text="&#x283F;" />
40-
<!-- Use Behaviors to hover on pointer -->
40+
<!-- Use Behaviors to hover on pointer -->
4141
<Interactivity:Interaction.Behaviors>
4242
<Interactivity:EventTriggerBehavior EventName="PointerEntered">
4343
<Interactivity:ChangePropertyAction PropertyName="Background">
@@ -55,15 +55,15 @@
5555
</Interactivity:EventTriggerBehavior>
5656
</Interactivity:Interaction.Behaviors>
5757
</Border>
58-
<!-- Standard Settings Expander (could also just be a Card) -->
58+
<!-- Standard Settings Expander (could also just be a Card) -->
5959
<controls:SettingsExpander Grid.Column="1"
6060
Description="{x:Bind Info}"
6161
Header="{x:Bind Name}"
6262
IsExpanded="{x:Bind IsExpanded, Mode=TwoWay}">
6363

64-
<ToggleSwitch OffContent="Off"
65-
OnContent="On"
66-
IsOn="{x:Bind IsExpanded, Mode=TwoWay}"/>
64+
<ToggleSwitch IsOn="{x:Bind IsExpanded, Mode=TwoWay}"
65+
OffContent="Off"
66+
OnContent="On" />
6767

6868
<controls:SettingsExpander.Items>
6969
<controls:SettingsCard Header="{x:Bind LinkDescription}">
@@ -75,7 +75,7 @@
7575
</Grid>
7676
</DataTemplate>
7777
</ListView.ItemTemplate>
78-
<!-- Customize Size of Item Container from ListView -->
78+
<!-- Customize Size of Item Container from ListView -->
7979
<ListView.ItemContainerStyle>
8080
<Style BasedOn="{StaticResource DefaultListViewItemStyle}"
8181
TargetType="ListViewItem">

0 commit comments

Comments
 (0)