使用WPF(初学者): - )
我一直收到错误 “Windows Presentation Foundation(WPF)项目不支持ApplicationCommans”
我刚开始我的项目..
解决方案平台:AnyCPU
<Window x:Class="Wpf_CreatingARichTextEditor.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:Wpf_CreatingARichTextEditor"
mc:Ignorable="d"
Title="MainWindow" Height="300" Width="400">
<Window.CommandBindings>
<CommandBinding Command="ApplicationCommans.Open"
Executed="CommandBinding_Executed" />
</Window.CommandBindings>
<Grid>
</Grid>
</Window>
感谢
答案 0 :(得分:3)
这不是ApplicationCommans..it的ApplicationCommands.Open。只需更改应修复问题的命令名称。
希望这有帮助。
答案 1 :(得分:0)
对我来说,从MSDN复制并粘贴到XAML时遇到了这个问题。在我必须删除的应用程序和命令之间有一个看不见的零宽度连接符(大概是为了帮助自动换行)