vote up 2 vote down star

Hi everyone,

I am having a tricky problem, I want some slightly unusual behaviour from a checkbox and can't seem to figure it out. Any suggestions would be most welcome. The behaviour I want is:

  1. The CheckBox is enabled and ready for the user to click, IsChecked represents a bound boolean value stored in a data structure
  2. The user clicks the CheckBox causing the click event to fire but the bound value in the data structure is NOT updated and the visual representation of the CheckBox is NOT updated but it is disabled to stop further clicking
  3. The click event triggers a message to be sent to a remote device which takes some time to respond
  4. The remote device responds causing the data structure to be updated with the new value, the binding then updates the isChecked status and the CheckBox gets reenabled for further clicking

The problem I have is that although a OneWay data binding works at not updating the data structure when the CheckBox is clicked, the visual representation does change (which I think is odd, shouldn't IsChecked now act like a pointer to the value in the data structure).

I can reverse the change in the Click() event and do the disable there as well but this is pretty messy. I can also have the set property of the data structure value to set an isEnabled value which is also bound to reenable the CheckBox but that seems messy too.

Is there a clean way to do this? Perhaps with a derived CheckBox class? How can I stop the visual representation getting updated?

Thanks

Ed

flag

3 Answers

vote up 1 vote down

I don't think that creating a whole control for this is necessary. The issue that you're running into comes from the fact that the place where you see 'the check' isn't really the checkbox, it's a bullet. If we look at the ControlTemplate for a CheckBox we can see how that happens (Though I like the Blend template better). As a part of that, even though your binding on the IsChecked property is set to OneWay it is still being updated in the UI, even if it is not setting the binding value.

As such, a really simple way to fix this, is to just modify the ControlTemplate for the checkbox in question.

If we use Blend to grab the control template we can see the Bullet inside the ControlTemplate that represents the actual checkbox area.

    	<BulletDecorator SnapsToDevicePixels="true"
						 Background="Transparent">
			<BulletDecorator.Bullet>
				<Microsoft_Windows_Themes:BulletChrome Background="{TemplateBinding Background}"
													   BorderBrush="{TemplateBinding BorderBrush}"
													   IsChecked="{TemplateBinding IsChecked}"
													   RenderMouseOver="{TemplateBinding IsMouseOver}"
													   RenderPressed="{TemplateBinding IsPressed}" />
			</BulletDecorator.Bullet>
			<ContentPresenter SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}"
							  HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}"
							  Margin="{TemplateBinding Padding}"
							  VerticalAlignment="{TemplateBinding VerticalContentAlignment}"
							  RecognizesAccessKey="True" />
		</BulletDecorator>

In here, the IsChecked and RenderPressed are what are actually making the 'Check' appear, so to fix it, we can remove the binding from the IsChecked property on the ComboBox and use it to replace the TemplateBinding on the IsChecked property of the Bullet.

Here's a small sample demonstrating the desired effect, do note that to maintain the Vista CheckBox look the PresentationFramework.Aero dll needs to be added to the project.

<Window x:Class="Sample.Window1"
	xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
	xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
	xmlns:Microsoft_Windows_Themes="clr-namespace:Microsoft.Windows.Themes;assembly=PresentationFramework.Aero"
	Title="Window1"
	Height="300"
	Width="300">
<Window.Resources>
	<SolidColorBrush x:Key="CheckBoxFillNormal"
					 Color="#F4F4F4" />
	<SolidColorBrush x:Key="CheckBoxStroke"
					 Color="#8E8F8F" />
	<Style x:Key="EmptyCheckBoxFocusVisual">
		<Setter Property="Control.Template">
			<Setter.Value>
				<ControlTemplate>
					<Rectangle SnapsToDevicePixels="true"
							   Margin="1"
							   Stroke="Black"
							   StrokeDashArray="1 2"
							   StrokeThickness="1" />
				</ControlTemplate>
			</Setter.Value>
		</Setter>
	</Style>
	<Style x:Key="CheckRadioFocusVisual">
		<Setter Property="Control.Template">
			<Setter.Value>
				<ControlTemplate>
					<Rectangle SnapsToDevicePixels="true"
							   Margin="14,0,0,0"
							   Stroke="Black"
							   StrokeDashArray="1 2"
							   StrokeThickness="1" />
				</ControlTemplate>
			</Setter.Value>
		</Setter>
	</Style>
	<Style x:Key="CheckBoxStyle1"
		   TargetType="{x:Type CheckBox}">
		<Setter Property="Foreground"
				Value="{DynamicResource {x:Static SystemColors.ControlTextBrushKey}}" />
		<Setter Property="Background"
				Value="{StaticResource CheckBoxFillNormal}" />
		<Setter Property="BorderBrush"
				Value="{StaticResource CheckBoxStroke}" />
		<Setter Property="BorderThickness"
				Value="1" />
		<Setter Property="FocusVisualStyle"
				Value="{StaticResource EmptyCheckBoxFocusVisual}" />
		<Sett
link|flag
Thanks! I've made it wrong.,just read C# tag. – RMAAx May 28 at 17:32
Thanks, that's a great answer, I'll try and have a read up on ControlTemplates, is there a way I can create the template in a seperate file so I can just #using it in and apply it? I'll have a go. cheers ed – EdWaugh May 28 at 19:32
The preferred practice is to apply any ControlTemplate with a style, as shown above. What you can do is create the style in a seperate ResourceDictionary, and then apply it to the CheckBox by setting Style="{StaticResource MyStyleName}" If you'd like to go that route, you should also look at ResourceDictionary.MergedDictionaries so that you can merge the resources in xaml instead of C#. – rmoore May 28 at 20:09
that's great, I'll try and have a play with it in the next few days and see if I can get it working in my code. I got your example working, it seems perfect. thanks ed – EdWaugh May 28 at 22:30
vote up 0 vote down

Use Validation to block the boolean from getting toggled when you don't want it to - http://www.codeproject.com/KB/WPF/wpfvalidation.aspx

This is much less scary than the other answer, or hooking Clicked

link|flag
While this is a lot simpler and easier for someone new to understand this won't prevent the rendering of the CheckMark when the mouse is pressed over the CheckBox, which I feel is an incomplete UX. – rmoore Jun 5 at 0:17
You can edit the template to make this not happen – Paul Betts Jun 5 at 14:13
vote up 0 vote down

Hi,

I've been trying to create my generic ReadOnlyCheckBox style/template but I'm having a problem with the binding to the data. In the example you bind directly to the data from the ControlTemplate definition, but of course this is not really what I want, as I want to be able to declare the new checkbox something like this:

        <CheckBox x:Name="uiComboBox" Content="Does not set the backing property, but responds to it."
Style="{StaticResource ReadOnlyCheckBoxStyle}" IsChecked="{Binding MyBoolean}"  Click="uiComboBox_Click"/>

Except of course when I do this and then set the event trigger on the bullet to be a TemplateBinding of IsChecked I have exactly what I started with! I guess I don't understand why setting the binding directly in the bullet is different from setting IsChecked and then binding to that, isn't the TemplateBinding just a way of referencing what is set in the properties of the control being created? How is the Click triggering the UI update even tho the data does not get updated? Is there a trigger for Click I can override to stop the update?

I got all the DictionaryResource stuff working fine so I am happy with that, cheers for the pointer.

The other thing I was curious about was if it is possible to reduce my Control/Style template by using the BasedOn parameter in the style, then I would only override the things I actually need to change rather than declaring a lot of stuff that I think is part of the standard template anyway. I might have a play with this.

Cheers

ed

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.