在monodev中按窗口小部件的名称获取数据

时间:2011-05-01 13:57:24

标签: c# widget monodevelop

我使用monodeveloper 2.4.2.1 for windows。 我的情况:我在运行时将带有小部件(Entry)的框添加到父框。为了识别,我给每个小部件命名(属性名称)。我的问题是如何检查条目是否为空?

foreach(Container n in boxA.Children)
{
    foreach(Entry m in n)
    {
        here I want to check if anything is in Entry. n hasn't any property that
        can help me or I can't find it.
    }
}

请告诉我该怎么做以及我做错了什么。 感谢名单!

1 个答案:

答案 0 :(得分:1)

这样的东西?

if (!string.IsNullOrEmpty (entry.Text))
    //do stuff