我在 XAML 中设计了一个联系人框
<DataTemplate>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="Auto"/>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<ComboBox Grid.Column="0" SelectedItem="{Binding Type, UpdateSourceTrigger=PropertyChanged, Mode=TwoWay}">
<ComboBoxItem Content="1">Mobile</ComboBoxItem>
<ComboBoxItem Content="2">Phone</ComboBoxItem>
</ComboBox>
<TextBox Text="{Binding Contact, UpdateSourceTrigger=PropertyChanged, Mode=TwoWay}" />
</Grid>
</DataTemplate>
属性是
public int Type { get; set; }
public string Contact { get; set; }
Type is ZERO
(即)的初始值Type = 0;
。
实施条件:
- 如果 Type 等于 1 或 2,那么我需要启用 TextBox -
IsEnabled = True
- 如果 Type 是 1,那么
TextBox.MaxLength
应该是 10 - 如果 Type 是 2,那么
TextBox.MaxLength
应该是 11
我尝试了以下代码:
<DataTemplate.Triggers>
<DataTrigger Binding="{Binding Path=Type}" Value="0">
<Setter Property="TextBox.IsEnabled" Value="False" />
</DataTrigger>
<DataTrigger Binding="{Binding Path=Type}" Value="1">
<Setter Property="TextBox.MaxLength" Value="10" />
</DataTrigger>
<DataTrigger Binding="{Binding Path=Type}" Value="2">
<Setter Property="TextBox.MaxLength" Value="11" />
</DataTrigger>
</DataTemplate.Triggers>
但是上面的代码不起作用。请帮助我如何DataTrigger
在DataTemplate
.