[dismiss]
På yggenyk.dk bruger vi cookies til at give dig en god oplevelse og til at indsamle statistik, der kan være med til at forbedre brugeroplevelsen. Hvis du klikker på et link på yggenyk.dk, accepterer du samtidig vores cookiepolitik.
Universal Windows Platform UWP: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 23: | Line 23: | ||
* [https://msdn.microsoft.com/en-us/library/windows/apps/mt299136.aspx ListViewItem styles and templates] | * [https://msdn.microsoft.com/en-us/library/windows/apps/mt299136.aspx ListViewItem styles and templates] | ||
* [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 Vertiallly and scroll sideways you can style it like this: | |||
<GridView> | |||
<GridView.ItemsPanel> | |||
<ItemsPanelTemplate> | |||
<ItemsWrapGrid MaximumRowsOrColumns="3" Orientation="Vertical" /> | |||
</ItemsPanelTemplate> | |||
</GridView.ItemsPanel> | |||
</GridView> | |||
===Styling buttons=== | ===Styling buttons=== |
Revision as of 17:32, 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 Vertiallly and scroll sideways you can style it like this: <GridView> <GridView.ItemsPanel> <ItemsPanelTemplate> <ItemsWrapGrid MaximumRowsOrColumns="3" Orientation="Vertical" /> </ItemsPanelTemplate> </GridView.ItemsPanel> </GridView>