本文介绍了在Dotnet中形成窗体的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

先生/女士,



我可能知道如何找到 splitcontainer1.panel2 表格 / b>。以及如何在运行时设置该表单 backcolor

我无法解决这个问题。如果你不是我可能我知道吗?





谢谢你...

hi sir/madam,

may i know how to find the form that is displayed in splitcontainer1.panel2 . and also how to set that form backcolor at runtime.
I am not getting the way to solve this. if u don't mine may i know?


thank u...

推荐答案



foreach (Control ctrl in splitcontainer1.panel2.Controls)
{
    if (typeof(ctrl) == typeof(Form1))
    {
    }
    else if (typeof(ctrl) == typeof(Form2))
    {
    }
    //else if ...
}


这篇关于在Dotnet中形成窗体的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 18:29