本文介绍了WPF Buton添加行和列的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个gridcontrol,在WPF上我添加了两个按钮,(用于行和列)



通过这些按钮,我希望用户能够添加行程序运行时列到网格



我该怎么办?



 gridControl1.Columns.Add(1); 

不起作用

解决方案

I had a gridcontrol, and on WPF I added two button,(for row and column)

By those buttons, i want users be able to add rows and columns to the grid when program runs

How can i do?

gridControl1.Columns.Add("1");

doesnt work

解决方案


这篇关于WPF Buton添加行和列的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-11 14:16