填充数据网格视图时出错
我有一个数据库,其中包含希伯来语(外来字符)。
当我在网格视图中填充它时。
它以相反的顺序填充(从左到右)
例如:“כן”被填充为“ןכ”
我可以获得帮助吗?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
设置
DataGridView
控件的RightToLeft
属性 为RightToLeft.Yes
。 这指示控件应自行对齐以支持使用从右到右的区域设置左字体(例如希伯来语)。这里的文档非常明确:
您可以在 Visual Studio 设计器中或通过如下代码来执行此操作:
Set the
DataGridView
control'sRightToLeft
property toRightToLeft.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:
You can do this either in the Visual Studio designer, or through code like so: