我在这里有一个文本框
<TextBox ...>
<TextBox.Text>
<Binding Path="MinStepDiff" UpdateSourceTrigger="PropertyChanged">
<Binding.ValidationRules>
<local:ImpellerArgsRule IsCanBeZero ="false"/>
</Binding.ValidationRules>
</Binding>
</TextBox.Text>
</TextBox>
它的内容依赖于其他 ComboBox
<ComboBox ...>
<ComboBoxItem Content="Sample1"/>
<ComboBoxItem Content="Sample2"/>
<ComboBoxItem Content="Sample3"/>
</ComboBox>
如果选择Sample1
或Sample3
,则 TextBox 应绑定到MinStepDiff
如果选中,则Sample2
TextBox 应绑定到MinTolerance
它们都是对象的属性。
我该怎么做?