Pluginbaby:Strange that the DataGrid is not on the Blend 2.5 toolbox, but only in VS2008 !?
I also notice about that. maybe, I think DataGrid maybe under different namespace or something.
The following codes are from VS. You see the differences.
Page.xaml without DataGrid
<UserControl x:Class="SilverlightApplication1.Page"
xmlns="http://schemas.microsoft.com/client/2007"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Width="400" Height="300">
<Grid x:Name="LayoutRoot" Background="White">
<Button></Button>
</Grid>
</UserControl>
Page.xaml with DataGrid
<UserControl xmlns:my="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Data" x:Class="SilverlightApplication1.Page"
xmlns="http://schemas.microsoft.com/client/2007"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Width="400" Height="300">
<Grid x:Name="LayoutRoot" Background="White">
<my:DataGrid></my:DataGrid>
</Grid>
</UserControl>
I think that we might need some dll references or something in order to use datagird. So, Blend can't support for that or maybe, we might need to add something.
(If this has answered your question, please click on "Mark as Answer" on this post. Thank you!)
Best Regards,
Michael Sync
Blog : http://michaelsync.net
Feed : http://michaelsync.net/feed