我正在将一个示例从 C# 移植到 F#,并使用sharpDX helix 工具包。我用 nuget 下载了所有引用,以便两个项目具有相同的引用并复制到 XAML 代码,但我有一个错误说“名称 x 在命名空间中不存在” http://helix-toolkit.org/ wpf/SharpDX '"。谁能告诉我我做错了什么?
xaml 代码:
<Window
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:hx="http://helix-toolkit.org/wpf/SharpDX"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"
xmlns:ie="http://schemas.microsoft.com/expression/2010/interactions"
Title="{Binding Title}"
Width="800"
Height="500"
mc:Ignorable="d">
<Window.Resources>
<hx:RenderTechniqueConverter x:Key="RenderTechniqueConverter" />
</Window.Resources>
“RenderTechniqueConverter”有错误,通常在我引用 hx 的任何地方。谢谢
DIEA
相关分类