2

我在 DataTemplate 中有一个 TextBox,声明如下:

<TextBox Grid.Row="1" Grid.Column="1" Margin="0,4,0,0">
<i:Interaction.Triggers>
    <i:EventTrigger EventName="LostFocus">
        <cmd:EventToCommand Command="{Binding DataContext.NotesEnteredCommand,
                            RelativeSource={RelativeSource FindAncestor, AncestorType=Window}}">
            <cmd:EventToCommand.CommandParameter>
                <MultiBinding Converter="{StaticResource SimpleMultiValueConverter}">
                    <Binding Path="Row.OID" />
                    <Binding Path="Text" RelativeSource="{RelativeSource FindAncestor, AncestorType=TextBox}" />
                </MultiBinding>
            </cmd:EventToCommand.CommandParameter>
        </cmd:EventToCommand>
    </i:EventTrigger>
</i:Interaction.Triggers>

<TextBox.InputBindings>
    <KeyBinding Key="Enter" Command="{Binding DataContext.NotesEnteredCommand, RelativeSource={RelativeSource FindAncestor, AncestorType=Window}}">
        <KeyBinding.CommandParameter>
            <MultiBinding Converter="{StaticResource SimpleMultiValueConverter}">
                <Binding Path="Row.OID" />
                <Binding Path="Text" RelativeSource="{RelativeSource FindAncestor, AncestorType=TextBox}" />
            </MultiBinding>
        </KeyBinding.CommandParameter>
    </KeyBinding>
</TextBox.InputBindings>

这个 TextBox 的基本作用是在按下 Enter 键或失去焦点时执行 MVVM-Light RelayCommand。

我的问题是,在上述两种情况下,我无法在 MVVM 中通过 XAML 清除 TextBox 的Text值。在代码隐藏中很容易,但我无法在 MVVM 中弄清楚。

有任何想法吗?

4

2 回答 2

4

如果文本是您的数据层和应用程序逻辑的一部分,则字符串应该存在于您的Modelor中ViewModel并从那里清除

例如,

<TextBox Text="{Binding NewNote}" ... />

void NotesEntered(int oid)
{
    SaveNewNote(oid);

    NewNote = string.Empty;
}

如果它只是 UI 层的一部分,则应使用代码隐藏将其清除。在 UI 后面的代码中包含特定于 UI 的逻辑是完全可以接受的,因为它仍然保持层的分离。

NewNoteTextBox_LostFocus(object sender, EventArgs e)
{
    (sender as TextBox).Text = string.Empty;
}

NewNoteTextBox_KeyDown(object sender, KeyEventArgs e)
{
    if (e.Key == Keys.Enter)
        (sender as TextBox).Text = string.Empty;
}
于 2013-04-24T15:53:20.570 回答
0

您可以使用 UpdateSourceHelper。这确实帮助我在没有代码隐藏的情况下调用了一个事件。见这里http://www.wiredprairie.us/blog/index.php/archives/1701

您所要做的就是创建一个“UpdateSourceHelper”类,像这样将它与您的 xaml 连接起来

xmlns:local="using:WiredPrairie.Converter

并将其绑定到您的 TextBox (或您想要绑定的任何内容)...

<TextBox Height="Auto" Margin="0,6" Grid.Row="1" TextWrapping="Wrap" TabIndex="0" 
     Text="{Binding Value}" 
     local:UpdateSourceHelper.IsEnabled="True" 
     local:UpdateSourceHelper.UpdateSourceText="{Binding Value, Mode=TwoWay}"/>

如果你想在 Helper 中调用 LostFocus Event,你只需在 Helper 中添加这两行:

tb.LostFocus += AttachedTextBoxLostFocus;
tb.LostFocus -= AttachedTextBoxLostFocus;

所以它看起来像这样:

TextBox tb = (TextBox)obj;
    if ((bool)args.NewValue)
        {                           
            tb.LostFocus += AttachedTextBoxLostFocus;
        }
    else
        {
            tb.LostFocus -= AttachedTextBoxLostFocus;
        }

右键单击 AttachedTextBoxLostFocus 并生成方法。现在您可以像处理代码隐藏事件一样处理事件。

于 2013-04-24T18:50:45.853 回答