示例#1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="frmTimeSheetItem"/> class.
 /// </summary>
 /// <param name="timeSheet">The time sheet.</param>
 public TimeSheetItemForm(ref TimeSheet timeSheet, TimeSheetDay timeSheetDay) {
   InitializeComponent();
   _timeSheetItem            = timeSheet;
   _timeSheetDayItem         = timeSheetDay;
   _categoriesControl        = new CategoriesControl();
   SetUpTimeSheetItemForm();
 }
示例#2
0
    /// <summary>
    /// Initializes a new instance of the <see cref="frmPlanner"/> class.
    /// </summary>
    public PlannerForm(){
      InitializeComponent();

      _todoControl                        = new TodoControl();
      _timeSheetControl                   = new TimeSheetControl();
      _noteControl                        = new NotesControl();
      _categoriesControl                  = new CategoriesControl();
      
      SetUpPlanner();
    }
示例#3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Categories"/> class.
 /// </summary>
 public CategoriesForm() {
   InitializeComponent();
   _categoriesControl       = new CategoriesControl();
   SetUpCategoriesForm();
 }