久久国产成人av_抖音国产毛片_a片网站免费观看_A片无码播放手机在线观看,色五月在线观看,亚洲精品m在线观看,女人自慰的免费网址,悠悠在线观看精品视频,一级日本片免费的,亚洲精品久,国产精品成人久久久久久久

分享

通過代碼查找Grid中在后臺手動添加的控件

 xyjackxjw 2013-05-14

通過代碼查找Grid中在后臺手動添加的控件

時間:2011-10-16 06:32來源:百度空間 作者:lilipangtou 點擊: 388次
Grid Grid.RowDefinitions RowDefinitionHeight= 100 / RowDefinitionHeight= 35 / /Grid.RowDefinitions Grid.ColumnDefinitions /Grid.ColumnDefinitions Button x:Name= btnClick Margin= 50,0,50,0 Grid.Row= 1 Grid.Column= 0 Content= ClickMe Click= btnClick_Click /
  
<Grid>
        <Grid.RowDefinitions>
            <RowDefinition Height="100"/>
            <RowDefinition Height="35"/>
        </Grid.RowDefinitions>
        <Grid.ColumnDefinitions>
        </Grid.ColumnDefinitions>
        <Button x:Name="btnClick" Margin="50,0,50,0" Grid.Row="1" Grid.Column="0" Content="Click Me" Click="btnClick_Click"/>
        <Grid Grid.Row="0" Grid.Column="0" x:Name="Grid1">
        </Grid>
    </Grid>

 

public Window1()
        {
            InitializeComponent();
            this.Loaded +=new RoutedEventHandler(Window1_Loaded);
        }

        void Window1_Loaded(object sender, RoutedEventArgs e)
        {
            RowDefinition rd =new RowDefinition();
            Grid1.RowDefinitions.Add(rd);
            //添加第0列
            Border b =new Border();
            b.BorderThickness =new Thickness(0, 0, 1, 1);
            b.BorderBrush = Brushes.Black;
            b.Name ="Border_"+ (Grid1.RowDefinitions.Count -1) +"_0";

            TextBox tb =new TextBox();
            string x ="TB_"+ (Grid1.RowDefinitions.Count -1) +"_0";
            tb.Name ="TB_"+ (Grid1.RowDefinitions.Count -1) +"_0";
            tb.BorderThickness =new Thickness(0);
            tb.ToolTip = tb.Name;
            b.Child = tb;//
            b.SetValue(Grid.RowProperty, Grid1.RowDefinitions.Count -1);
            b.SetValue(Grid.ColumnProperty, 0);
            Grid1.Children.Add(b);

        }

        privatevoid btnClick_Click(object sender, RoutedEventArgs e)
        {
            Border border;
            TextBox tb;
            for (int i =0; i < Grid1.RowDefinitions.Count; i++)
            {
                // 這個方法是循環(huán)Grid下所有控件的方法
                //FindName 方法只能查詢在XAML中定義的組件,后臺動態(tài)添加的需要手動寫循環(huán)來處理
                for (int j =0; j < Grid1.Children.Count; j++)
                {
                    border = Grid1.Children[i] as Border;
                    if (border !=null&& border.Name =="Border_"+ i +"_0")
                    {
                        tb = border.Child as TextBox;
                        if (tb !=null&& tb.Name =="TB_"+ i +"_0")
                        {
                            if (tb.Text.Trim().Equals(""))
                            {
                                MessageBox.Show("第"+ (i +1) +"行的摘要不能為空");
                            }

                        }
                    }
                }
            }
        }

  如果是在xaml中添加,,應用FindName

  本文來自lilipangtou的博客,原文地址:http://hi.baidu.com/lilipangtou/blog/item/0e2653ccf0dd8a21f8dc6131.html

    本站是提供個人知識管理的網絡存儲空間,,所有內容均由用戶發(fā)布,,不代表本站觀點。請注意甄別內容中的聯(lián)系方式,、誘導購買等信息,,謹防詐騙。如發(fā)現(xiàn)有害或侵權內容,,請點擊一鍵舉報,。
    轉藏 分享 獻花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    類似文章 更多