Hi, I have a FlowDocument (inside a RichTextBox) that contains UIElement controls such as CheckBoxes. I need the user to be able to click on the CheckBox to select it to change the controls properties such as label, background color etc.
The problem I have is that when I click it it only checks, or unchecks the CheckBox as you would expect. How would I have the CheckBox display a border around itself when clicked on and not change the checked value. Making the IsEnabled property false means that I can't even access the control at all, it is not recognised.
I guess the simplest explanation of what I am trying to achieve is similar to Expression Blend, or Visual Studio visual designer. When the user clicks a CheckBox it gets selected, rather than the checked value toggling.
I have tried searching all over for this but don't know what direction to proceed. Any help would be appreciated.