Where does Datagrid come in Silverlight 5?
As the question is asked, does anyone have any idea what namespace and / or Datagrid assembly has been shipped to Silverlight 5?
It used to be in the toolbox, but now it just disappeared. All google searches and docs / assemblies show nothing ... maddening !!
Any help is appreciated.
-Thanks in advance.
source to share
(sorry for my bad english)
He is there. Here is the download link: http://silverlight.codeplex.com/releases/view/78435
This is for Silverlight 5. DataGrid
is in the assembly System.Windows.Controls.Data.dll
and namespace System.Windows.Controls.Data
.
If the DataGrid does not appear in the toolbar, try this: Add a reference to System.Windows.Controls.Data.dll Add to your UserControl:
<UserControl...
xmlns:sdk="http://schemas.microsoft.com/winfx/2006/xaml/presentation/sdk"/>
<sdk:DataGrid/>
source to share