Skip to content

Commit ddb2234

Browse files
committed
Ran xaml styler
1 parent 9cd306f commit ddb2234

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

components/ColorAnalyzer/samples/AccentAnalyzerSample.xaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses this file to you under the MIT license. See the LICENSE file in the project root for more information. -->
1+
<!-- Licensed to the .NET Foundation under one or more agreements. The .NET Foundation licenses this file to you under the MIT license. See the LICENSE file in the project root for more information. -->
22
<Page x:Class="ColorAnalyzerExperiment.Samples.AccentAnalyzerSample"
33
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
44
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
@@ -21,8 +21,8 @@
2121
<ColumnDefinition Width="*" />
2222
</Grid.ColumnDefinitions>
2323

24-
<StackPanel VerticalAlignment="Center"
25-
Padding="20">
24+
<StackPanel Padding="20"
25+
VerticalAlignment="Center">
2626
<Image x:Name="AccentedImage"
2727
HorizontalAlignment="Center"
2828
Source="/ColorAnalyzerExperiment.Samples/Assets/StockImages/Bloom.jpg"

components/ColorAnalyzer/samples/ImageOptionsPane.xaml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<UserControl x:Class="ColorAnalyzerExperiment.Samples.ImageOptionsPane"
1+
<UserControl x:Class="ColorAnalyzerExperiment.Samples.ImageOptionsPane"
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"
@@ -11,27 +11,27 @@
1111
<RowDefinition Height="Auto" />
1212
<RowDefinition Height="*" />
1313
</Grid.RowDefinitions>
14-
14+
1515
<Grid.ColumnDefinitions>
1616
<ColumnDefinition Width="*" />
1717
<ColumnDefinition Width="Auto" />
1818
</Grid.ColumnDefinitions>
1919

2020
<TextBox x:Name="UrlTextbox"
21-
Margin="4"
22-
MaxWidth="500"
23-
HorizontalAlignment="Stretch"
24-
PlaceholderText="Enter a url" />
25-
26-
<Button Click="Button_Click"
21+
MaxWidth="500"
22+
Margin="4"
23+
HorizontalAlignment="Stretch"
24+
PlaceholderText="Enter a url" />
25+
26+
<Button Grid.Column="1"
2727
Margin="4"
28-
Grid.Column="1"
28+
Click="Button_Click"
2929
Content="Set Image" />
3030

31-
<GridView IsItemClickEnabled="True"
32-
Margin="4"
33-
Grid.Row="1"
31+
<GridView Grid.Row="1"
3432
Grid.ColumnSpan="2"
33+
Margin="4"
34+
IsItemClickEnabled="True"
3535
ItemClick="GridView_ItemClick"
3636
ItemsSource="{x:Bind StockImages, Mode=OneWay}"
3737
SelectionMode="Single">

0 commit comments

Comments
 (0)