Example #1
0
        public WpfMainFormViewModel(StreamVideoPlayerWpf streamVideoPlayerWpf) : this()
        {
            this.streamVideoPlayerWpf = streamVideoPlayerWpf;

            _registerMarkerCommnd = new CommandHandlerWithParam(RegisterMarkerMethod, CanExecute);

            timer = new DispatcherTimer();

            timer.Tick += TimerOnTick;

            timer.Start();

            _markerWithPropertiesCollection = new ObservableCollection <MarkerWithProperty>();

            Test();
        }
Example #2
0
 public WpfMainFormViewModel(StreamVideoPlayerWpf streamVideoPlayerWpf, WPFMainFormControl wPFMainFormControl) : this(streamVideoPlayerWpf)
 {
     this.wPFMainFormControl = wPFMainFormControl;
 }