예제 #1
0
 public CurrentlyWorkingOnSection()
 {
     EmbeddedAssemblyResolver.Ensure();
     this.Title              = "Currently Working On";
     this.IsVisible          = true;
     this.IsExpanded         = true;
     this.IsBusy             = false;
     this.SectionContent     = new CurrentlyWorkingOnSectionView();
     this.View.ParentSection = this;
 }
예제 #2
0
 public TimeSlotsSection()
 {
     EmbeddedAssemblyResolver.Ensure();
     this.Days               = 3;
     this.MinimumTimeSpan    = 1;
     this.WorkdayStart       = new TimeSpan(0, 1, 0);
     this.WorkdayEnd         = new TimeSpan(23, 59, 0);
     this.Title              = "Time Slots";
     this.IsVisible          = true;
     this.IsExpanded         = true;
     this.IsBusy             = false;
     this.SectionContent     = new TimeSlotsSectionView();
     this.View.ParentSection = this;
 }