Silverlight 工具包 - 自动完成框在哪里?
我刚刚通过 NuGet 将 Silverlight 4 工具包添加到我的项目中。 (NuGet 包“Silverlight Toolkit - All”)
我在添加到项目中的 dll 中找不到 AutoCompleteBox。它在哪里?
我尝试过的事情:
我破解了它添加的所有 dll 到我的项目,我没有看到 其中任何一个中都有 AutoCompleteBox。
查看Silverlight 工具包 讨论,我没有看到有人提到它的删除。
查看Silverlight 工具包 变更集历史记录,我没有看到 被提及为已删除。
我浏览了源代码,我确实在那里看到了 AutoCompleteBox,但它被编译成 dll System.Windows.Controls.Input.dll,但是当我通过 NuGet 添加项目时,我没有得到那个 dll,而是得到了 System.Windows.Controls.Input.Toolkit.dll
Silverlight工具包中的AutoCompleteBox在哪里?
I just added the Silverlight 4 toolkit to my project via NuGet. (NuGet package "Silverlight Toolkit - All")
I can't find the AutoCompleteBox anywhere in the dlls added to my project. Where is it?
Things I've tried:
I cracked open all the dlls it added
to my project, and I don't see
AutoCompleteBox in any of them.Looking at the Silverlight Toolkit
discussions, I don't see anyone mentioning its removal.Looking at the Silverlight Toolkit
changeset history, I don't see it
being mentioned as removed.I browsed the source, and I do see AutoCompleteBox in there, but it get compiled into a dll System.Windows.Controls.Input.dll, but when I add the project in via NuGet, I don't get that dll, instead I get System.Windows.Controls.Input.Toolkit.dll
Where is the AutoCompleteBox in the Silverlight Toolkit?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它不再包含在 Silveright Toolkit 中。从 Silverlight 4 开始,它转移到了 SDK。您应该能够将 AutoCompleteBox 从工具栏拖到设计器中,VS 将为您添加对 System.Windows.Controls.Input.dll 的引用。
Its not in the Silveright Toolkit any more. As of Silverlight 4 it moved to the SDK. You should be able to drag the AutoCompleteBox from you toolbar to the designer and VS will add the reference to
System.Windows.Controls.Input.dll
for you.