GridView item selector does not appears on Desktop #19491
-
I'm using a GridView to d <GridView Grid.Column="0"
x:Name="GridMaquines"
ItemsSource="{x:Bind VM.Terminals, Mode=OneWay}"
ItemTemplate="{StaticResource OsmoTerminalTemplate}"
SelectedItem="{x:Bind VM.TerminalActual, Mode=TwoWay}"
Padding="10"
SelectionMode="Single">
<GridView.ItemContainerStyle>
<Style TargetType="GridViewItem"
BasedOn="{StaticResource DefaultGridViewItemStyle}">
<Setter Property="Margin"
Value="3" />
</Style>
</GridView.ItemContainerStyle>
</GridView> |
Beta Was this translation helpful? Give feedback.
Answered by
morning4coffe-dev
Feb 14, 2025
Replies: 1 comment
-
Hey @mcNets, thank you for sharing the details. I have managed to reproduce this and it seems to be an issue when you add the |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
morning4coffe-dev
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey @mcNets,
thank you for sharing the details. I have managed to reproduce this and it seems to be an issue when you add the
ItemContainerStyle
on the GridView. I opened an Issue to track this further: #19527 . In the meantime removing the style should help.