예제 #1
0
        public MainViewModel(PageNavigationModel pageNavigation)
        {
            _presentationNavigation = new PresentationNavigationModel();

            _title = new PageTitle(_presentationNavigation);
            _slidesAndCode = new PageSlidesAndCode(_presentationNavigation);
            _aboutMe = new PageAboutMe(_presentationNavigation);
            _ericBrewer = new PageEricBrewer(_presentationNavigation);
            _udiDahan = new PageUdiDahan(_presentationNavigation);
            _gregYoung = new PageGregYoung(_presentationNavigation);
            _definitions = new PageDefinitions(_presentationNavigation);
            _proof = new PageProof(_presentationNavigation);
            _choices = new PageChoices(_presentationNavigation);
            _centralDatabase = new Pages.PageCentralDatabase(_presentationNavigation);
            _cqrs = new Pages.PageCQRS(_presentationNavigation);
            _eventSourcing = new Pages.PageEventSourcing(_presentationNavigation);
            _conclusion = new PageConclusion(_presentationNavigation);

            _pages = new IPage[]
            {
                _title,
                _slidesAndCode,
                _aboutMe,
                _ericBrewer,
                _udiDahan,
                _gregYoung,
                _definitions,
                _proof,
                _choices,
                _centralDatabase,
                _cqrs,
                _eventSourcing,
                _conclusion
            };

            _inertialScale = new InertialProperty(() => (float)PageNavigation.Scale);
            _positionX = new InertialProperty(() => (float)PageNavigation.Position.X);
            _positionY = new InertialProperty(() => (float)PageNavigation.Position.Y);

            _timer = new DispatcherTimer();
            _timer.Interval = TimeSpan.FromSeconds(0.05);
            _timer.Tick += delegate(object sender, EventArgs e)
            {
                _inertialScale.OnTimer();
                _positionX.OnTimer();
                _positionY.OnTimer();
            };
            _timer.Start();
        }
예제 #2
0
        public MainViewModel(PageNavigationModel pageNavigation)
        {
            _presentationNavigation = new PresentationNavigationModel();

            _title = new PageTitle(_presentationNavigation);
            _slidesAndCode = new PageSlidesAndCode(_presentationNavigation);
            _aboutMe = new PageAboutMe(_presentationNavigation);
            _ericBrewer = new PageEricBrewer(_presentationNavigation);
            _udiDahan = new PageUdiDahan(_presentationNavigation);
            _gregYoung = new PageGregYoung(_presentationNavigation);
            _definitions = new PageDefinitions(_presentationNavigation);
            _proof = new PageProof(_presentationNavigation);
            _choices = new PageChoices(_presentationNavigation);
            _centralDatabase = new Pages.PageCentralDatabase(_presentationNavigation);
            _cqrs = new Pages.PageCQRS(_presentationNavigation);
            _eventSourcing = new Pages.PageEventSourcing(_presentationNavigation);
            _conclusion = new PageConclusion(_presentationNavigation);

            _pages = new IPage[]
            {
                _title,
                _slidesAndCode,
                _aboutMe,
                _ericBrewer,
                _udiDahan,
                _gregYoung,
                _definitions,
                _proof,
                _choices,
                _centralDatabase,
                _cqrs,
                _eventSourcing,
                _conclusion
            };

            _inertialScale = new InertialProperty(() => (float)PageNavigation.Scale);
            _positionX = new InertialProperty(() => (float)PageNavigation.Position.X);
            _positionY = new InertialProperty(() => (float)PageNavigation.Position.Y);

            _timer = new DispatcherTimer();
            _timer.Interval = TimeSpan.FromSeconds(0.05);
            _timer.Tick += delegate(object sender, EventArgs e)
            {
                _inertialScale.OnTimer();
                _positionX.OnTimer();
                _positionY.OnTimer();
            };
            _timer.Start();
        }
예제 #3
0
 public PageGregYoung(PresentationNavigationModel presentationNavigation)
     : base(presentationNavigation, "GregYoung", "Greg Young")
 {
 }
예제 #4
0
 public PageEricBrewer(PresentationNavigationModel presentationNavigation)
     : base(presentationNavigation, "EricBrewer", "Eric Brewer")
 {
 }
예제 #5
0
 public PageTitle(PresentationNavigationModel presentationNavigation)
     : base(presentationNavigation, "Title", "")
 {
 }
예제 #6
0
 public PageUdiDahan(PresentationNavigationModel presentationNavigation)
     : base(presentationNavigation, "UdiDahan", "Udi Dahan")
 {
 }