Skip to content

Instantly share code, notes, and snippets.

@idiotandrobot
Last active January 29, 2018 14:54
Embed
What would you like to do?
Stretch UWP MasterDetailsView ListViewItems to full width
<controls:MasterDetailsView>
<controls:MasterDetailsView.ItemContainerStyle>
<Style TargetType="ListViewItem">
<Setter Property="HorizontalContentAlignment" Value="Stretch" />
</Style>
</controls:MasterDetailsView.ItemContainerStyle>
</controls:MasterDetailsView>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment