填充数据网格视图时出错

发布于 2024-11-04 18:24:08 字数 118 浏览 3 评论 0原文

我有一个数据库,其中包含希伯来语(外来字符)。

当我在网格视图中填充它时。

它以相反的顺序填充(从左到右)

例如:“כן”被填充为“ןכ”

我可以获得帮助吗?

I have a database which contains Hebrew language(foreign characters) in it.

When I populate it in grid view.

It gets populated in reverse order(left to right)

For example: "כן" is getting populated as "ןכ"

Can i get Help??

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

满天都是小星星 2024-11-11 18:24:08

设置 DataGridView 控件的 RightToLeft 属性RightToLeft.Yes 这指示控件应自行对齐以支持使用从右到右的区域设置左字体(例如希伯来语)。

这里的文档非常明确:

RightToLeft 属性用于从右向左书写语言的国际应用程序,例如希伯来语或阿拉伯语。当此属性设置为 RightToLeft.Yes 时,包含文本的控制元素将从右向左显示。

您可以在 Visual Studio 设计器中或通过如下代码来执行此操作:

myDataGridView.RightToLeft = RightToLeft.Yes;

Set the DataGridView control's RightToLeft property to RightToLeft.Yes. This instructs the control that it should align itself to support locales that use right-to-left fonts (such as Hebrew).

The documentation is pretty explicit here:

The RightToLeft property is used for international applications where the language is written from right to left, such as Hebrew or Arabic. When this property is set to RightToLeft.Yes, control elements that include text are displayed from right to left.

You can do this either in the Visual Studio designer, or through code like so:

myDataGridView.RightToLeft = RightToLeft.Yes;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文