将卢比符号添加到我的 gridview 列
我正在添加 HeaderText ="Column name"
。
我想要的是 HeaderText ="Column name [rupee symbol here]"
我可以做 rupee 的键盘快捷键 ...通过安装 rupee 符号。
如果我的所有客户没有在系统中安装卢比符号,他们是否可以使用它?
或者我可以做一个图像列...通过打印屏幕或当前列并执行一些 mspaint 工作来添加卢比符号并将此修改后的图像添加为 GridView 列
对此有任何解决方案吗?
I am adding HeaderText ="Column name"
.
What I want to be is HeaderText ="Column name [rupee symbol here]"
I can do a keyboard shortuct of rupee ...by installing rupee symbol in my system.
Will it be available through all my customers if they didnt install rupee symbol in their system?
Or i can do a image column ... by taking a print screen or current column and doing some mspaint works to add rupee symbol and add this ammended image as GridView
column
is there any solution for this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
由于 Rupee 最近有了新的形状(并且已添加到 Unicode 6.0 中),到目前为止我还没有听说任何国际字体在其字体中实现了它。
所以如果你想使用新的卢比符号,你必须使用它的图像。
defenit;y 如果您使用该符号,您的客户(或不是全部)将无法在他们的系统中看到它。
您必须使用
TemplateField
来一起使用图像和标签,例如As Rupee has a new shape recently (and it has been added to Unicode 6.0 ) up to now I didn't heard that any international font implement it in their fonts.
So if you want to use new rupee symbol, you have to use its image.
defenit;y if you use the symbol, your customer ( or not all of them ) wont be able to see it in their system.
Youhave to use
TemplateField
to use Image and Label together like您可以自定义绘制列标题单元格(示例) - 并绘制文本和图像直接在单元格上。
You could custom paint the column header cell (example) - and draw the text and image directly on the cell.
您还可以使用 css
,在项目模板中只需编写此内容
您就有了没有图像的新卢比符号。
You can also use css
and in Item Template just write this
You have new rupee sign without Image.