WPf 中的 Intellisense 支持 TextBox
我从 wpf 4.0 开始。我有一个文本框,我将在其中输入 linq 表达式。所以我想在文本编辑器中启用智能感知支持。我现在所做的就是带来一个包含项目列表的弹出窗口。我还有其他方法可以在 WPF 中执行此操作吗?
谢谢。
I started with wpf 4.0. I have a textBox where i shall enter linq expressions. So i want to enable intellisense support in the textEditor. All i do now is bringing a popUp which has the list of items. Do i have anyother way to do this in WPF.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,所有内置控件均不提供 Intellisense 功能。这是代码编辑器提供的功能,我怀疑 Microsoft 是否打算让您重新实现 Visual Studio。
你必须自己写。请参阅此处的示例:类似 Intellisense 的方法选择弹出窗口
商业广告控制包是另一种选择。例如:Actipro 的 WPF SyntaxEditor
No, none of the built-in controls provide Intellisense functionality. It's a feature provided by code editors, and I doubt Microsoft intends for you to re-implement Visual Studio.
You'll have to write it yourself. See here for a sample: Intellisense-like Method Selection Pop-up Window
A commercial control package is another option. For example: Actipro's WPF SyntaxEditor