5

在我之前的问题“使用 FSharp.ViewModule 启用对话框 OK 按钮”中,我达到了仅当对话框字段的验证器为 true 并且 ViewModule 的 IsValid 属性为 true 时才启用对话框的 OK 按钮的地步。但在那之后我又遇到了几个问题:

1)即使我IsDefault="true"在 XAML 中设置,单击 OK 按钮也没有关闭对话框。

2) 当单击 OK 按钮时,有时我想做比 ViewModule 验证器提供的更多的检查(例如,检查电子邮件地址)。然后,如果此自定义验证失败,我想阻止对话框关闭。

但是我不知道在使用 F# 和 MVVM 时如何做。首先,我尝试将 XAML 放入 C# 项目中,并将视图模型代码放入 F# 库中。然后我在后面的代码中使用了 OK 按钮的 Click 处理程序来关闭窗口。这固定了 1),但不是 2)。

所以这是我的 XAML:

<TextBox Text="{Binding Name, UpdateSourceTrigger=PropertyChanged}"/>
<TextBox Text="{Binding Email, UpdateSourceTrigger=PropertyChanged}" />
<Button Content="OK" IsEnabled="{Binding IsValid}" IsDefault="true" Command="{Binding OkCommand}" 
    <!--Click="OnOK"--> />

还有我的视图模型-在validate函数中添加注释以显示单击“确定”按钮时我想要做什么:

let name = self.Factory.Backing( <@ self.Name @>, "", notNullOrWhitespace)
let email = self.Factory.Backing( <@ self.Email @>, "", notNullOrWhitespace)
let dialogResult = self.Factory.Backing( <@ self.DialogResult @>, false )

let isValidEmail (e:string) = e.Length >= 5

member self.Name 
    with get() = name.Value 
    and set value = name.Value <- value
member self.Email 
    with get() = email.Value 
    and set value = email.Value <- value
member self.DialogResult
    with get() = dialogResult.Value
    and set value = dialogResult.Value <- value

member self.OkCommand = self.Factory.CommandSync(fun () ->
                        if not <| isValidEmail(email.Value) then
                            MessageBox.Show("Invalid Email") |> ignore
                        else
                            dialogResult.Value <- true
                        )
4

1 回答 1

5

值得指出的是,MVVM 和代码隐藏并不是最好的朋友。

您所指的 C# 事件处理程序位于Window的代码隐藏文件(即部分类)中。尽管对于视图相关的逻辑来说,代码隐藏被认为是可以的,但它被 MVVM 纯粹主义者所反对。因此,MVVM 不是在 XAML 中指定事件处理程序,而是更喜欢使用Commands.

选项 A - 在代码隐藏中执行,务实。

请注意,FsXaml 不提供事件的直接关联(在 XAML 中指定处理程序),但您可以自己在代码隐藏中关联事件。

在 XAML 中命名控件后,可以在相应的源文件中保留它。

用户对话框.xaml

<Button x:Name="butt" ... >

UserDialog.xaml.fs

namespace Views

open FsXaml

type UserDialogBase = XAML<"UserDialog.xaml">

type UserDialog() as dlg =
    inherit UserDialogBase()

    do dlg.butt.Click.Add( fun _ -> dlg.DialogResult <- System.Nullable(true) )

验证最好在 ViewModel 中处理,例如对电子邮件地址使用自定义验证:

选项 B - 您可以使用DialogCloser遵循 MVVM 模式。

首先在解决方案顶部添加一个新的源文件(解决方案资源管理器)

DialogCloser.fs

namespace Views

open System.Windows

type DialogCloser() =    
    static let dialogResultProperty =
        DependencyProperty.RegisterAttached("DialogResult", 
            typeof<bool>, typeof<DialogCloser>, 
                new PropertyMetadata(DialogCloser.DialogResultChanged))

    static member SetDialogResult (a:DependencyObject) (value:string) = 
        a.SetValue(dialogResultProperty, value)

    static member DialogResultChanged 
        (a:DependencyObject) (e:DependencyPropertyChangedEventArgs) =
        match a with
        | :? Window as window
            -> window.DialogResult <- System.Nullable (e.NewValue :?> bool)
        | _ -> failwith "Not a Window"

假设我们的解决方案被调用WpfApp(在 XAML 标头中引用),我们可以DialogCloser像这样实现:

用户对话框.xaml

<Window
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:views="clr-namespace:Views;assembly=WpfApp"
    xmlns:fsxaml="http://github.com/fsprojects/FsXaml"
    views:DialogCloser.DialogResult="{Binding DialogResult}"
    >

        ...

</Window>

现在在UserDialog的 ViewModel 中,您可以通过将 设置为 true来连接Command并关闭对话框。dialogResult

member __.OkCommand = __.Factory.CommandSync(fun () ->
                         if not <| isValidEmail(email.Value) then
                             System.Windows.MessageBox.Show ("...") |> ignore                       
                         else 
                             // do stuff (e.g. saving data)

                             ...

                             // Terminator
                             dialogResult.Value <- true 
                         )

您还可以跳过 if / else 子句并使用自定义验证来验证电子邮件。

总结一下,你可以使用这个辅助函数从 MainViewModel 调用对话框:

UserDialog.xaml.fs

namespace Views

open FsXaml

type UserDialog = XAML<"UserDialog.xaml">

module UserDialogHandling =    
    /// Show dialog and return result
    let getResult() = 
        let win = UserDialog()
        match win.ShowDialog() with
        | nullable when nullable.HasValue
            -> nullable.Value
        | _ -> false

请注意,在这种情况下没有“代码隐藏”(UserDialog类型声明中没有代码)。

于 2016-12-06T16:56:45.103 回答