public FullScreenSourceProvider(ILocalizationProvider Loc,
                                 IIconSet Icons,
                                 IPlatformServices PlatformServices,
                                 VideoSettings VideoSettings) : base(Loc)
 {
     Source = new FullScreenItem(PlatformServices, VideoSettings);
     Icon   = Icons.MultipleMonitor;
 }
예제 #2
0
        public ScreenSourceProvider(ILocalizationProvider Loc,
                                    IVideoSourcePicker VideoSourcePicker,
                                    IIconSet Icons,
                                    IPlatformServices PlatformServices,
                                    VideoSettings VideoSettings) : base(Loc)
        {
            _videoSourcePicker = VideoSourcePicker;
            _platformServices  = PlatformServices;
            _videoSettings     = VideoSettings;

            Icon = Icons.Screen;
        }