作者热门文章
- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我正在 Visual Studio 2012 中制作一个 C# Windows 窗体应用程序。我想添加一个具有拼写检查功能的文本框。你能解释一下它的过程吗?
最佳答案
如果您使用的是 .net4,则可以将 References System.Xaml 和 WindowsFormsIntegration 添加到您的 Winforms 项目中。
这允许您在工具箱中找到 ElementHost。通过使用 ElementHost,您可以在 Winfroms 项目中使用 WPF 对象。
System.Windows.Forms.Integration.ElementHost elementHost1 = new System.Windows.Forms.Integration.ElementHost();
System.Windows.Controls.TextBox textBox = new System.Windows.Controls.TextBox();
textBox.SpellCheck.IsEnabled = true;
elementHost1.Child = textBox;
关于c# - 如何在 C# Windows 窗体应用程序中激活拼写检查?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23834001/
我是一名优秀的程序员,十分优秀!