I could like to add my own user control as the DropDownContent for the BrushEditBox (which I am using in my PropertyGrid), but I am having trouble binding the value of my user control to the BrushEditBox.
I tried doing something like this in my xaml:
<editors:BrushEditBox Value="{Binding Value}">
<editors:BrushEditBox.DropDownContent>
<MyUserControl Value="{Binding Value, RelativeSource={RelativeSource AncestorType={x:Type propgrid:IPropertyDataAccessor}},
Mode=TwoWay>
</MyUserControl>
</editors:BrushEditBox.DropDownContent>
</editors:BrushEditBox>-->
Any suggestions please?