We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The Fluent2 ListView styles do NOT support GridView at all. This is pretty common in WPF for lightweight tables.
<ListView ItemsSource="{Binding ListResults}" SelectionMode="Single"> <ListView.View> <GridView> <GridViewColumn DisplayMemberBinding="{Binding Name}" Header="Name" /> <GridViewColumn DisplayMemberBinding="{Binding Description}" Header="Desc" /> </GridView> </ListView.View> </ListView>
We should see a table with Name and Desc headers in the above example.
Nothing is shown -- or -- the default .ToString() is shown.
No response
The text was updated successfully, but these errors were encountered:
I see a similar issue was reported here: #10076
However, that doesn't clearly indicate its the GridView View that is the problem.
This is a pretty serious one and should have been fixed before .NET 9 release...
Sorry, something went wrong.
No branches or pull requests
Description
The Fluent2 ListView styles do NOT support GridView at all. This is pretty common in WPF for lightweight tables.
Reproduction Steps
Expected behavior
We should see a table with Name and Desc headers in the above example.
Actual behavior
Nothing is shown -- or -- the default .ToString() is shown.
Regression?
No response
Known Workarounds
No response
Impact
No response
Configuration
No response
Other information
No response
The text was updated successfully, but these errors were encountered: