多重绑定与复选框

时间:2014-11-22 10:56:34

标签: c# wpf multibinding

我想绑定两个控件的值,一个是文本框,一个是复选框, 对于文本框,我使用

<Binding ElementName="txtName" Path="Text" /> //Works fine

我无法理解如何检查是否选中了复选框, 我正在使用以下代码,

<MultiBinding Converter="{StaticResource MyCustomConvertor}" 
              UpdateSourceTrigger="PropertyChanged">
    <Binding ElementName="txtQuantity" Path="Text" />
              <!--Here will be my checkbox,how do I write it-->
</MultiBinding>

0 个答案:

没有答案