Exemplo n.º 1
0
 private ScreenSettings CreateScreenSettings(
     ScreenSettingsEntryType associatedEntryType,
     String header,
     String description,
     ResourcePath backgroundPath)
 {
     return(new ScreenSettings(associatedEntryType)
     {
         Header = header,
         Description = description,
         Background = backgroundPath,
     });
 }
 public ScreenSettings(ScreenSettingsEntryType associatedEntryType)
 {
     this.Type = associatedEntryType;
 }