XAML 中无法访问 Helix SharpDx 工具包

Helix SharpDx toolkit not accessible in XAML

我正在将一个示例从 C# 移植到 F#,使用 sharpDX helix 工具包。我用 nuget 下载了所有引用,以便这两个项目具有相同的引用并复制了 XAML 代码,但我有一个错误说 "the name x does not exist in the namespace '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 的任何地方。 谢谢

已修复。我的错误,我遗漏了对 "HelixToolkit.Wpf.SharpDX" 的引用。当我下载时,一切都很好。希望这对某人有所帮助。