如何查找列表视图下拉控件

如何查找列表视图下拉控件

本文介绍了如何查找列表视图下拉控件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想找到listview下拉控件,但由于存在动态ID,因此我能够找到控件,我的控件ID为"dlty"

感谢

I would like to find the listview dropdown control but i am enable to find control due to there dynamic id ,my control id is "dlty"

Thanks

推荐答案

Control f = (from c in this.Controls
             where c.Name == "dlty"
             select c).FirstOrDefault();

if (f is ListBox)
{
  // Found the ListBox with name "dlty"
}


这篇关于如何查找列表视图下拉控件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-05 15:54