迭代动态创建的控件wpf

时间:2014-05-01 15:22:57

标签: wpf vb.net controls

我一直在寻找这个但是我找不到任何与如何遍历网格上所有动态创建的控件有关的内容。我基本上只是想从动态创建的文本框中获取数据,我已经尝试了以下内容,但它并没有拉动任何孩子

Dim ctl As FrameworkElement = Me
Dim children As Integer = VisualTreeHelper.GetChildrenCount(ctl)

For i = 0 To children - 1
    Dim Child As FrameworkElement = VisualTreeHelper.GetChild(ctl, i)
Next

用于在表单上添加文本框的代码

For i = 0 To tb - 1
    Dim t As New TextBox
    t.Width = 75
    t.Height = 25
    t.Focus()       
    Grid.SetColumn(t, columns)
    MyGrid.Children.Add(t)
     t.Focus()
Next

0 个答案:

没有答案