从常规项中获取Label的值

时间:2013-09-08 12:01:08

标签: c# wpf grid typeof

我有一个带标签和文本框的网格 我想获得标签的内容 如果你知道它是一个标签就很容易 但这就是我所拥有的:

foreach (var t in Grid1.Children)
    {
         if (t.GetType() == typeof(Label))
         {
                string val = t.????;
         }
    }  

如何获取此标签的内容?

1 个答案:

答案 0 :(得分:1)

    foreach (var t in Grid1.Children)
    {
         if (t is Label)
         {
                string val = ((Label)t).Content.ToString()
         }
    }