Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/xamarin/Xamarin.PropertyEditing.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Maupin <ermaup@microsoft.com>2019-02-28 19:50:52 +0300
committerEric Maupin <ermaup@microsoft.com>2019-02-28 19:50:52 +0300
commitcb2c690ce350b7cfd303eacd0d6411882ce9cc7c (patch)
tree4251fc7813131f94ba6dd59e3b62abdccb6ec090
parent4a4800024bb834be12dab8ddc749aa8f51368dd6 (diff)
[Win] VCenter combinable checkboxes on labels
-rw-r--r--Xamarin.PropertyEditing.Windows/Themes/Resources.xaml2
1 files changed, 1 insertions, 1 deletions
diff --git a/Xamarin.PropertyEditing.Windows/Themes/Resources.xaml b/Xamarin.PropertyEditing.Windows/Themes/Resources.xaml
index 6c430b9..aa1f609 100644
--- a/Xamarin.PropertyEditing.Windows/Themes/Resources.xaml
+++ b/Xamarin.PropertyEditing.Windows/Themes/Resources.xaml
@@ -52,7 +52,7 @@
<ItemsControl Focusable="{TemplateBinding Focusable}" ItemsSource="{Binding Choices,Mode=OneTime}">
<ItemsControl.ItemTemplate>
<DataTemplate>
- <CheckBox Foreground="{DynamicResource ListItemForegroundBrush}" FocusVisualStyle="{StaticResource GenericVisualFocusStyle}" IsChecked="{Binding IsFlagged,Mode=TwoWay}" Margin="0,1,0,1" Content="{Binding Name,Mode=OneTime}" />
+ <CheckBox Foreground="{DynamicResource ListItemForegroundBrush}" FocusVisualStyle="{StaticResource GenericVisualFocusStyle}" IsChecked="{Binding IsFlagged,Mode=TwoWay}" Margin="0,1,0,1" VerticalContentAlignment="Center" Content="{Binding Name,Mode=OneTime}" />
</DataTemplate>
</ItemsControl.ItemTemplate>
</ItemsControl>