- 积分
- 4
- 在线时间
- 48 小时
- 主题
- 6
- 注册时间
- 2014-7-27
- 帖子
- 44
- 最后登录
- 2018-11-18
- 帖子
- 44
- 软币
- 450
- 在线时间
- 48 小时
- 注册时间
- 2014-7-27
|
Form childForm = (Form)System.Reflection.Assembly.Load(assemblyName).CreateInstance(assemblyName);
foreach (Control c in childForm.Controls)
{
if (c.GetType() == typeof(DevExpress.XtraGrid.Views.Grid.GridView))
{
c.MouseUp += new System.Windows.Forms.MouseEventHandler(this.gridView1_MouseUp);
}
}
这样永远得不到==的情况,Control无法转换为GridView。
请问,该怎么遍历获取?
|
|