or
ItemsSource="{Binding Path=(ns:class.property)}"
does it support this syntax for strong type binding?
also is it supported in the columns? in the
DataMemberBinding
?<TextBlock Text="Sex" Grid.Column="1" Grid.Row="2" VerticalAlignment="Top" HorizontalAlignment="Left" Foreground="Black" FontWeight="Bold" Margin="0,0,0,0" />//its respective editor is<ComboBox Text="{Binding Sex}" Grid.Column="2" Grid.Row="2" VerticalAlignment="Top" HorizontalAlignment="Left" Foreground="Black" Width="70" Background="Transparent" BorderBrush="Transparent" Opacity="1" OpacityMask="White" IsEditable="False" Height="Auto"> <ComboBoxItem /> <s:String>Male</s:String> <s:String>Female</s:String> </ComboBox>//Binding of the column.<Controls:GridViewDataColumn Header="Sex" DataMemberBinding="{Binding Sex}" />