public FullScreenSourceProvider(ILocalizationProvider Loc,
                                 IIconSet Icons,
                                 IPlatformServices PlatformServices) : base(Loc)
 {
     Source = new FullScreenItem(PlatformServices);
     Icon   = Icons.MultipleMonitor;
 }
Beispiel #2
0
 public FullScreenSourceProvider(LanguageManager loc,
                                 IIconSet icons,
                                 // ReSharper disable once SuggestBaseTypeForParameter
                                 FullScreenItem fullScreenItem) : base(loc)
 {
     Source = fullScreenItem;
     Icon   = icons.MultipleMonitor;
 }
 public FullScreenSourceProvider(LanguageManager Loc, FullScreenItem FullScreenItem) : base(Loc)
 {
     Source = FullScreenItem;
 }