gpt4 book ai didi

c# - 如何在 C# Windows 窗体应用程序中激活拼写检查?

转载 作者:可可西里 更新时间:2023-11-01 08:59:14 25 4
gpt4 key购买 nike

我正在 Visual Studio 2012 中制作一个 C# Windows 窗体应用程序。我想添加一个具有拼写检查功能的文本框。你能解释一下它的过程吗?

最佳答案

如果您使用的是 .net4,则可以将 References System.XamlWindowsFormsIntegration 添加到您的 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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com