我想在 XAML 文件中声明一个事件,然后在 fs 文件中添加一个处理程序。
XAML 文件的上半部分类似于 (MouseRightButtonDown):
<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="AboutStack" MouseRightButtonDown="AboutStack_MouseRightButtonDown"
Title="About" SizeToContent="WidthAndHeight">
<StackPanel>...
F# 文件包含:
open FsXaml
type MainWindow = XAML<"MainWindow.xaml", true>
let mainwnd = new MainWindow()
let wnd = mainwnd.Root
有没有简单的方法来建立链接?