I have a problem with ListView design in Expression Blend, which is more complicated than I thought it should be.
I would like to just draw a screen using XAML. This WILL NOT START in the application, it is just a static design study that should be displayed exclusively for viewing in the Expression Blend design window.
I still have this:
<ListView x:Name="examList" SelectionMode="Single"> <ListView.View> <GridView> <GridViewColumn Header="Date" Width="Auto"/> <GridViewColumn Header="Setup" Width="Auto"/> <GridViewColumn Header="Protocol" Width="Auto" /> <GridViewColumn Header="Channels" Width="Auto"/> <GridViewColumn Header="Duration" Width="Auto"/> </GridView> </ListView.View> <ListViewItem> <TextBlock Text="stuff" /> </ListViewItem> </ListView>
The problem is this: I donβt know how to create ListViewItems with one row or number value for each field (each column in the GridView).
I would appreciate any help, with or without code, but a necessary requirement for my workflow is that it displays the development time inside Expression Blend without having to run the application, and it is advisable that the data is not associated with another file but entered manually directly in XAML (I do not mind, in fact I WANT it).
I found this answer , but, in my opinion, it does not do what I need.
Thanks for reading!
heltonbiker
source share