使用鼠标在DevExpress gridview中增加和减少字体大小

时间:2012-08-24 23:09:31

标签: c# events gridview devexpress

我正在尝试增加DevExpress GridView单元格中字体大小的减少。我知道事件可能是

private void gridView1_MouseWheel(object sender, MouseEventArgs e) {}

有没有人有实现此功能的经验?

我在Google上环顾四周,发现了这个问题:http://www.devexpress.com/Support/Center/p/Q20861.aspx

但是当我将此代码添加到我的解决方案中时,我得到关于Point,GridView和Font缺少引用和使用指令的错误。

有人可以帮忙吗?

2 个答案:

答案 0 :(得分:1)

page我提到的代码中做了一个小修改,它对我有用。

GridView v = sender as GridView;

对于GridView,你必须添加它,

using DevExpress.XtraGrid.Views.Grid;

使用此代码,您无需使用Point

来使用鼠标位置

答案 1 :(得分:0)

在属性中单击Columns属性,如果它有列,则按住db键单击列s name and select CellStyle and change字体property such you can change HeaderStyle`等等