一、安装组件:官网地址:https://reogrid.net/document/installation/
unvell.ReoGridWPF.dll
可以在Winfrom的工具箱,直接拖入dll,然后你会在工具箱发现一个“ReoGridControl”控件,拖入窗体就好了。
二、应用空间
using unvell.ReoGrid; using unvell.ReoGrid.Actions;
三、测试:添加一个button1
private void button1_Click(object sender, EventArgs e) { // 获取当前活动的工作表实例 var sheet = grid.Worksheets["Sheet1"]; sheet.SetCellData(new CellPosition(2, 1), "hello world"); var cell = sheet.Cells["A1"]; cell.Data = "你好世界"; }
四、直接上效果图: