码迷,mamicode.com
首页 > Windows程序 > 详细

C# WPF动态删除指定类型控件

时间:2020-01-18 10:52:37      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:contains   info   move   指定   pre   wpf   detail   art   orm   

 

Winform控件的动态删除请参考Winform控件动态删除

List<Button> listButton = new List<Button>();
foreach (var control in wrapPanelContainer.Children)
{
     if(!(control is Button))
         continue;

     var button = control as Button;

     if (!button.Name.Contains("BtnTable"))
         continue;

     listButton.Add(button);
 }

 foreach (Button control in listButton)
     wrapPanelContainer.Children.Remove(control);

C# WPF动态删除指定类型控件

标签:contains   info   move   指定   pre   wpf   detail   art   orm   

原文地址:https://www.cnblogs.com/kris-wang/p/12208190.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!