Windows Vista Forums
Vista Forums Home Join Vista Forums Windows 7 Forum Vista Tutorials Tags
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.

Go Back   Vista Forums > Misc Newsgroups > Avalon

Vista - Grid question

 
 
Old 08-08-2007   #1 (permalink)
Yoavo


 
 

Grid question

Hi,
Is there in WPF a grid control which its cells can be edit controls or
combpbox controls ?

Yoav.



My System SpecsSystem Spec
Old 09-17-2007   #2 (permalink)
Thorsten Tarrach [MSFT]


 
 

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 SpecsSystem Spec
 

Thread Tools


Similar Threads
Thread Forum
Trying to play GRID....need help please! Gaming


Vista Forums is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows Vista", the Start Orb, and related materials are trademarks of Microsoft Corp.
© Designer Media Ltd

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46