面板内的用户控件

发布于 2024-08-29 19:29:31 字数 136 浏览 2 评论 0原文

在我的项目中,我向面板添加了一个用户控件。当我尝试向其中添加一个新的用户控件时 我的面板我想检查之前放置在面板中的用户控件的名称是什么 怎么做。

我有三个不同的用户控件,我在替换之前将其一一分配给面板 新的和旧的,我想找到面板里面旧的是什么。

In my project i added a usercontrol to a panel.when i try to add a new usercontrol to
my panel i want to check what is the name of the usercontrol placed in the panel before
how to do it.

i have three different usercontrols, i assign it one by one to panel,before replacing
the new one with the old one ,i want to find what is the old one inside the panel.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

春风十里 2024-09-05 19:29:31

您可以这样设置名称:

Panel pnl= new Panel();
...

UserControl myControl = new UserControl();
myControl.Name = "muUserControl";
pnl.Controls.Add(myControl);



foreach (Control ctrl in pnlUserControlContainer.Controls)
                {
                    if (ctrl is UserControl)
                    {
                        Console.WriteLine(ctrl.Name);
                    }
                }

You can set the name like this:

Panel pnl= new Panel();
...

UserControl myControl = new UserControl();
myControl.Name = "muUserControl";
pnl.Controls.Add(myControl);



foreach (Control ctrl in pnlUserControlContainer.Controls)
                {
                    if (ctrl is UserControl)
                    {
                        Console.WriteLine(ctrl.Name);
                    }
                }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文