Пример #1
0
 private void FillDate()
 {
     CbxDay   = ControlUtil.FillComboInteger(1, 31);
     CbxMonth = ControlUtil.FillComboInteger(1, 12);
     CbxYear  = ControlUtil.FillComboInteger(1900, DateTime.Now.Year);
     BODPanel = ControlUtil.GeneratePanel(3, new Control[]
     {
         CbxDay, CbxMonth, CbxYear
     }, 0, 90, 20, Color.Aquamarine);
 }