Battle_Script_Pro.Form7.Form7 C# (CSharp) 메소드

Form7() 공개 메소드

public Form7 ( Form1 frm ) : System
frm Form1
리턴 System
        public Form7(Form1 frm)
        {
            InitializeComponent();
            parent = frm;
            foreach (Control c in this.Controls)
            {
                foreach (Control child in c.Controls)
                {
                    if (child is RadioButton)
                    {
                        ((RadioButton)(child)).CheckedChanged += new EventHandler(radioButtons_CheckedChanged);
                    }
                }
            }
        }