Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
单击按钮时是否可以在不触摸 CS 代码的情况下打开一个新窗口?我想做这样的事情:
<Button Command="OpenNewWindow" Content="New window" />
或者
<Button Command="Open NameOfMyWindow" Content="New window" />
我浏览了预定义的命令,找到了一个名为 Open 的命令,尽管它似乎不是为这项任务而设计的。
您可以使用命令参数
<Button Command="OpenWindow" CommandParameter="NameOfMyWindow" Content="New window" />
并在处理 OpenWindow 命令的代码中使用该参数。
通用命令与典型的“文件”菜单更密切相关,您将打开一个文件或类似的东西。您可以为您的应用编写自定义命令