05 2022 档案
摘要:1、自定义图表数据(显示各国人口的折线图) private void Bind() { List<CountryInfo> countries = new List<CountryInfo> { new CountryInfo("中国",14.47f), new CountryInfo("印度",1
阅读全文
摘要:1、GridControl /// <summary> /// 初始化GridControl /// </summary> /// <param name="gc"></param> public static void InitGridControl(GridControl gc,object o
阅读全文
摘要:1、新建XtraReport 右键Insert Detail Report 结构如下图 2、创建数据源 private DataSet GetData() { DataSet ds = new DataSet(); string sqlMaster = $"select t.presc_date,t
阅读全文