Universal Windows Platform UWP: Difference between revisions
Jump to navigation
Jump to search
Line 24: | Line 24: | ||
* [https://msdn.microsoft.com/en-us/library/windows/apps/mt299127.aspx GridViewItem styles and templates] | * [https://msdn.microsoft.com/en-us/library/windows/apps/mt299127.aspx GridViewItem styles and templates] | ||
If you want your GridView to be filled | If you want your GridView to be filled Vertically and scroll sideways you can style it like this: | ||
<syntaxhighlight lang="python" line='xaml'> | <syntaxhighlight lang="python" line='xaml'> | ||
<GridView> | <GridView> |
Revision as of 17:36, 6 February 2017
Bindings
Cimbalino Toolkit
Cimbalino Toolkit depends on Microsoft.Xaml.Behaviors.Uwp.Managed.
Cimbalino Toolkit Samples
Styling
Styling ListView and GridView
- ListView and GridView UI optimization
- ListViewItem styles and templates
- GridViewItem styles and templates
If you want your GridView to be filled Vertically and scroll sideways you can style it like this: <syntaxhighlight lang="python" line='xaml'> <GridView>
<GridView.ItemsPanel> <ItemsPanelTemplate> <ItemsWrapGrid Orientation="Vertical" /> </ItemsPanelTemplate> </GridView.ItemsPanel>
</GridView> </syntaxhighlight>