wpf绑定到element和property

时间:2012-05-22 14:31:46

标签: wpf data-binding bind

我有以下表格:

enter image description here

我在MVVM中实现了它,XAML看起来像这样:

<!-- Username -->
<Label Grid.Row="2" Style="{StaticResource TypicalLabelStyle}">Username:</Label>
<TextBox Grid.Row="2" Grid.Column="1" Style="{StaticResource TypicalTextBoxStyle}" Name="UsernameTextBox"
            Text="{Binding SourceConnection.Username, UpdateSourceTrigger=PropertyChanged}" 
            />

<CheckBox Grid.Row="2" Grid.Column="2" Margin="5" VerticalAlignment="Center" Name="CopyPasswordCheckBox">Copy Password</CheckBox>

<!-- Password -->
<Label Grid.Row="3" Style="{StaticResource TypicalLabelStyle}">Password:</Label>
<TextBox Grid.Row="3"  Grid.Column="1" >
    <TextBox.Style>
        <Style>          
            <Style.Triggers>
                <DataTrigger Binding="{Binding ElementName=CopyPasswordCheckBox, Path=IsChecked}" Value="True">
                    <Setter Property="TextBox.Text" Value="{Binding ElementName=UsernameTextBox, Path=Text}" />
                </DataTrigger>
                <DataTrigger Binding="{Binding ElementName=CopyPasswordCheckBox, Path=IsChecked}" Value="False">
                    <Setter Property="TextBox.Text" Value="{Binding SourceConnection.Password}" />
                </DataTrigger>
            </Style.Triggers>
        </Style>
    </TextBox.Style>
</TextBox>

问题出现在密码文本框中: 如果选中“复制密码”复选框,则绑定SourceConnection.Password为空。 在没有检查的情况下,我得到正确的值绑定。

(复制密码表示“用户名”文本框中的文本将复制到“密码”文本框中)。 我不想在代码中持有“复​​制密码”的属性,然后询问是否......“。

1 个答案:

答案 0 :(得分:0)

我会添加一个布尔值来保存viewmodel中的复选框状态。然后在viewmodel中,您可以捕获用户名更改,检查复选框状态并相应地更新密码。