基于步入DevExpress的使用(VS),进一步使用DevExpress改变WinForm皮肤,适合初学者。提示:1、对于DevExpress菜单中的RepositoryItemComboBox没有EditValue属性,无法直接获取选择的值,但可以在其事件中将其转化为ComboBoxEdit控件...
关键代码: /// /// 设置饼状图的Lable位置 /// /// Series /// PieSeriesLabelPosition枚举 public static void SetLablePosition(this Series series, PieSeriesLabelPositio....
分类:
其他好文 时间:
2014-10-23 15:53:08
阅读次数:
538
关键代码: /// /// 设置Legend位于底部并居中 /// /// Legend public static void SetBottomCenter(this Legend legend) { legend.Direction = LegendDirection....
分类:
其他好文 时间:
2014-10-23 14:12:55
阅读次数:
1458
从什么也不懂开始,逐步实现在VS中对DevExpress的简单使用
分类:
其他好文 时间:
2014-10-22 17:37:55
阅读次数:
190
关键代码: /// /// 设置X轴Title /// /// ChartControl /// Title文字 /// Title文字颜色 public static void SetAxisXTitle(this ChartControl chart, string title...
分类:
其他好文 时间:
2014-10-22 12:48:39
阅读次数:
1668
关键代码: /// /// 创建基准线ConstantLine /// /// ChartControl /// 基准线数值 /// 基准线图例文字 /// 基准线文字 /// 基准线字体颜色 /// 基准线颜色 /// 基准线样式
...
分类:
其他好文 时间:
2014-10-22 12:46:25
阅读次数:
1131
关键代码: /// /// 创建Strip /// /// ChartControl /// Strip /// Strip文字 /// Strip对应的Lengend文字 /// Strip颜色 /// Strip填充样式 publ...
分类:
其他好文 时间:
2014-10-22 12:37:45
阅读次数:
355
关键代码: /// /// 自定义ChartControl的Tooltip /// /// ChartControl /// MouseEventArgs /// ToolTipController /// ToolTipController的Title /// 委...
分类:
其他好文 时间:
2014-10-22 12:34:54
阅读次数:
636
关键代码: /// /// 设置ChartControl滚动条【默认X,Y轴都出现】 /// /// ChartControl /// 滚动条背景颜色 /// 滚动条颜色 /// 滚动条边框颜色 /// 滚动条宽度 public static Scr...
分类:
其他好文 时间:
2014-10-22 10:49:37
阅读次数:
416
关键代码: using System;
using System.Data;
using System.Windows.Forms;
using DevExpress.XtraCharts; namespace DevExpressChart
{ public partial class winDa...
分类:
其他好文 时间:
2014-10-22 09:55:28
阅读次数:
333