![]() |
![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() |
| Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks. |
| |||||||
| |
| | #1 (permalink) |
| | Grid question Hi, Is there in WPF a grid control which its cells can be edit controls or combpbox controls ? Yoav. |
My System Specs![]() |
| | #2 (permalink) |
| | Re: Grid question Hi Yoavo, this is actually possible using a listview: The following is from How to: Display ListView Contents by Using a GridView <ListView ItemsSource="{Binding Source={StaticResource EmployeeData}, XPath=Employee}"> <ListView.View> <GridView> <GridViewColumn Header="First Name" DisplayMemberBinding="{Binding XPath=FirstName}" /> <GridViewColumn Header="Last Name" DisplayMemberBinding="{Binding XPath=LastName}" /> <GridViewColumn Header="Favorite City" DisplayMemberBinding="{Binding XPath=FavoriteCity}"/> </GridView> </ListView.View> </ListView> If you want the user to change the content of the table you can replace the GridViewColumn by this: <GridViewColumn Header="Title"> <GridViewColumn.CellTemplate> <DataTemplate> <TextBox Text="{Binding Path=Description}"/> </DataTemplate> </GridViewColumn.CellTemplate> </GridViewColumn> You will need an ItemsSource for you items. That could be an ObservableCollection with classes that have a couple of properties, in this case "Description". Do not forget to implement the INotifyPropertyChanged Interface for your data class. Thorsten -- This posting is provided "AS IS" with no warranties, and confers no rights. Use of included script samples are subject to the terms specified at http://www.microsoft.com/info/cpyright.htm |
My System Specs![]() |
| Thread Tools | |
| |
Similar Threads | ||||
| Thread | Forum | |||
| Trying to play GRID....need help please! | Gaming | |||