HelpProvider 中的西里尔文 [英] Cyrillic in HelpProvider

查看:36
本文介绍了HelpProvider 中的西里尔文的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在 Win Form HelpProvider 类中使用 Cyrillic 字符串?

How can I use Cyrillic strings in Win Form HelpProvider class?

这就是我现在得到的:

  this.helpProvider.SetShowHelp(this.gaParametersText, true);
  this.helpProvider.SetHelpString(this.gaParametersText, "Введите переменные в виде границ поиска, например [0;1][0.7;1.9]"); 

它工作正常,但存在加密问题.

It works fine, but there is an encryption problem.

我该如何解决?

推荐答案

HelpProvider 已经过时了.您是否考虑过改用 ToolTip?

HelpProvider is quite outdated. Have you considered using ToolTip instead?

ToolTip toolTip1 = new ToolTip();
toolTip1.Show("Русский текст", this.gaParametersText)

如果真的有必要,我建议深入研究 pInvoking hhctrl.ocx例如,http://www.pinvoke.net/default.aspx/hhctrl.htmlhelp

If it's really necessary, I would suggest digging into pInvoking hhctrl.ocx for example, http://www.pinvoke.net/default.aspx/hhctrl.htmlhelp

这篇关于HelpProvider 中的西里尔文的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆