All PropertyGrids in solution now only show one property

All PropertyGrids in solution now only show one property

Some how I've managed to have every PropertyGrid in my solution only show one property. 
Even though my definition hasn't changed and includes many other properties...
  1. <!-- Property Grid -->
  2.                                 <xctk:PropertyGrid x:Name="_settingsGrid" 
  3.                                                    AutoGenerateProperties="False" 
  4.                                                    SelectedObject="{Binding SelectedWindow}"
  5.                                                    ShowTitle="False"
  6.                                                    ShowSortOptions="False"
  7.                                                    HorizontalAlignment="Stretch"
  8.                                                    VerticalAlignment="Stretch"
  9.                                                    MinHeight="250"
  10.                                                    ShowSearchBox="False"  DockPanel.Dock="Bottom">
  11.                                     <xctk:PropertyGrid.PropertyDefinitions>
  12.                                         <xctk:PropertyDefinition TargetProperties="IsDirty" />
  13.                                         <xctk:PropertyDefinition TargetProperties="DateModified" />
  14.                                         <xctk:PropertyDefinition TargetProperties="Handle" />
  15.                                         <xctk:PropertyDefinition TargetProperties="ParentHandle" />
  16.                                         <xctk:PropertyDefinition TargetProperties="ThreadId" />
  17.                                         <xctk:PropertyDefinition TargetProperties="Title"  />
  18.                                         <xctk:PropertyDefinition TargetProperties="ClassName" />
  19.                                         <xctk:PropertyDefinition TargetProperties="State" />
  20.                                         <xctk:PropertyDefinition TargetProperties="ProcessName" />
  21.                                         <xctk:PropertyDefinition TargetProperties="ProcessId" />
  22.                                         <xctk:PropertyDefinition TargetProperties="Styles" />
  23.                                         <xctk:PropertyDefinition TargetProperties="State" />
  24.                                         <xctk:PropertyDefinition TargetProperties="X" />
  25.                                         <xctk:PropertyDefinition TargetProperties="Y" />
  26.                                         <xctk:PropertyDefinition TargetProperties="Width" />
  27.                                         <xctk:PropertyDefinition TargetProperties="Height" />
  28.                                         <xctk:PropertyDefinition TargetProperties="IsVisible" />
  29.                                         <xctk:PropertyDefinition TargetProperties="IsMonitored" />
  30.                                         <xctk:PropertyDefinition TargetProperties="IsApplicationRelated" />
  31.                                         <xctk:PropertyDefinition TargetProperties="ScreenName" />
  32.                                         <xctk:PropertyDefinition TargetProperties="HasChildren" />
  33.                                         <xctk:PropertyDefinition TargetProperties="Children" />
  34.                                         <xctk:PropertyDefinition TargetProperties="RuleResults" />
  35.                                         <xctk:PropertyDefinition TargetProperties="Owner" />
  36.                                         <xctk:PropertyDefinition TargetProperties="Parent" />
  37.                                         <xctk:PropertyDefinition TargetProperties="Next" />
  38.                                         <xctk:PropertyDefinition TargetProperties="Previous" />
  39.                                         <xctk:PropertyDefinition TargetProperties="Child" />
  40.                                     </xctk:PropertyGrid.PropertyDefinitions>
  41.                                 </xctk:PropertyGrid>

When I compare the live properties of the control I see no difference between the one not functioning and an older version where it is still working.  I can also see that the other properties are loaded into memory, but have a RenderSize of 0,0.



In the functioning variant the render size shows as 585, 63 for each property.  Any thoughts?  I've spent way too many hours trying to figure this out.

Thanks in advance!