The xaml below doesn't display the headers, but when i place the same colorpicker xaml outside of the context menu, the headers display. Why is this, and is there any way i can fix it?
<ListView.ContextMenu>
<ContextMenu>
<MenuItem Header="Color Format">
<xctk:ColorPicker x:Name="ColorSelector"
AvailableColors="{Binding PredefinedColors}"
AvailableColorsHeader="Available Colors"
DisplayColorAndName="True"
SelectedColor="Transparent"
SelectedColorChanged="ColorSelector_SelectedColorChanged"
ShowAdvancedButton="True"
ShowAvailableColors="True"
RecentColorsHeader="Recent Colors"
ShowDropDownButton="True"
StandardColorsHeader="Standard Colors"
ShowRecentColors="True"
ShowStandardColors="True"
Width="50" Height="25"
/>