
I am using Actipro grids for a WPF application and data is not showing up on the grids. Grid properties are not shown when the page is loaded. But when we click on a property or a property gets focus, the value shows up. The value soon disappears when we click on another property or when it loses focus.
This is what I am doing -
xmlns:propgrid="http://schemas.actiprosoftware.com/winfx/xaml/grids"
xmlns:propdata="clr-namespace:ActiproSoftware.Windows.Controls.Grids.PropertyData;assembly=ActiproSoftware.Grids.Wpf"
<propgrid:PropertyGrid AreCategoriesAutoExpanded="False" DockPanel.Dock="Top">
<propgrid:PropertyGrid.Properties>
<propdata:PropertyModel DisplayName="ID" Category="AAProperties" Description="AA ID" CanAutoConfigure="True"
Value="{Binding Path=AA.A.Id, ValidatesOnDataErrors=True, Mode=OneWay}" IsValueReadOnly="True"/>
<propdata:PropertyModel DisplayName="Background" Category="AAProperties" Margin="0" HorizontalAlignment="Stretch" VerticalAlignment="Stretch"
Value="{Binding Path=AA.A.Color, ValidatesOnDataErrors=True, Mode=TwoWay}"
/>