Hi all,
I am using XceedDataGrid Control in a usercontrol. But when i am setting the width of XceedDataGrid Control to "Auto" then at runtime it is throughing a error saying
"Unable to find assembly 'Xceed.Wpf.DataGrid, Version=3.0.8415.15000, Culture=neutral, PublicKeyToken=ba83ff368b7563c6'." .But when i am setiing any width ,its working fine . What could be the problem ??
For more clarification i am copying the xaml code here:
<StackPanel VerticalAlignment="Top" >
<xcdg:DataGridControl Grid.Row="0" Name="dataGridControl1" VerticalAlignment="Top" AutoCreateColumns="False" Width="Auto" Height="65" ReadOnly="True" >
<xcdg:DataGridControl.Columns>
<xcdg:Column FieldName="Name" Visible="False" Title=" Name" ReadOnly="True" IsMainColumn="True" ></xcdg:Column>
<xcdg:Column FieldName="Help" ReadOnly="True" Title="Help" CellContentTemplate="{StaticResource DataTemplKioskHelp}"></xcdg:Column>
</xcdg:DataGridControl.Columns>
<xcdg:DataGridControl.View>
<xcdg:CardView CardWidth="75" UseDefaultHeadersFooters="False" AllowCardResize="False">
<xcdg:CardView.Theme>
<xcdg:WMP11Theme />
</xcdg:CardView.Theme>
</xcdg:CardView>
</xcdg:DataGridControl.View>
</xcdg:DataGridControl>
</StackPanel>