I want to be to be able to add textbox to the a rad window that is generated dynamically, but i can't see anything that will allow me to do this.
I was expecting to see some thing like ' Window.Child.Add();'
Can anyone help please?
                                I was expecting to see some thing like ' Window.Child.Add();'
Can anyone help please?
RadWindow[] window = new RadWindow[5];                for (int i = 0; i < 5; i++)                {                    window[i] = new RadWindow();                                          window[i].Width = 250;                    window[i].Height = 250;                    window[i].Name = "Apples" + i;                    window[i].Show();                }