Пример #1
0
        public Form1()
        {
            InitializeComponent();
            ComponentManager.SetXml("config.xml");
            balls = ComponentManager.CreateComponentArray <Label>(panel1, "ball");

            for (int i = 0; i < balls.Length; i++)
            {
                balls[i].Text = i.ToString();
            }
        }