Пример #1
0
        public ChildForm(ParentForm form, SortType st)
        {
            this.st = st;
            InitializeComponent();
            this.MdiParent = form;
            Random rand = new Random();

            for (int j = 0; j < array1.Length; j++)
            {
                array1[j] = rand.Next(0, 100);
            }

            if (bub)
            {
            }
        }
Пример #2
0
 public ChildForm(ParentForm form)
 {
     InitializeComponent();
     this.MdiParent = form;
 }