WPF click on label change checkbox isChecked property [duplicate]

偶尔善良 提交于 2019-12-01 15:16:50

问题


I’m new to WPF and try (in my opinion) an easy task but I didn’t get it. Even Google won’t help me, or I asked the wrong question.

I have a checkbox and a label; I wish that a click on the label change the isChecked property of the checkbox.

I want to do this completely in XAML with no code behind, because I wish to keep the code behind file clean of unnecessary code. Please don’t discuss on this point. I know it’s a single line of code doing this in code behind!

Working with event setter on the label doesn’t solve the problem because you can only set the handler (which is in code behind of course). Using a storyboard doesn’t help because there is no way to check the actual value of the property.

Does anyone have a good hint? Maybe I overlooked something. Please provide some code snippet for the solution.


回答1:


Paste this code into kaxaml

You'll see that clicking on the label toggles the checkbox.

[See this SO answer by Kent]

<Page
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
  <StackPanel>
    <CheckBox IsChecked="{Binding IsChecked, ElementName=checkbox}" Content="Hello">
        <CheckBox.Template>
            <ControlTemplate TargetType="CheckBox">
                <ContentPresenter/>
            </ControlTemplate>
        </CheckBox.Template>
    </CheckBox>
    <CheckBox x:Name="checkbox" Content="A normal checkbox"/>
</StackPanel>
</Page>



回答2:


You can also do this:

<CheckBox>
    <Label Content="Your text here"/>
</CheckBox>

One limitation though is that the text will have to be on the right side of the checkbox.



来源:https://stackoverflow.com/questions/15087124/wpf-click-on-label-change-checkbox-ischecked-property

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!