├── .gitattributes ├── .gitignore ├── Book.sln ├── Book.v3.ncrunchsolution ├── Errata.md ├── Host.WPF ├── App.config ├── App.xaml ├── App.xaml.cs ├── Behaviors │ ├── Position.cs │ └── Screenshot.cs ├── Commands.cs ├── Host.WPF.csproj ├── Host.WPF.v3.ncrunchproject ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Registrations.cs ├── Resources │ ├── Book.png │ ├── BookCover.png │ ├── BookPreview1.png │ ├── BookPreview2.png │ ├── BookPreview3.png │ ├── BookPreview4.png │ ├── BookSmall.png │ ├── ConsoleSample.png │ ├── Delete.png │ ├── ExecutingStatus.png │ ├── FailureStatus.png │ ├── Filter.png │ ├── KentBoogaart.jpg │ ├── PerformanceSample.png │ ├── ReptileSkinTexture.png │ ├── SpeckleTexture.png │ ├── SuccessStatus.png │ ├── TestSample.png │ ├── UISample.png │ ├── UnknownStatus.png │ ├── ViewModels.png │ └── Views.png ├── UserControlExtensions.cs └── Views │ ├── Advertising.xaml │ ├── Advertising.xaml.cs │ ├── BookView.xaml │ ├── BookView.xaml.cs │ ├── ChapterView.xaml │ ├── ChapterView.xaml.cs │ ├── ConsoleSampleView.xaml │ ├── ConsoleSampleView.xaml.cs │ ├── SampleHostView.xaml │ ├── SampleHostView.xaml.cs │ ├── SampleWithChapterListItemView.xaml │ ├── SampleWithChapterListItemView.xaml.cs │ ├── Samples │ ├── Chapter 02 │ │ ├── Sample 01 │ │ │ ├── Extensions.cs │ │ │ ├── IllustrationView.xaml │ │ │ ├── IllustrationView.xaml.cs │ │ │ ├── MainView.xaml │ │ │ ├── MainView.xaml.cs │ │ │ ├── PaletteEntryView.xaml │ │ │ ├── PaletteEntryView.xaml.cs │ │ │ ├── PathView.xaml │ │ │ ├── PathView.xaml.cs │ │ │ ├── TextureView.xaml │ │ │ └── TextureView.xaml.cs │ │ └── Sample 02 │ │ │ ├── CancelView.xaml │ │ │ ├── CancelView.xaml.cs │ │ │ ├── MainView.xaml │ │ │ ├── MainView.xaml.cs │ │ │ ├── TweetMediaAttachmentView.xaml │ │ │ ├── TweetMediaAttachmentView.xaml.cs │ │ │ ├── TweetView.xaml │ │ │ └── TweetView.xaml.cs │ ├── Chapter 04 │ │ ├── Sample 01 │ │ │ ├── DinosaurView.xaml │ │ │ ├── DinosaurView.xaml.cs │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 02 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 03 │ │ │ ├── ColorKeyView.xaml │ │ │ ├── ColorKeyView.xaml.cs │ │ │ ├── DinosaurView.xaml │ │ │ ├── DinosaurView.xaml.cs │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 04 │ │ │ ├── DinosaurExhibitionView.xaml │ │ │ ├── DinosaurExhibitionView.xaml.cs │ │ │ ├── ListExhibitionsView.xaml │ │ │ ├── ListExhibitionsView.xaml.cs │ │ │ ├── MainView.xaml │ │ │ ├── MainView.xaml.cs │ │ │ ├── RegisterExhibitionView.xaml │ │ │ └── RegisterExhibitionView.xaml.cs │ │ └── Sample 05 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ ├── Chapter 05 │ │ ├── Sample 01 │ │ │ ├── AgeView.xaml │ │ │ ├── AgeView.xaml.cs │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ └── Sample 05 │ │ │ ├── AgeView.xaml │ │ │ ├── AgeView.xaml.cs │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ ├── Chapter 06 │ │ ├── Sample 01 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 02 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 03 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 04 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 05 │ │ │ ├── ExhibitionView.xaml │ │ │ ├── ExhibitionView.xaml.cs │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ └── Sample 08 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ ├── Chapter 07 │ │ ├── Sample 01 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 02 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 03 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ └── Sample 04 │ │ │ ├── DinosaurView.xaml │ │ │ ├── DinosaurView.xaml.cs │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ ├── Chapter 08 │ │ ├── Sample 01 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 02 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 03 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 04 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 05 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 06 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 07 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 08 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 09 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 10 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 11 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 12 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 13 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 14 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 15 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 16 │ │ │ ├── MainView.xaml │ │ │ ├── MainView.xaml.cs │ │ │ ├── RoarView.xaml │ │ │ └── RoarView.xaml.cs │ │ └── Sample 17 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ ├── Chapter 09 │ │ ├── Sample 01 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 02 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 03 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 04 │ │ │ ├── ChildView.xaml │ │ │ ├── ChildView.xaml.cs │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 05 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ └── Sample 06 │ │ │ ├── MainView.xaml │ │ │ ├── MainView.xaml.cs │ │ │ ├── UndoView.xaml │ │ │ └── UndoView.xaml.cs │ ├── Chapter 10 │ │ ├── Sample 01 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 02 │ │ │ ├── DinosaurView.xaml │ │ │ ├── DinosaurView.xaml.cs │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 03 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 04 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 05 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ └── Sample 06 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ ├── Chapter 11 │ │ ├── Sample 01 │ │ │ ├── ChatMessageView.xaml │ │ │ ├── ChatMessageView.xaml.cs │ │ │ ├── ChatView.xaml │ │ │ ├── ChatView.xaml.cs │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ └── Sample 02 │ │ │ ├── ChatMessageView.xaml │ │ │ ├── ChatMessageView.xaml.cs │ │ │ ├── ChatView.xaml │ │ │ ├── ChatView.xaml.cs │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ ├── Chapter 12 │ │ └── Sample 01 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ ├── Chapter 14 │ │ ├── Sample 01 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 02 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 03 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 04 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 05 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 06 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 07 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 08 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 09 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 10 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 11 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 12 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 13 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 14 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ └── Sample 15 │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ ├── Chapter 15 │ │ ├── Sample 01 │ │ │ ├── CountdownView.xaml │ │ │ ├── CountdownView.xaml.cs │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ └── Sample 02 │ │ │ ├── DetailsView.xaml │ │ │ ├── DetailsView.xaml.cs │ │ │ ├── ImageView.xaml │ │ │ ├── ImageView.xaml.cs │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ ├── Chapter 16 │ │ ├── Sample 01 │ │ │ ├── CountdownView.xaml │ │ │ ├── CountdownView.xaml.cs │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 02 │ │ │ ├── CarnivoreDinosaurView.xaml │ │ │ ├── CarnivoreDinosaurView.xaml.cs │ │ │ ├── HerbivoreDinosaurView.xaml │ │ │ ├── HerbivoreDinosaurView.xaml.cs │ │ │ ├── MainView.xaml │ │ │ ├── MainView.xaml.cs │ │ │ ├── OmnivoreDinosaurView.xaml │ │ │ └── OmnivoreDinosaurView.xaml.cs │ │ ├── Sample 03 │ │ │ ├── DinosaurListItemView.xaml │ │ │ ├── DinosaurListItemView.xaml.cs │ │ │ ├── DinosaurView.xaml │ │ │ ├── DinosaurView.xaml.cs │ │ │ ├── MainView.xaml │ │ │ ├── MainView.xaml.cs │ │ │ └── OmnivoreDinosaurView.xaml.cs │ │ └── Sample 04 │ │ │ ├── DinosaurListItemView.xaml │ │ │ ├── DinosaurListItemView.xaml.cs │ │ │ ├── DinosaurView.xaml │ │ │ ├── DinosaurView.xaml.cs │ │ │ ├── MainView.xaml │ │ │ ├── MainView.xaml.cs │ │ │ └── OmnivoreDinosaurView.xaml.cs │ ├── Chapter 17 │ │ ├── Sample 01 │ │ │ ├── BlurbView.xaml │ │ │ ├── BlurbView.xaml.cs │ │ │ ├── DinosaurView.xaml │ │ │ ├── DinosaurView.xaml.cs │ │ │ ├── MainView.xaml │ │ │ ├── MainView.xaml.cs │ │ │ ├── ScientistView.xaml │ │ │ └── ScientistView.xaml.cs │ │ └── Sample 02 │ │ │ ├── DinosaurView.xaml │ │ │ ├── DinosaurView.xaml.cs │ │ │ ├── DinosaursView.xaml │ │ │ ├── DinosaursView.xaml.cs │ │ │ ├── MainView.xaml │ │ │ ├── MainView.xaml.cs │ │ │ ├── MuseumView.xaml │ │ │ ├── MuseumView.xaml.cs │ │ │ ├── MuseumsView.xaml │ │ │ ├── MuseumsView.xaml.cs │ │ │ ├── ScientistView.xaml │ │ │ ├── ScientistView.xaml.cs │ │ │ ├── ScientistsView.xaml │ │ │ ├── ScientistsView.xaml.cs │ │ │ ├── TopicsView.xaml │ │ │ └── TopicsView.xaml.cs │ ├── Chapter 18 │ │ ├── Sample 01 │ │ │ ├── ChildView.xaml │ │ │ ├── ChildView.xaml.cs │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 02 │ │ │ ├── ChildView.xaml │ │ │ ├── ChildView.xaml.cs │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 03 │ │ │ ├── ChildView.xaml │ │ │ ├── ChildView.xaml.cs │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 04 │ │ │ ├── ChildView.xaml │ │ │ ├── ChildView.xaml.cs │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ ├── Sample 05 │ │ │ ├── ChildView.xaml │ │ │ ├── ChildView.xaml.cs │ │ │ ├── ForcibleActivationForViewFetcher.cs │ │ │ ├── IForcibleActivationForViewFetcher.cs │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ │ └── Sample 06 │ │ │ ├── ChildView.xaml │ │ │ ├── ChildView.xaml.cs │ │ │ ├── MainView.xaml │ │ │ └── MainView.xaml.cs │ └── Chapter 19 │ │ ├── Sample 01 │ │ ├── MainView.xaml │ │ └── MainView.xaml.cs │ │ └── Sample 02 │ │ ├── MainView.xaml │ │ └── MainView.xaml.cs │ ├── TestSampleView.xaml │ ├── TestSampleView.xaml.cs │ ├── TestView.xaml │ └── TestView.xaml.cs ├── LICENSE ├── README.md └── ViewModels ├── App.config ├── AppState.cs ├── BookViewModel.cs ├── ChapterViewModel.cs ├── ConsoleSampleViewModel.cs ├── Data ├── Diet.cs ├── Dinosaur.cs ├── Dinosaurs.cs ├── Era.cs ├── Images │ ├── Ankylosaurus.png │ ├── Ankylosaurus_thumb.png │ ├── Archaeopteryx.png │ ├── Archaeopteryx_thumb.png │ ├── Carnotaurus.png │ ├── Carnotaurus_thumb.png │ ├── Corythosaurus.png │ ├── Corythosaurus_thumb.png │ ├── Dimetrodon.png │ ├── Dimetrodon_thumb.png │ ├── Diplodocus.png │ ├── Diplodocus_thumb.png │ ├── Dromaeosaurus.png │ ├── Dromaeosaurus_thumb.png │ ├── Eryops.png │ ├── Eryops_thumb.png │ ├── Gallimimus.png │ ├── Gallimimus_thumb.png │ ├── Hadrosaurus.png │ ├── Hadrosaurus_thumb.png │ ├── Ichthyosaurus.png │ ├── Ichthyosaurus_thumb.png │ ├── Kentrosaurus.png │ ├── Kentrosaurus_thumb.png │ ├── Oviraptor Philoceratops.png │ ├── Oviraptor Philoceratops_thumb.png │ ├── Pterosaur.png │ ├── Pterosaur_thumb.png │ ├── Spinosaurus.png │ ├── Spinosaurus_thumb.png │ ├── Stegosaurus.png │ ├── Stegosaurus_thumb.png │ ├── Titanosaur.png │ ├── Titanosaur_thumb.png │ ├── Triceratops.png │ ├── Triceratops_thumb.png │ ├── Tyrannosaurus.png │ ├── Tyrannosaurus_thumb.png │ ├── Velociraptor.png │ ├── Velociraptor_thumb.png │ └── world_map.gif ├── Museum.cs ├── Museums.cs ├── Names.cs ├── Period.cs ├── Scientist.cs ├── Scientists.cs ├── Serializers │ └── PointSerializer.cs ├── TimelineColors.cs ├── WorldMap.cs ├── dinosaurs.json ├── first_names.txt ├── last_names.txt ├── museums.json └── scientists.json ├── PerformanceSampleViewModel.cs ├── Properties └── AssemblyInfo.cs ├── SampleAttribute.cs ├── SampleDetailsViewModel.cs ├── SampleType.cs ├── SampleWithChapterViewModel.cs ├── Samples ├── Chapter 02 │ ├── ChapterViewModel.cs │ ├── Sample 01 │ │ ├── Archaeopteryx.cs │ │ ├── Carnotaurus.cs │ │ ├── Diplodocus.cs │ │ ├── IllustrationViewModel.cs │ │ ├── MainViewModel.cs │ │ ├── PaletteEntryViewModel.cs │ │ ├── PathViewModel.cs │ │ ├── Spinosaurus.cs │ │ └── TextureViewModel.cs │ └── Sample 02 │ │ ├── ApiException.cs │ │ ├── CancelViewModel.cs │ │ ├── MainViewModel.cs │ │ ├── TweetList.cs │ │ ├── TweetMediaAttachmentViewModel.cs │ │ ├── TweetMediaType.cs │ │ ├── TweetMediaViewModel.cs │ │ └── TweetViewModel.cs ├── Chapter 04 │ ├── ChapterViewModel.cs │ ├── Sample 01 │ │ ├── DinosaurViewModel.cs │ │ └── MainViewModel.cs │ ├── Sample 02 │ │ └── MainViewModel.cs │ ├── Sample 03 │ │ ├── ColorKeyViewModel.cs │ │ ├── DinosaurViewModel.cs │ │ └── MainViewModel.cs │ ├── Sample 04 │ │ ├── DinosaurExhibitionViewModel.cs │ │ ├── IDinosaurExhibition.cs │ │ ├── ListExhibitionsViewModel.cs │ │ ├── MainViewModel.cs │ │ └── RegisterExhibitionViewModel.cs │ └── Sample 05 │ │ ├── MainViewModel.cs │ │ └── ObservableLogger.cs ├── Chapter 05 │ ├── ChapterViewModel.cs │ ├── Sample 01 │ │ ├── AgeViewModel.cs │ │ ├── DinosaurViewModel.cs │ │ └── MainViewModel.cs │ ├── Sample 02 │ │ ├── DinosaurViewModel.cs │ │ └── MainViewModel.cs │ ├── Sample 03 │ │ ├── DinosaurViewModel.cs │ │ └── MainViewModel.cs │ ├── Sample 04 │ │ ├── DinosaurViewModel.cs │ │ └── MainViewModel.cs │ └── Sample 05 │ │ ├── AgeViewModel.cs │ │ ├── DinosaurViewModel.cs │ │ └── MainViewModel.cs ├── Chapter 06 │ ├── ChapterViewModel.cs │ ├── Sample 01 │ │ └── MainViewModel.cs │ ├── Sample 02 │ │ └── MainViewModel.cs │ ├── Sample 03 │ │ └── MainViewModel.cs │ ├── Sample 04 │ │ ├── DinosaurViewModel.cs │ │ └── MainViewModel.cs │ ├── Sample 05 │ │ ├── ExhibitionViewModel.cs │ │ └── MainViewModel.cs │ ├── Sample 06 │ │ └── MainViewModel.cs │ ├── Sample 07 │ │ ├── AddressViewModel.cs │ │ └── MainViewModel.cs │ └── Sample 08 │ │ └── MainViewModel.cs ├── Chapter 07 │ ├── ChapterViewModel.cs │ ├── Sample 01 │ │ └── MainViewModel.cs │ ├── Sample 02 │ │ └── MainViewModel.cs │ ├── Sample 03 │ │ └── MainViewModel.cs │ └── Sample 04 │ │ ├── DinosaurViewModel.cs │ │ ├── DoLifetimeExtensions.cs │ │ └── MainViewModel.cs ├── Chapter 08 │ ├── ChapterViewModel.cs │ ├── Sample 01 │ │ └── MainViewModel.cs │ ├── Sample 02 │ │ └── MainViewModel.cs │ ├── Sample 03 │ │ └── MainViewModel.cs │ ├── Sample 04 │ │ └── MainViewModel.cs │ ├── Sample 05 │ │ └── MainViewModel.cs │ ├── Sample 06 │ │ └── MainViewModel.cs │ ├── Sample 07 │ │ └── MainViewModel.cs │ ├── Sample 08 │ │ └── MainViewModel.cs │ ├── Sample 09 │ │ └── MainViewModel.cs │ ├── Sample 10 │ │ └── MainViewModel.cs │ ├── Sample 11 │ │ └── MainViewModel.cs │ ├── Sample 12 │ │ └── MainViewModel.cs │ ├── Sample 13 │ │ └── MainViewModel.cs │ ├── Sample 14 │ │ └── MainViewModel.cs │ ├── Sample 15 │ │ ├── MainViewModel.cs │ │ └── ProgressInfo.cs │ ├── Sample 16 │ │ ├── MainViewModel.cs │ │ └── RoarViewModel.cs │ └── Sample 17 │ │ └── MainViewModel.cs ├── Chapter 09 │ ├── ChapterViewModel.cs │ ├── Sample 01 │ │ └── MainViewModel.cs │ ├── Sample 02 │ │ └── MainViewModel.cs │ ├── Sample 03 │ │ └── MainViewModel.cs │ ├── Sample 04 │ │ ├── ChildViewModel.cs │ │ ├── MainViewModel.cs │ │ └── SharedInteractions.cs │ ├── Sample 05 │ │ └── MainViewModel.cs │ └── Sample 06 │ │ ├── MainViewModel.cs │ │ └── UndoViewModel.cs ├── Chapter 10 │ ├── ChapterViewModel.cs │ ├── Sample 01 │ │ └── MainViewModel.cs │ ├── Sample 02 │ │ ├── DinosaurViewModel.cs │ │ └── MainViewModel.cs │ ├── Sample 03 │ │ ├── DinosaurViewModel.cs │ │ └── MainViewModel.cs │ ├── Sample 04 │ │ ├── DinosaurViewModel.cs │ │ └── MainViewModel.cs │ ├── Sample 05 │ │ ├── DinosaurViewModel.cs │ │ └── MainViewModel.cs │ └── Sample 06 │ │ ├── MainViewModel.cs │ │ ├── OrderBy.cs │ │ ├── OrderDirection.cs │ │ ├── Vote.cs │ │ ├── VoteCountViewModel.cs │ │ └── VoteViewModel.cs ├── Chapter 11 │ ├── ChapterViewModel.cs │ ├── Sample 01 │ │ ├── ChatMessage.cs │ │ ├── ChatMessageViewModel.cs │ │ ├── ChatViewModel.cs │ │ └── MainViewModel.cs │ └── Sample 02 │ │ ├── ChatMessage.cs │ │ ├── ChatMessageViewModel.cs │ │ ├── ChatService.cs │ │ ├── ChatViewModel.cs │ │ ├── IChatService.cs │ │ └── MainViewModel.cs ├── Chapter 12 │ ├── ChapterViewModel.cs │ └── Sample 01 │ │ ├── Field.cs │ │ └── MainViewModel.cs ├── Chapter 14 │ ├── ChapterViewModel.cs │ ├── Sample 01 │ │ └── MainViewModel.cs │ ├── Sample 02 │ │ └── MainViewModel.cs │ ├── Sample 03 │ │ ├── MainViewModel.cs │ │ ├── Timestamp.cs │ │ └── TimestampToStringConverter.cs │ ├── Sample 04 │ │ ├── MainViewModel.cs │ │ ├── Timestamp.cs │ │ └── TimestampToStringConverter.cs │ ├── Sample 05 │ │ ├── MainViewModel.cs │ │ ├── Timestamp.cs │ │ └── TimestampToStringConverter.cs │ ├── Sample 06 │ │ └── MainViewModel.cs │ ├── Sample 07 │ │ ├── MainViewModel.cs │ │ └── Timestamp.cs │ ├── Sample 08 │ │ ├── MainViewModel.cs │ │ ├── StringToTimestampConverter.cs │ │ ├── Timestamp.cs │ │ └── TimestampToStringConverter.cs │ ├── Sample 09 │ │ ├── MainViewModel.cs │ │ ├── StringToTimestampConverter.cs │ │ ├── Timestamp.cs │ │ └── TimestampToStringConverter.cs │ ├── Sample 10 │ │ ├── MainViewModel.cs │ │ ├── StringToTimestampConverter.cs │ │ ├── Timestamp.cs │ │ └── TimestampToStringConverter.cs │ ├── Sample 11 │ │ └── MainViewModel.cs │ ├── Sample 12 │ │ └── MainViewModel.cs │ ├── Sample 13 │ │ └── MainViewModel.cs │ ├── Sample 14 │ │ └── MainViewModel.cs │ └── Sample 15 │ │ └── MainViewModel.cs ├── Chapter 15 │ ├── ChapterViewModel.cs │ ├── Sample 01 │ │ ├── CountdownViewModel.cs │ │ └── MainViewModel.cs │ └── Sample 02 │ │ ├── DinosaurViewModel.cs │ │ ├── MainViewModel.cs │ │ └── ViewMode.cs ├── Chapter 16 │ ├── ChapterViewModel.cs │ ├── Sample 01 │ │ ├── CountdownViewModel.cs │ │ └── MainViewModel.cs │ ├── Sample 02 │ │ ├── CarnivoreDinosaurViewModel.cs │ │ ├── DinosaurViewModel.cs │ │ ├── HerbivoreDinosaurViewModel.cs │ │ ├── MainViewModel.cs │ │ └── OmnivoreDinosaurViewModel.cs │ ├── Sample 03 │ │ ├── DinosaurViewModel.cs │ │ └── MainViewModel.cs │ └── Sample 04 │ │ ├── DinosaurViewModel.cs │ │ └── MainViewModel.cs ├── Chapter 17 │ ├── ChapterViewModel.cs │ ├── Sample 01 │ │ ├── BlurbViewModel.cs │ │ ├── DinosaurViewModel.cs │ │ ├── MainViewModel.cs │ │ └── ScientistViewModel.cs │ └── Sample 02 │ │ ├── DinosaurViewModel.cs │ │ ├── DinosaursViewModel.cs │ │ ├── MainViewModel.cs │ │ ├── MuseumViewModel.cs │ │ ├── MuseumsViewModel.cs │ │ ├── ScientistViewModel.cs │ │ ├── ScientistsViewModel.cs │ │ ├── TopicViewModel.cs │ │ └── TopicsViewModel.cs ├── Chapter 18 │ ├── ChapterViewModel.cs │ ├── Sample 01 │ │ ├── ChildViewModel.cs │ │ └── MainViewModel.cs │ ├── Sample 02 │ │ ├── ChildViewModel.cs │ │ └── MainViewModel.cs │ ├── Sample 03 │ │ ├── ChildViewModel.cs │ │ └── MainViewModel.cs │ ├── Sample 04 │ │ ├── ChildViewModel.cs │ │ └── MainViewModel.cs │ ├── Sample 05 │ │ ├── ChildViewModel.cs │ │ └── MainViewModel.cs │ └── Sample 06 │ │ ├── ChildViewModel.cs │ │ ├── GetIsActivatedExtensions.cs │ │ └── MainViewModel.cs ├── Chapter 19 │ ├── ChapterViewModel.cs │ ├── Sample 01 │ │ └── MainViewModel.cs │ └── Sample 02 │ │ ├── MainViewModel.cs │ │ └── PersistedViewModel.cs ├── Chapter 23 │ ├── ChapterViewModel.cs │ └── Sample 01 │ │ ├── MainViewModel.cs │ │ └── Tests.cs ├── Chapter 24 │ ├── ChapterViewModel.cs │ ├── Sample 01 │ │ ├── ApiMock.cs │ │ ├── BitmapLoaderMock.cs │ │ ├── BitmapMock.cs │ │ ├── Dinosaur.cs │ │ ├── DinosaurDetailsViewModel.cs │ │ ├── Error.cs │ │ ├── GetIsActivatedExtensions.cs │ │ ├── IApi.cs │ │ ├── Tests.cs │ │ └── Validated.cs │ ├── Sample 02 │ │ ├── ApiMock.cs │ │ ├── BitmapLoaderMock.cs │ │ ├── BitmapMock.cs │ │ ├── Dinosaur.cs │ │ ├── DinosaurDetailsViewModel.cs │ │ ├── Error.cs │ │ ├── GetIsActivatedExtensions.cs │ │ ├── IApi.cs │ │ ├── Tests.cs │ │ └── Validated.cs │ └── Sample 03 │ │ ├── ApiMock.cs │ │ ├── ApiMockBuilder.cs │ │ ├── BitmapLoaderMock.cs │ │ ├── BitmapLoaderMockBuilder.cs │ │ ├── BitmapMock.cs │ │ ├── BuilderHelpers.cs │ │ ├── Dinosaur.cs │ │ ├── DinosaurBuilder.cs │ │ ├── DinosaurDetailsViewModel.cs │ │ ├── DinosaurDetailsViewModelBuilder.cs │ │ ├── Error.cs │ │ ├── GetIsActivatedExtensions.cs │ │ ├── IApi.cs │ │ ├── SchedulerMock.cs │ │ ├── Tests.cs │ │ └── Validated.cs └── Chapter 25 │ ├── ChapterViewModel.cs │ └── Sample 01 │ ├── ApiMock.cs │ ├── BitmapLoaderMock.cs │ ├── BitmapMock.cs │ ├── Dinosaur.cs │ ├── DinosaurDetailsViewModel.cs │ ├── Error.cs │ ├── GetIsActivatedExtensions.cs │ ├── IApi.cs │ ├── Tests.cs │ └── Validated.cs ├── TestResult.cs ├── TestSampleViewModel.cs ├── TestStatus.cs ├── TestViewModel.cs ├── ViewModels.csproj ├── ViewModels.netstandard1.3.v3.ncrunchproject └── ViewModels.netstandard2.0.v3.ncrunchproject /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/.gitignore -------------------------------------------------------------------------------- /Book.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Book.sln -------------------------------------------------------------------------------- /Book.v3.ncrunchsolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Book.v3.ncrunchsolution -------------------------------------------------------------------------------- /Errata.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Errata.md -------------------------------------------------------------------------------- /Host.WPF/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/App.config -------------------------------------------------------------------------------- /Host.WPF/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/App.xaml -------------------------------------------------------------------------------- /Host.WPF/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/App.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Behaviors/Position.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Behaviors/Position.cs -------------------------------------------------------------------------------- /Host.WPF/Behaviors/Screenshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Behaviors/Screenshot.cs -------------------------------------------------------------------------------- /Host.WPF/Commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Commands.cs -------------------------------------------------------------------------------- /Host.WPF/Host.WPF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Host.WPF.csproj -------------------------------------------------------------------------------- /Host.WPF/Host.WPF.v3.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Host.WPF.v3.ncrunchproject -------------------------------------------------------------------------------- /Host.WPF/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/MainWindow.xaml -------------------------------------------------------------------------------- /Host.WPF/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Host.WPF/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Host.WPF/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Properties/Resources.resx -------------------------------------------------------------------------------- /Host.WPF/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Host.WPF/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Properties/Settings.settings -------------------------------------------------------------------------------- /Host.WPF/Registrations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Registrations.cs -------------------------------------------------------------------------------- /Host.WPF/Resources/Book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Resources/Book.png -------------------------------------------------------------------------------- /Host.WPF/Resources/BookCover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Resources/BookCover.png -------------------------------------------------------------------------------- /Host.WPF/Resources/BookPreview1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Resources/BookPreview1.png -------------------------------------------------------------------------------- /Host.WPF/Resources/BookPreview2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Resources/BookPreview2.png -------------------------------------------------------------------------------- /Host.WPF/Resources/BookPreview3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Resources/BookPreview3.png -------------------------------------------------------------------------------- /Host.WPF/Resources/BookPreview4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Resources/BookPreview4.png -------------------------------------------------------------------------------- /Host.WPF/Resources/BookSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Resources/BookSmall.png -------------------------------------------------------------------------------- /Host.WPF/Resources/ConsoleSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Resources/ConsoleSample.png -------------------------------------------------------------------------------- /Host.WPF/Resources/Delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Resources/Delete.png -------------------------------------------------------------------------------- /Host.WPF/Resources/ExecutingStatus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Resources/ExecutingStatus.png -------------------------------------------------------------------------------- /Host.WPF/Resources/FailureStatus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Resources/FailureStatus.png -------------------------------------------------------------------------------- /Host.WPF/Resources/Filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Resources/Filter.png -------------------------------------------------------------------------------- /Host.WPF/Resources/KentBoogaart.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Resources/KentBoogaart.jpg -------------------------------------------------------------------------------- /Host.WPF/Resources/PerformanceSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Resources/PerformanceSample.png -------------------------------------------------------------------------------- /Host.WPF/Resources/ReptileSkinTexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Resources/ReptileSkinTexture.png -------------------------------------------------------------------------------- /Host.WPF/Resources/SpeckleTexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Resources/SpeckleTexture.png -------------------------------------------------------------------------------- /Host.WPF/Resources/SuccessStatus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Resources/SuccessStatus.png -------------------------------------------------------------------------------- /Host.WPF/Resources/TestSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Resources/TestSample.png -------------------------------------------------------------------------------- /Host.WPF/Resources/UISample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Resources/UISample.png -------------------------------------------------------------------------------- /Host.WPF/Resources/UnknownStatus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Resources/UnknownStatus.png -------------------------------------------------------------------------------- /Host.WPF/Resources/ViewModels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Resources/ViewModels.png -------------------------------------------------------------------------------- /Host.WPF/Resources/Views.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Resources/Views.png -------------------------------------------------------------------------------- /Host.WPF/UserControlExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/UserControlExtensions.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Advertising.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Advertising.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Advertising.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Advertising.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/BookView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/BookView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/BookView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/BookView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/ChapterView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/ChapterView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/ChapterView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/ChapterView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/ConsoleSampleView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/ConsoleSampleView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/ConsoleSampleView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/ConsoleSampleView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/SampleHostView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/SampleHostView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/SampleHostView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/SampleHostView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/SampleWithChapterListItemView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/SampleWithChapterListItemView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/SampleWithChapterListItemView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/SampleWithChapterListItemView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 02/Sample 01/Extensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 02/Sample 01/Extensions.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 02/Sample 01/IllustrationView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 02/Sample 01/IllustrationView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 02/Sample 01/IllustrationView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 02/Sample 01/IllustrationView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 02/Sample 01/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 02/Sample 01/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 02/Sample 01/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 02/Sample 01/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 02/Sample 01/PaletteEntryView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 02/Sample 01/PaletteEntryView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 02/Sample 01/PaletteEntryView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 02/Sample 01/PaletteEntryView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 02/Sample 01/PathView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 02/Sample 01/PathView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 02/Sample 01/PathView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 02/Sample 01/PathView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 02/Sample 01/TextureView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 02/Sample 01/TextureView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 02/Sample 01/TextureView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 02/Sample 01/TextureView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 02/Sample 02/CancelView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 02/Sample 02/CancelView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 02/Sample 02/CancelView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 02/Sample 02/CancelView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 02/Sample 02/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 02/Sample 02/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 02/Sample 02/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 02/Sample 02/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 02/Sample 02/TweetMediaAttachmentView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 02/Sample 02/TweetMediaAttachmentView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 02/Sample 02/TweetMediaAttachmentView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 02/Sample 02/TweetMediaAttachmentView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 02/Sample 02/TweetView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 02/Sample 02/TweetView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 02/Sample 02/TweetView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 02/Sample 02/TweetView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 04/Sample 01/DinosaurView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 04/Sample 01/DinosaurView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 04/Sample 01/DinosaurView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 04/Sample 01/DinosaurView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 04/Sample 01/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 04/Sample 01/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 04/Sample 01/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 04/Sample 01/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 04/Sample 02/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 04/Sample 02/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 04/Sample 02/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 04/Sample 02/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 04/Sample 03/ColorKeyView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 04/Sample 03/ColorKeyView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 04/Sample 03/ColorKeyView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 04/Sample 03/ColorKeyView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 04/Sample 03/DinosaurView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 04/Sample 03/DinosaurView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 04/Sample 03/DinosaurView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 04/Sample 03/DinosaurView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 04/Sample 03/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 04/Sample 03/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 04/Sample 03/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 04/Sample 03/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 04/Sample 04/DinosaurExhibitionView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 04/Sample 04/DinosaurExhibitionView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 04/Sample 04/DinosaurExhibitionView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 04/Sample 04/DinosaurExhibitionView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 04/Sample 04/ListExhibitionsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 04/Sample 04/ListExhibitionsView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 04/Sample 04/ListExhibitionsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 04/Sample 04/ListExhibitionsView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 04/Sample 04/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 04/Sample 04/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 04/Sample 04/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 04/Sample 04/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 04/Sample 04/RegisterExhibitionView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 04/Sample 04/RegisterExhibitionView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 04/Sample 04/RegisterExhibitionView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 04/Sample 04/RegisterExhibitionView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 04/Sample 05/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 04/Sample 05/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 04/Sample 05/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 04/Sample 05/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 05/Sample 01/AgeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 05/Sample 01/AgeView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 05/Sample 01/AgeView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 05/Sample 01/AgeView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 05/Sample 01/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 05/Sample 01/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 05/Sample 01/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 05/Sample 01/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 05/Sample 05/AgeView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 05/Sample 05/AgeView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 05/Sample 05/AgeView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 05/Sample 05/AgeView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 05/Sample 05/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 05/Sample 05/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 05/Sample 05/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 05/Sample 05/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 06/Sample 01/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 06/Sample 01/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 06/Sample 01/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 06/Sample 01/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 06/Sample 02/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 06/Sample 02/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 06/Sample 02/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 06/Sample 02/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 06/Sample 03/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 06/Sample 03/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 06/Sample 03/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 06/Sample 03/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 06/Sample 04/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 06/Sample 04/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 06/Sample 04/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 06/Sample 04/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 06/Sample 05/ExhibitionView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 06/Sample 05/ExhibitionView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 06/Sample 05/ExhibitionView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 06/Sample 05/ExhibitionView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 06/Sample 05/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 06/Sample 05/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 06/Sample 05/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 06/Sample 05/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 06/Sample 08/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 06/Sample 08/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 06/Sample 08/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 06/Sample 08/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 07/Sample 01/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 07/Sample 01/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 07/Sample 01/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 07/Sample 01/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 07/Sample 02/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 07/Sample 02/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 07/Sample 02/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 07/Sample 02/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 07/Sample 03/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 07/Sample 03/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 07/Sample 03/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 07/Sample 03/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 07/Sample 04/DinosaurView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 07/Sample 04/DinosaurView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 07/Sample 04/DinosaurView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 07/Sample 04/DinosaurView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 07/Sample 04/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 07/Sample 04/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 07/Sample 04/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 07/Sample 04/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 08/Sample 01/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 08/Sample 01/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 08/Sample 01/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 08/Sample 01/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 08/Sample 02/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 08/Sample 02/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 08/Sample 02/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 08/Sample 02/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 08/Sample 03/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 08/Sample 03/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 08/Sample 03/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 08/Sample 03/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 08/Sample 04/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 08/Sample 04/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 08/Sample 04/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 08/Sample 04/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 08/Sample 05/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 08/Sample 05/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 08/Sample 05/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 08/Sample 05/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 08/Sample 06/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 08/Sample 06/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 08/Sample 06/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 08/Sample 06/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 08/Sample 07/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 08/Sample 07/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 08/Sample 07/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 08/Sample 07/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 08/Sample 08/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 08/Sample 08/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 08/Sample 08/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 08/Sample 08/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 08/Sample 09/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 08/Sample 09/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 08/Sample 09/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 08/Sample 09/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 08/Sample 10/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 08/Sample 10/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 08/Sample 10/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 08/Sample 10/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 08/Sample 11/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 08/Sample 11/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 08/Sample 11/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 08/Sample 11/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 08/Sample 12/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 08/Sample 12/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 08/Sample 12/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 08/Sample 12/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 08/Sample 13/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 08/Sample 13/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 08/Sample 13/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 08/Sample 13/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 08/Sample 14/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 08/Sample 14/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 08/Sample 14/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 08/Sample 14/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 08/Sample 15/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 08/Sample 15/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 08/Sample 15/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 08/Sample 15/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 08/Sample 16/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 08/Sample 16/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 08/Sample 16/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 08/Sample 16/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 08/Sample 16/RoarView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 08/Sample 16/RoarView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 08/Sample 16/RoarView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 08/Sample 16/RoarView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 08/Sample 17/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 08/Sample 17/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 08/Sample 17/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 08/Sample 17/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 09/Sample 01/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 09/Sample 01/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 09/Sample 01/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 09/Sample 01/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 09/Sample 02/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 09/Sample 02/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 09/Sample 02/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 09/Sample 02/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 09/Sample 03/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 09/Sample 03/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 09/Sample 03/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 09/Sample 03/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 09/Sample 04/ChildView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 09/Sample 04/ChildView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 09/Sample 04/ChildView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 09/Sample 04/ChildView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 09/Sample 04/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 09/Sample 04/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 09/Sample 04/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 09/Sample 04/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 09/Sample 05/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 09/Sample 05/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 09/Sample 05/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 09/Sample 05/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 09/Sample 06/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 09/Sample 06/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 09/Sample 06/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 09/Sample 06/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 09/Sample 06/UndoView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 09/Sample 06/UndoView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 09/Sample 06/UndoView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 09/Sample 06/UndoView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 10/Sample 01/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 10/Sample 01/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 10/Sample 01/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 10/Sample 01/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 10/Sample 02/DinosaurView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 10/Sample 02/DinosaurView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 10/Sample 02/DinosaurView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 10/Sample 02/DinosaurView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 10/Sample 02/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 10/Sample 02/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 10/Sample 02/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 10/Sample 02/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 10/Sample 03/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 10/Sample 03/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 10/Sample 03/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 10/Sample 03/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 10/Sample 04/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 10/Sample 04/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 10/Sample 04/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 10/Sample 04/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 10/Sample 05/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 10/Sample 05/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 10/Sample 05/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 10/Sample 05/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 10/Sample 06/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 10/Sample 06/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 10/Sample 06/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 10/Sample 06/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 11/Sample 01/ChatMessageView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 11/Sample 01/ChatMessageView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 11/Sample 01/ChatMessageView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 11/Sample 01/ChatMessageView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 11/Sample 01/ChatView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 11/Sample 01/ChatView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 11/Sample 01/ChatView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 11/Sample 01/ChatView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 11/Sample 01/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 11/Sample 01/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 11/Sample 01/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 11/Sample 01/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 11/Sample 02/ChatMessageView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 11/Sample 02/ChatMessageView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 11/Sample 02/ChatMessageView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 11/Sample 02/ChatMessageView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 11/Sample 02/ChatView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 11/Sample 02/ChatView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 11/Sample 02/ChatView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 11/Sample 02/ChatView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 11/Sample 02/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 11/Sample 02/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 11/Sample 02/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 11/Sample 02/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 12/Sample 01/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 12/Sample 01/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 12/Sample 01/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 12/Sample 01/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 14/Sample 01/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 14/Sample 01/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 14/Sample 01/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 14/Sample 01/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 14/Sample 02/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 14/Sample 02/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 14/Sample 02/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 14/Sample 02/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 14/Sample 03/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 14/Sample 03/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 14/Sample 03/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 14/Sample 03/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 14/Sample 04/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 14/Sample 04/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 14/Sample 04/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 14/Sample 04/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 14/Sample 05/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 14/Sample 05/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 14/Sample 05/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 14/Sample 05/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 14/Sample 06/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 14/Sample 06/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 14/Sample 06/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 14/Sample 06/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 14/Sample 07/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 14/Sample 07/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 14/Sample 07/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 14/Sample 07/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 14/Sample 08/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 14/Sample 08/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 14/Sample 08/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 14/Sample 08/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 14/Sample 09/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 14/Sample 09/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 14/Sample 09/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 14/Sample 09/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 14/Sample 10/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 14/Sample 10/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 14/Sample 10/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 14/Sample 10/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 14/Sample 11/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 14/Sample 11/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 14/Sample 11/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 14/Sample 11/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 14/Sample 12/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 14/Sample 12/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 14/Sample 12/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 14/Sample 12/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 14/Sample 13/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 14/Sample 13/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 14/Sample 13/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 14/Sample 13/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 14/Sample 14/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 14/Sample 14/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 14/Sample 14/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 14/Sample 14/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 14/Sample 15/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 14/Sample 15/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 14/Sample 15/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 14/Sample 15/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 15/Sample 01/CountdownView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 15/Sample 01/CountdownView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 15/Sample 01/CountdownView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 15/Sample 01/CountdownView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 15/Sample 01/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 15/Sample 01/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 15/Sample 01/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 15/Sample 01/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 15/Sample 02/DetailsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 15/Sample 02/DetailsView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 15/Sample 02/DetailsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 15/Sample 02/DetailsView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 15/Sample 02/ImageView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 15/Sample 02/ImageView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 15/Sample 02/ImageView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 15/Sample 02/ImageView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 15/Sample 02/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 15/Sample 02/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 15/Sample 02/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 15/Sample 02/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 16/Sample 01/CountdownView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 16/Sample 01/CountdownView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 16/Sample 01/CountdownView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 16/Sample 01/CountdownView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 16/Sample 01/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 16/Sample 01/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 16/Sample 01/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 16/Sample 01/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 16/Sample 02/CarnivoreDinosaurView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 16/Sample 02/CarnivoreDinosaurView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 16/Sample 02/CarnivoreDinosaurView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 16/Sample 02/CarnivoreDinosaurView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 16/Sample 02/HerbivoreDinosaurView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 16/Sample 02/HerbivoreDinosaurView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 16/Sample 02/HerbivoreDinosaurView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 16/Sample 02/HerbivoreDinosaurView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 16/Sample 02/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 16/Sample 02/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 16/Sample 02/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 16/Sample 02/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 16/Sample 02/OmnivoreDinosaurView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 16/Sample 02/OmnivoreDinosaurView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 16/Sample 02/OmnivoreDinosaurView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 16/Sample 02/OmnivoreDinosaurView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 16/Sample 03/DinosaurListItemView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 16/Sample 03/DinosaurListItemView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 16/Sample 03/DinosaurListItemView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 16/Sample 03/DinosaurListItemView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 16/Sample 03/DinosaurView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 16/Sample 03/DinosaurView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 16/Sample 03/DinosaurView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 16/Sample 03/DinosaurView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 16/Sample 03/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 16/Sample 03/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 16/Sample 03/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 16/Sample 03/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 16/Sample 03/OmnivoreDinosaurView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 16/Sample 03/OmnivoreDinosaurView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 16/Sample 04/DinosaurListItemView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 16/Sample 04/DinosaurListItemView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 16/Sample 04/DinosaurListItemView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 16/Sample 04/DinosaurListItemView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 16/Sample 04/DinosaurView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 16/Sample 04/DinosaurView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 16/Sample 04/DinosaurView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 16/Sample 04/DinosaurView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 16/Sample 04/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 16/Sample 04/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 16/Sample 04/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 16/Sample 04/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 16/Sample 04/OmnivoreDinosaurView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 16/Sample 04/OmnivoreDinosaurView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 17/Sample 01/BlurbView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 17/Sample 01/BlurbView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 17/Sample 01/BlurbView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 17/Sample 01/BlurbView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 17/Sample 01/DinosaurView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 17/Sample 01/DinosaurView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 17/Sample 01/DinosaurView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 17/Sample 01/DinosaurView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 17/Sample 01/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 17/Sample 01/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 17/Sample 01/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 17/Sample 01/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 17/Sample 01/ScientistView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 17/Sample 01/ScientistView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 17/Sample 01/ScientistView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 17/Sample 01/ScientistView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 17/Sample 02/DinosaurView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 17/Sample 02/DinosaurView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 17/Sample 02/DinosaurView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 17/Sample 02/DinosaurView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 17/Sample 02/DinosaursView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 17/Sample 02/DinosaursView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 17/Sample 02/DinosaursView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 17/Sample 02/DinosaursView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 17/Sample 02/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 17/Sample 02/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 17/Sample 02/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 17/Sample 02/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 17/Sample 02/MuseumView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 17/Sample 02/MuseumView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 17/Sample 02/MuseumView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 17/Sample 02/MuseumView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 17/Sample 02/MuseumsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 17/Sample 02/MuseumsView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 17/Sample 02/MuseumsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 17/Sample 02/MuseumsView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 17/Sample 02/ScientistView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 17/Sample 02/ScientistView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 17/Sample 02/ScientistView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 17/Sample 02/ScientistView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 17/Sample 02/ScientistsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 17/Sample 02/ScientistsView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 17/Sample 02/ScientistsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 17/Sample 02/ScientistsView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 17/Sample 02/TopicsView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 17/Sample 02/TopicsView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 17/Sample 02/TopicsView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 17/Sample 02/TopicsView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 18/Sample 01/ChildView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 18/Sample 01/ChildView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 18/Sample 01/ChildView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 18/Sample 01/ChildView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 18/Sample 01/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 18/Sample 01/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 18/Sample 01/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 18/Sample 01/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 18/Sample 02/ChildView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 18/Sample 02/ChildView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 18/Sample 02/ChildView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 18/Sample 02/ChildView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 18/Sample 02/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 18/Sample 02/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 18/Sample 02/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 18/Sample 02/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 18/Sample 03/ChildView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 18/Sample 03/ChildView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 18/Sample 03/ChildView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 18/Sample 03/ChildView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 18/Sample 03/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 18/Sample 03/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 18/Sample 03/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 18/Sample 03/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 18/Sample 04/ChildView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 18/Sample 04/ChildView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 18/Sample 04/ChildView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 18/Sample 04/ChildView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 18/Sample 04/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 18/Sample 04/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 18/Sample 04/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 18/Sample 04/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 18/Sample 05/ChildView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 18/Sample 05/ChildView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 18/Sample 05/ChildView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 18/Sample 05/ChildView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 18/Sample 05/ForcibleActivationForViewFetcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 18/Sample 05/ForcibleActivationForViewFetcher.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 18/Sample 05/IForcibleActivationForViewFetcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 18/Sample 05/IForcibleActivationForViewFetcher.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 18/Sample 05/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 18/Sample 05/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 18/Sample 05/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 18/Sample 05/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 18/Sample 06/ChildView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 18/Sample 06/ChildView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 18/Sample 06/ChildView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 18/Sample 06/ChildView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 18/Sample 06/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 18/Sample 06/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 18/Sample 06/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 18/Sample 06/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 19/Sample 01/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 19/Sample 01/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 19/Sample 01/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 19/Sample 01/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 19/Sample 02/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 19/Sample 02/MainView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/Samples/Chapter 19/Sample 02/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/Samples/Chapter 19/Sample 02/MainView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/TestSampleView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/TestSampleView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/TestSampleView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/TestSampleView.xaml.cs -------------------------------------------------------------------------------- /Host.WPF/Views/TestView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/TestView.xaml -------------------------------------------------------------------------------- /Host.WPF/Views/TestView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/Host.WPF/Views/TestView.xaml.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/README.md -------------------------------------------------------------------------------- /ViewModels/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/App.config -------------------------------------------------------------------------------- /ViewModels/AppState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/AppState.cs -------------------------------------------------------------------------------- /ViewModels/BookViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/BookViewModel.cs -------------------------------------------------------------------------------- /ViewModels/ChapterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/ChapterViewModel.cs -------------------------------------------------------------------------------- /ViewModels/ConsoleSampleViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/ConsoleSampleViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Data/Diet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Diet.cs -------------------------------------------------------------------------------- /ViewModels/Data/Dinosaur.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Dinosaur.cs -------------------------------------------------------------------------------- /ViewModels/Data/Dinosaurs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Dinosaurs.cs -------------------------------------------------------------------------------- /ViewModels/Data/Era.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Era.cs -------------------------------------------------------------------------------- /ViewModels/Data/Images/Ankylosaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Images/Ankylosaurus.png -------------------------------------------------------------------------------- /ViewModels/Data/Images/Ankylosaurus_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Images/Ankylosaurus_thumb.png -------------------------------------------------------------------------------- /ViewModels/Data/Images/Archaeopteryx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Images/Archaeopteryx.png -------------------------------------------------------------------------------- /ViewModels/Data/Images/Archaeopteryx_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Images/Archaeopteryx_thumb.png -------------------------------------------------------------------------------- /ViewModels/Data/Images/Carnotaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Images/Carnotaurus.png -------------------------------------------------------------------------------- /ViewModels/Data/Images/Carnotaurus_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Images/Carnotaurus_thumb.png -------------------------------------------------------------------------------- /ViewModels/Data/Images/Corythosaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Images/Corythosaurus.png -------------------------------------------------------------------------------- /ViewModels/Data/Images/Corythosaurus_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Images/Corythosaurus_thumb.png -------------------------------------------------------------------------------- /ViewModels/Data/Images/Dimetrodon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Images/Dimetrodon.png -------------------------------------------------------------------------------- /ViewModels/Data/Images/Dimetrodon_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Images/Dimetrodon_thumb.png -------------------------------------------------------------------------------- /ViewModels/Data/Images/Diplodocus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Images/Diplodocus.png -------------------------------------------------------------------------------- /ViewModels/Data/Images/Diplodocus_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Images/Diplodocus_thumb.png -------------------------------------------------------------------------------- /ViewModels/Data/Images/Dromaeosaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Images/Dromaeosaurus.png -------------------------------------------------------------------------------- /ViewModels/Data/Images/Dromaeosaurus_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Images/Dromaeosaurus_thumb.png -------------------------------------------------------------------------------- /ViewModels/Data/Images/Eryops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Images/Eryops.png -------------------------------------------------------------------------------- /ViewModels/Data/Images/Eryops_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Images/Eryops_thumb.png -------------------------------------------------------------------------------- /ViewModels/Data/Images/Gallimimus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Images/Gallimimus.png -------------------------------------------------------------------------------- /ViewModels/Data/Images/Gallimimus_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Images/Gallimimus_thumb.png -------------------------------------------------------------------------------- /ViewModels/Data/Images/Hadrosaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Images/Hadrosaurus.png -------------------------------------------------------------------------------- /ViewModels/Data/Images/Hadrosaurus_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Images/Hadrosaurus_thumb.png -------------------------------------------------------------------------------- /ViewModels/Data/Images/Ichthyosaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Images/Ichthyosaurus.png -------------------------------------------------------------------------------- /ViewModels/Data/Images/Ichthyosaurus_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Images/Ichthyosaurus_thumb.png -------------------------------------------------------------------------------- /ViewModels/Data/Images/Kentrosaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Images/Kentrosaurus.png -------------------------------------------------------------------------------- /ViewModels/Data/Images/Kentrosaurus_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Images/Kentrosaurus_thumb.png -------------------------------------------------------------------------------- /ViewModels/Data/Images/Oviraptor Philoceratops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Images/Oviraptor Philoceratops.png -------------------------------------------------------------------------------- /ViewModels/Data/Images/Oviraptor Philoceratops_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Images/Oviraptor Philoceratops_thumb.png -------------------------------------------------------------------------------- /ViewModels/Data/Images/Pterosaur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Images/Pterosaur.png -------------------------------------------------------------------------------- /ViewModels/Data/Images/Pterosaur_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Images/Pterosaur_thumb.png -------------------------------------------------------------------------------- /ViewModels/Data/Images/Spinosaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Images/Spinosaurus.png -------------------------------------------------------------------------------- /ViewModels/Data/Images/Spinosaurus_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Images/Spinosaurus_thumb.png -------------------------------------------------------------------------------- /ViewModels/Data/Images/Stegosaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Images/Stegosaurus.png -------------------------------------------------------------------------------- /ViewModels/Data/Images/Stegosaurus_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Images/Stegosaurus_thumb.png -------------------------------------------------------------------------------- /ViewModels/Data/Images/Titanosaur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Images/Titanosaur.png -------------------------------------------------------------------------------- /ViewModels/Data/Images/Titanosaur_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Images/Titanosaur_thumb.png -------------------------------------------------------------------------------- /ViewModels/Data/Images/Triceratops.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Images/Triceratops.png -------------------------------------------------------------------------------- /ViewModels/Data/Images/Triceratops_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Images/Triceratops_thumb.png -------------------------------------------------------------------------------- /ViewModels/Data/Images/Tyrannosaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Images/Tyrannosaurus.png -------------------------------------------------------------------------------- /ViewModels/Data/Images/Tyrannosaurus_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Images/Tyrannosaurus_thumb.png -------------------------------------------------------------------------------- /ViewModels/Data/Images/Velociraptor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Images/Velociraptor.png -------------------------------------------------------------------------------- /ViewModels/Data/Images/Velociraptor_thumb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Images/Velociraptor_thumb.png -------------------------------------------------------------------------------- /ViewModels/Data/Images/world_map.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Images/world_map.gif -------------------------------------------------------------------------------- /ViewModels/Data/Museum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Museum.cs -------------------------------------------------------------------------------- /ViewModels/Data/Museums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Museums.cs -------------------------------------------------------------------------------- /ViewModels/Data/Names.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Names.cs -------------------------------------------------------------------------------- /ViewModels/Data/Period.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Period.cs -------------------------------------------------------------------------------- /ViewModels/Data/Scientist.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Scientist.cs -------------------------------------------------------------------------------- /ViewModels/Data/Scientists.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Scientists.cs -------------------------------------------------------------------------------- /ViewModels/Data/Serializers/PointSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/Serializers/PointSerializer.cs -------------------------------------------------------------------------------- /ViewModels/Data/TimelineColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/TimelineColors.cs -------------------------------------------------------------------------------- /ViewModels/Data/WorldMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/WorldMap.cs -------------------------------------------------------------------------------- /ViewModels/Data/dinosaurs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/dinosaurs.json -------------------------------------------------------------------------------- /ViewModels/Data/first_names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/first_names.txt -------------------------------------------------------------------------------- /ViewModels/Data/last_names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/last_names.txt -------------------------------------------------------------------------------- /ViewModels/Data/museums.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/museums.json -------------------------------------------------------------------------------- /ViewModels/Data/scientists.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Data/scientists.json -------------------------------------------------------------------------------- /ViewModels/PerformanceSampleViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/PerformanceSampleViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ViewModels/SampleAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/SampleAttribute.cs -------------------------------------------------------------------------------- /ViewModels/SampleDetailsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/SampleDetailsViewModel.cs -------------------------------------------------------------------------------- /ViewModels/SampleType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/SampleType.cs -------------------------------------------------------------------------------- /ViewModels/SampleWithChapterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/SampleWithChapterViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 02/ChapterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 02/ChapterViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 02/Sample 01/Archaeopteryx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 02/Sample 01/Archaeopteryx.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 02/Sample 01/Carnotaurus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 02/Sample 01/Carnotaurus.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 02/Sample 01/Diplodocus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 02/Sample 01/Diplodocus.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 02/Sample 01/IllustrationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 02/Sample 01/IllustrationViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 02/Sample 01/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 02/Sample 01/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 02/Sample 01/PaletteEntryViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 02/Sample 01/PaletteEntryViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 02/Sample 01/PathViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 02/Sample 01/PathViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 02/Sample 01/Spinosaurus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 02/Sample 01/Spinosaurus.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 02/Sample 01/TextureViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 02/Sample 01/TextureViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 02/Sample 02/ApiException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 02/Sample 02/ApiException.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 02/Sample 02/CancelViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 02/Sample 02/CancelViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 02/Sample 02/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 02/Sample 02/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 02/Sample 02/TweetList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 02/Sample 02/TweetList.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 02/Sample 02/TweetMediaAttachmentViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 02/Sample 02/TweetMediaAttachmentViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 02/Sample 02/TweetMediaType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 02/Sample 02/TweetMediaType.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 02/Sample 02/TweetMediaViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 02/Sample 02/TweetMediaViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 02/Sample 02/TweetViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 02/Sample 02/TweetViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 04/ChapterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 04/ChapterViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 04/Sample 01/DinosaurViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 04/Sample 01/DinosaurViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 04/Sample 01/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 04/Sample 01/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 04/Sample 02/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 04/Sample 02/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 04/Sample 03/ColorKeyViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 04/Sample 03/ColorKeyViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 04/Sample 03/DinosaurViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 04/Sample 03/DinosaurViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 04/Sample 03/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 04/Sample 03/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 04/Sample 04/DinosaurExhibitionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 04/Sample 04/DinosaurExhibitionViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 04/Sample 04/IDinosaurExhibition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 04/Sample 04/IDinosaurExhibition.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 04/Sample 04/ListExhibitionsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 04/Sample 04/ListExhibitionsViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 04/Sample 04/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 04/Sample 04/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 04/Sample 04/RegisterExhibitionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 04/Sample 04/RegisterExhibitionViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 04/Sample 05/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 04/Sample 05/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 04/Sample 05/ObservableLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 04/Sample 05/ObservableLogger.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 05/ChapterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 05/ChapterViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 05/Sample 01/AgeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 05/Sample 01/AgeViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 05/Sample 01/DinosaurViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 05/Sample 01/DinosaurViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 05/Sample 01/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 05/Sample 01/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 05/Sample 02/DinosaurViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 05/Sample 02/DinosaurViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 05/Sample 02/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 05/Sample 02/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 05/Sample 03/DinosaurViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 05/Sample 03/DinosaurViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 05/Sample 03/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 05/Sample 03/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 05/Sample 04/DinosaurViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 05/Sample 04/DinosaurViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 05/Sample 04/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 05/Sample 04/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 05/Sample 05/AgeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 05/Sample 05/AgeViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 05/Sample 05/DinosaurViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 05/Sample 05/DinosaurViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 05/Sample 05/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 05/Sample 05/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 06/ChapterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 06/ChapterViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 06/Sample 01/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 06/Sample 01/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 06/Sample 02/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 06/Sample 02/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 06/Sample 03/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 06/Sample 03/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 06/Sample 04/DinosaurViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 06/Sample 04/DinosaurViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 06/Sample 04/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 06/Sample 04/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 06/Sample 05/ExhibitionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 06/Sample 05/ExhibitionViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 06/Sample 05/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 06/Sample 05/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 06/Sample 06/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 06/Sample 06/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 06/Sample 07/AddressViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 06/Sample 07/AddressViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 06/Sample 07/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 06/Sample 07/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 06/Sample 08/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 06/Sample 08/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 07/ChapterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 07/ChapterViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 07/Sample 01/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 07/Sample 01/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 07/Sample 02/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 07/Sample 02/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 07/Sample 03/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 07/Sample 03/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 07/Sample 04/DinosaurViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 07/Sample 04/DinosaurViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 07/Sample 04/DoLifetimeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 07/Sample 04/DoLifetimeExtensions.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 07/Sample 04/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 07/Sample 04/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 08/ChapterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 08/ChapterViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 08/Sample 01/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 08/Sample 01/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 08/Sample 02/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 08/Sample 02/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 08/Sample 03/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 08/Sample 03/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 08/Sample 04/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 08/Sample 04/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 08/Sample 05/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 08/Sample 05/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 08/Sample 06/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 08/Sample 06/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 08/Sample 07/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 08/Sample 07/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 08/Sample 08/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 08/Sample 08/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 08/Sample 09/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 08/Sample 09/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 08/Sample 10/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 08/Sample 10/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 08/Sample 11/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 08/Sample 11/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 08/Sample 12/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 08/Sample 12/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 08/Sample 13/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 08/Sample 13/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 08/Sample 14/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 08/Sample 14/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 08/Sample 15/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 08/Sample 15/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 08/Sample 15/ProgressInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 08/Sample 15/ProgressInfo.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 08/Sample 16/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 08/Sample 16/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 08/Sample 16/RoarViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 08/Sample 16/RoarViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 08/Sample 17/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 08/Sample 17/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 09/ChapterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 09/ChapterViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 09/Sample 01/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 09/Sample 01/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 09/Sample 02/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 09/Sample 02/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 09/Sample 03/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 09/Sample 03/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 09/Sample 04/ChildViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 09/Sample 04/ChildViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 09/Sample 04/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 09/Sample 04/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 09/Sample 04/SharedInteractions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 09/Sample 04/SharedInteractions.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 09/Sample 05/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 09/Sample 05/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 09/Sample 06/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 09/Sample 06/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 09/Sample 06/UndoViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 09/Sample 06/UndoViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 10/ChapterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 10/ChapterViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 10/Sample 01/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 10/Sample 01/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 10/Sample 02/DinosaurViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 10/Sample 02/DinosaurViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 10/Sample 02/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 10/Sample 02/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 10/Sample 03/DinosaurViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 10/Sample 03/DinosaurViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 10/Sample 03/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 10/Sample 03/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 10/Sample 04/DinosaurViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 10/Sample 04/DinosaurViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 10/Sample 04/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 10/Sample 04/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 10/Sample 05/DinosaurViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 10/Sample 05/DinosaurViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 10/Sample 05/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 10/Sample 05/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 10/Sample 06/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 10/Sample 06/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 10/Sample 06/OrderBy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 10/Sample 06/OrderBy.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 10/Sample 06/OrderDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 10/Sample 06/OrderDirection.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 10/Sample 06/Vote.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 10/Sample 06/Vote.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 10/Sample 06/VoteCountViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 10/Sample 06/VoteCountViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 10/Sample 06/VoteViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 10/Sample 06/VoteViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 11/ChapterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 11/ChapterViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 11/Sample 01/ChatMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 11/Sample 01/ChatMessage.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 11/Sample 01/ChatMessageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 11/Sample 01/ChatMessageViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 11/Sample 01/ChatViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 11/Sample 01/ChatViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 11/Sample 01/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 11/Sample 01/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 11/Sample 02/ChatMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 11/Sample 02/ChatMessage.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 11/Sample 02/ChatMessageViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 11/Sample 02/ChatMessageViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 11/Sample 02/ChatService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 11/Sample 02/ChatService.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 11/Sample 02/ChatViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 11/Sample 02/ChatViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 11/Sample 02/IChatService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 11/Sample 02/IChatService.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 11/Sample 02/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 11/Sample 02/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 12/ChapterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 12/ChapterViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 12/Sample 01/Field.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 12/Sample 01/Field.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 12/Sample 01/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 12/Sample 01/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 14/ChapterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 14/ChapterViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 14/Sample 01/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 14/Sample 01/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 14/Sample 02/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 14/Sample 02/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 14/Sample 03/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 14/Sample 03/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 14/Sample 03/Timestamp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 14/Sample 03/Timestamp.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 14/Sample 03/TimestampToStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 14/Sample 03/TimestampToStringConverter.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 14/Sample 04/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 14/Sample 04/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 14/Sample 04/Timestamp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 14/Sample 04/Timestamp.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 14/Sample 04/TimestampToStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 14/Sample 04/TimestampToStringConverter.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 14/Sample 05/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 14/Sample 05/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 14/Sample 05/Timestamp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 14/Sample 05/Timestamp.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 14/Sample 05/TimestampToStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 14/Sample 05/TimestampToStringConverter.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 14/Sample 06/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 14/Sample 06/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 14/Sample 07/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 14/Sample 07/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 14/Sample 07/Timestamp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 14/Sample 07/Timestamp.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 14/Sample 08/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 14/Sample 08/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 14/Sample 08/StringToTimestampConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 14/Sample 08/StringToTimestampConverter.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 14/Sample 08/Timestamp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 14/Sample 08/Timestamp.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 14/Sample 08/TimestampToStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 14/Sample 08/TimestampToStringConverter.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 14/Sample 09/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 14/Sample 09/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 14/Sample 09/StringToTimestampConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 14/Sample 09/StringToTimestampConverter.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 14/Sample 09/Timestamp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 14/Sample 09/Timestamp.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 14/Sample 09/TimestampToStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 14/Sample 09/TimestampToStringConverter.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 14/Sample 10/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 14/Sample 10/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 14/Sample 10/StringToTimestampConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 14/Sample 10/StringToTimestampConverter.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 14/Sample 10/Timestamp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 14/Sample 10/Timestamp.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 14/Sample 10/TimestampToStringConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 14/Sample 10/TimestampToStringConverter.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 14/Sample 11/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 14/Sample 11/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 14/Sample 12/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 14/Sample 12/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 14/Sample 13/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 14/Sample 13/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 14/Sample 14/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 14/Sample 14/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 14/Sample 15/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 14/Sample 15/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 15/ChapterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 15/ChapterViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 15/Sample 01/CountdownViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 15/Sample 01/CountdownViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 15/Sample 01/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 15/Sample 01/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 15/Sample 02/DinosaurViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 15/Sample 02/DinosaurViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 15/Sample 02/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 15/Sample 02/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 15/Sample 02/ViewMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 15/Sample 02/ViewMode.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 16/ChapterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 16/ChapterViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 16/Sample 01/CountdownViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 16/Sample 01/CountdownViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 16/Sample 01/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 16/Sample 01/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 16/Sample 02/CarnivoreDinosaurViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 16/Sample 02/CarnivoreDinosaurViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 16/Sample 02/DinosaurViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 16/Sample 02/DinosaurViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 16/Sample 02/HerbivoreDinosaurViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 16/Sample 02/HerbivoreDinosaurViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 16/Sample 02/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 16/Sample 02/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 16/Sample 02/OmnivoreDinosaurViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 16/Sample 02/OmnivoreDinosaurViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 16/Sample 03/DinosaurViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 16/Sample 03/DinosaurViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 16/Sample 03/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 16/Sample 03/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 16/Sample 04/DinosaurViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 16/Sample 04/DinosaurViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 16/Sample 04/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 16/Sample 04/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 17/ChapterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 17/ChapterViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 17/Sample 01/BlurbViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 17/Sample 01/BlurbViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 17/Sample 01/DinosaurViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 17/Sample 01/DinosaurViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 17/Sample 01/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 17/Sample 01/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 17/Sample 01/ScientistViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 17/Sample 01/ScientistViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 17/Sample 02/DinosaurViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 17/Sample 02/DinosaurViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 17/Sample 02/DinosaursViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 17/Sample 02/DinosaursViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 17/Sample 02/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 17/Sample 02/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 17/Sample 02/MuseumViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 17/Sample 02/MuseumViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 17/Sample 02/MuseumsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 17/Sample 02/MuseumsViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 17/Sample 02/ScientistViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 17/Sample 02/ScientistViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 17/Sample 02/ScientistsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 17/Sample 02/ScientistsViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 17/Sample 02/TopicViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 17/Sample 02/TopicViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 17/Sample 02/TopicsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 17/Sample 02/TopicsViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 18/ChapterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 18/ChapterViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 18/Sample 01/ChildViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 18/Sample 01/ChildViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 18/Sample 01/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 18/Sample 01/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 18/Sample 02/ChildViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 18/Sample 02/ChildViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 18/Sample 02/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 18/Sample 02/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 18/Sample 03/ChildViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 18/Sample 03/ChildViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 18/Sample 03/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 18/Sample 03/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 18/Sample 04/ChildViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 18/Sample 04/ChildViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 18/Sample 04/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 18/Sample 04/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 18/Sample 05/ChildViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 18/Sample 05/ChildViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 18/Sample 05/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 18/Sample 05/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 18/Sample 06/ChildViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 18/Sample 06/ChildViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 18/Sample 06/GetIsActivatedExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 18/Sample 06/GetIsActivatedExtensions.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 18/Sample 06/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 18/Sample 06/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 19/ChapterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 19/ChapterViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 19/Sample 01/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 19/Sample 01/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 19/Sample 02/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 19/Sample 02/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 19/Sample 02/PersistedViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 19/Sample 02/PersistedViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 23/ChapterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 23/ChapterViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 23/Sample 01/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 23/Sample 01/MainViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 23/Sample 01/Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 23/Sample 01/Tests.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 24/ChapterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 24/ChapterViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 24/Sample 01/ApiMock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 24/Sample 01/ApiMock.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 24/Sample 01/BitmapLoaderMock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 24/Sample 01/BitmapLoaderMock.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 24/Sample 01/BitmapMock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 24/Sample 01/BitmapMock.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 24/Sample 01/Dinosaur.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 24/Sample 01/Dinosaur.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 24/Sample 01/DinosaurDetailsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 24/Sample 01/DinosaurDetailsViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 24/Sample 01/Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 24/Sample 01/Error.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 24/Sample 01/GetIsActivatedExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 24/Sample 01/GetIsActivatedExtensions.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 24/Sample 01/IApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 24/Sample 01/IApi.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 24/Sample 01/Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 24/Sample 01/Tests.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 24/Sample 01/Validated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 24/Sample 01/Validated.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 24/Sample 02/ApiMock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 24/Sample 02/ApiMock.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 24/Sample 02/BitmapLoaderMock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 24/Sample 02/BitmapLoaderMock.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 24/Sample 02/BitmapMock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 24/Sample 02/BitmapMock.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 24/Sample 02/Dinosaur.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 24/Sample 02/Dinosaur.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 24/Sample 02/DinosaurDetailsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 24/Sample 02/DinosaurDetailsViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 24/Sample 02/Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 24/Sample 02/Error.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 24/Sample 02/GetIsActivatedExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 24/Sample 02/GetIsActivatedExtensions.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 24/Sample 02/IApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 24/Sample 02/IApi.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 24/Sample 02/Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 24/Sample 02/Tests.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 24/Sample 02/Validated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 24/Sample 02/Validated.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 24/Sample 03/ApiMock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 24/Sample 03/ApiMock.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 24/Sample 03/ApiMockBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 24/Sample 03/ApiMockBuilder.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 24/Sample 03/BitmapLoaderMock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 24/Sample 03/BitmapLoaderMock.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 24/Sample 03/BitmapLoaderMockBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 24/Sample 03/BitmapLoaderMockBuilder.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 24/Sample 03/BitmapMock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 24/Sample 03/BitmapMock.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 24/Sample 03/BuilderHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 24/Sample 03/BuilderHelpers.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 24/Sample 03/Dinosaur.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 24/Sample 03/Dinosaur.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 24/Sample 03/DinosaurBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 24/Sample 03/DinosaurBuilder.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 24/Sample 03/DinosaurDetailsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 24/Sample 03/DinosaurDetailsViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 24/Sample 03/DinosaurDetailsViewModelBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 24/Sample 03/DinosaurDetailsViewModelBuilder.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 24/Sample 03/Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 24/Sample 03/Error.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 24/Sample 03/GetIsActivatedExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 24/Sample 03/GetIsActivatedExtensions.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 24/Sample 03/IApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 24/Sample 03/IApi.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 24/Sample 03/SchedulerMock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 24/Sample 03/SchedulerMock.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 24/Sample 03/Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 24/Sample 03/Tests.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 24/Sample 03/Validated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 24/Sample 03/Validated.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 25/ChapterViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 25/ChapterViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 25/Sample 01/ApiMock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 25/Sample 01/ApiMock.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 25/Sample 01/BitmapLoaderMock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 25/Sample 01/BitmapLoaderMock.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 25/Sample 01/BitmapMock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 25/Sample 01/BitmapMock.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 25/Sample 01/Dinosaur.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 25/Sample 01/Dinosaur.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 25/Sample 01/DinosaurDetailsViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 25/Sample 01/DinosaurDetailsViewModel.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 25/Sample 01/Error.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 25/Sample 01/Error.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 25/Sample 01/GetIsActivatedExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 25/Sample 01/GetIsActivatedExtensions.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 25/Sample 01/IApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 25/Sample 01/IApi.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 25/Sample 01/Tests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 25/Sample 01/Tests.cs -------------------------------------------------------------------------------- /ViewModels/Samples/Chapter 25/Sample 01/Validated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/Samples/Chapter 25/Sample 01/Validated.cs -------------------------------------------------------------------------------- /ViewModels/TestResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/TestResult.cs -------------------------------------------------------------------------------- /ViewModels/TestSampleViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/TestSampleViewModel.cs -------------------------------------------------------------------------------- /ViewModels/TestStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/TestStatus.cs -------------------------------------------------------------------------------- /ViewModels/TestViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/TestViewModel.cs -------------------------------------------------------------------------------- /ViewModels/ViewModels.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/ViewModels.csproj -------------------------------------------------------------------------------- /ViewModels/ViewModels.netstandard1.3.v3.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/ViewModels.netstandard1.3.v3.ncrunchproject -------------------------------------------------------------------------------- /ViewModels/ViewModels.netstandard2.0.v3.ncrunchproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kentcb/YouIandReactiveUI/HEAD/ViewModels/ViewModels.netstandard2.0.v3.ncrunchproject --------------------------------------------------------------------------------