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:
Diffstat (limited to 'Xamarin.PropertyEditing.Windows')
-rw-r--r--Xamarin.PropertyEditing.Windows/Themes/PropertyEditorPanelStyle.xaml8
1 files changed, 7 insertions, 1 deletions
diff --git a/Xamarin.PropertyEditing.Windows/Themes/PropertyEditorPanelStyle.xaml b/Xamarin.PropertyEditing.Windows/Themes/PropertyEditorPanelStyle.xaml
index 9d66a6e..3fe3c53 100644
--- a/Xamarin.PropertyEditing.Windows/Themes/PropertyEditorPanelStyle.xaml
+++ b/Xamarin.PropertyEditing.Windows/Themes/PropertyEditorPanelStyle.xaml
@@ -74,7 +74,13 @@
<DataTemplate x:Key="PropertyGroupTemplate">
<local:CategoryExpander Header="{Binding Key,Mode=OneTime}" Style="{StaticResource TreeExpanderStyle}">
- <ItemsControl Style="{StaticResource PropertyListStyle}" ScrollViewer.CanContentScroll="False" ScrollViewer.VerticalScrollBarVisibility="Disabled" ItemsSource="{Binding}" />
+ <ItemsControl Style="{StaticResource PropertyListStyle}" ItemsSource="{Binding}">
+ <ItemsControl.Template>
+ <ControlTemplate>
+ <ItemsPresenter />
+ </ControlTemplate>
+ </ItemsControl.Template>
+ </ItemsControl>
</local:CategoryExpander>
</DataTemplate>