我正在尝试在这里使用WPF货币文本框:https://wpfcurrencytextbox.codeplex.com/documentation我进入我的项目并添加引用,在我做了链接所说的网站之后做的就是这个代码:< / p>
xmlns:currency="clr-namespace:CurrencyTextBoxControl;assembly=CurrencyTextBoxControl"
这部分没问题,但是当我把第二条指令放在:
中时<Grid>
<currency:CurrencyTextBox Number="{Binding Number}" />
</Grid>
在这部分我有一个错误:
Error 15 The name "CurrencyTextBox" does not exist in the namespace "clr-namespace:CurrencyTextBoxControl;assembly=CurrencyTextBoxControl"
我忘记了什么?
答案 0 :(得分:2)
您是否在项目中添加了对DLL的引用?在VS中,右键单击项目下的“References”文件夹&amp;选择“添加参考”。在对话框中导航到放置DLL的文件夹并选择它。确保它已添加到DLL列表中。单击确定。