├── dirnames.txt ├── 64-DataVirtualizationFilteringSorting ├── src │ ├── wpf │ │ └── DVFilterSort │ │ │ └── DVFilterSort │ │ │ ├── CustomersDataSet.xsc │ │ │ └── CustomersDataSet.xss │ ├── winui │ │ ├── global.json │ │ └── DataVirtualizationFilteringSorting.macOS │ │ │ └── Assets.xcassets │ │ │ └── Contents.json │ └── uwp-uno │ │ └── DataVirtualizationFilteringSorting.macOS │ │ └── Assets.xcassets │ │ └── Contents.json └── Images │ └── DVFilteringSorting.png ├── 08-BarGraph ├── src │ ├── winui │ │ ├── global.json │ │ ├── BarGraph.macOS │ │ │ ├── AppDelegate.cs │ │ │ ├── Assets.xcassets │ │ │ │ └── Contents.json │ │ │ └── Resources │ │ │ │ └── Fonts │ │ │ │ └── winjs-symbols.ttf │ │ ├── BarGraph.UWP │ │ │ └── Assets │ │ │ │ ├── StoreLogo.png │ │ │ │ ├── SplashScreen.scale-200.png │ │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ │ ├── Wide310x150Logo.scale-200.png │ │ │ │ └── Square150x150Logo.scale-200.png │ │ ├── BarGraph.Wasm │ │ │ └── Assets │ │ │ │ └── SplashScreen.png │ │ ├── BarGraph.Droid │ │ │ ├── Resources │ │ │ │ └── drawable │ │ │ │ │ └── Icon.png │ │ │ └── Assets │ │ │ │ └── Fonts │ │ │ │ ├── winjs-symbols.ttf │ │ │ │ └── uno-fluentui-assets.ttf │ │ └── BarGraph.iOS │ │ │ └── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── SplashScreen@2x.png │ │ │ ├── SplashScreen@3x.png │ │ │ └── Fonts │ │ │ └── winjs-symbols.ttf │ ├── uwp-uno │ │ └── BarGraph │ │ │ ├── BarGraph.macOS │ │ │ └── Assets.xcassets │ │ │ │ └── Contents.json │ │ │ ├── BarGraph.UWP │ │ │ └── Assets │ │ │ │ └── storelogo.png │ │ │ └── BarGraph.Wasm │ │ │ └── Assets │ │ │ └── SplashScreen.png │ └── wpf │ │ └── BarGraph │ │ └── App.xaml.cs └── Images │ ├── 8BarGraph.png │ ├── 8BarGraph-uwp.png │ └── 8BarGraph-desktop.png ├── 25-BindToEnum ├── src │ ├── winui │ │ ├── global.json │ │ ├── BindToEnum.macOS │ │ │ ├── AppDelegate.cs │ │ │ └── Assets.xcassets │ │ │ │ └── Contents.json │ │ ├── BindToEnum.UWP │ │ │ └── Assets │ │ │ │ ├── StoreLogo.png │ │ │ │ └── SplashScreen.scale-200.png │ │ ├── BindToEnum.Wasm │ │ │ └── Assets │ │ │ │ └── SplashScreen.png │ │ ├── BindToEnum.Droid │ │ │ └── Resources │ │ │ │ └── drawable │ │ │ │ └── Icon.png │ │ └── BindToEnum.iOS │ │ │ └── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── SplashScreen@2x.png │ │ │ └── SplashScreen@3x.png │ └── uwp-uno │ │ ├── BindToEnum.macOS │ │ ├── AppDelegate.cs │ │ └── Assets.xcassets │ │ │ └── Contents.json │ │ ├── BindToEnum.UWP │ │ └── Assets │ │ │ └── StoreLogo.png │ │ ├── BindToEnum.Wasm │ │ └── Assets │ │ │ └── SplashScreen.png │ │ ├── BindToEnum.Droid │ │ └── Resources │ │ │ └── drawable │ │ │ └── Icon.png │ │ └── BindToEnum.iOS │ │ └── Resources │ │ ├── Default-568h@2x.png │ │ ├── SplashScreen@2x.png │ │ └── SplashScreen@3x.png └── Images │ └── 25BindToEnum.png ├── 01-DataContext ├── src │ ├── winui │ │ ├── global.json │ │ ├── DataContextSample.macOS │ │ │ ├── AppDelegate.cs │ │ │ └── Assets.xcassets │ │ │ │ └── Contents.json │ │ ├── DataContextSample.UWP │ │ │ └── Assets │ │ │ │ └── StoreLogo.png │ │ └── DataContextSample.Wasm │ │ │ └── Assets │ │ │ └── SplashScreen.png │ ├── uwp-uno │ │ └── DataContextSample │ │ │ └── DataContextSample.macOS │ │ │ └── Assets.xcassets │ │ │ └── Contents.json │ └── wpf │ │ └── DataContextSample │ │ └── App.xaml.cs └── Images │ ├── DataContext.PNG │ ├── DataContext-uno.PNG │ └── DataContext-desktop.PNG ├── 02-EmptyBinding ├── src │ ├── winui │ │ ├── global.json │ │ ├── EmptyBinding.macOS │ │ │ ├── AppDelegate.cs │ │ │ └── Assets.xcassets │ │ │ │ └── Contents.json │ │ ├── EmptyBinding.UWP │ │ │ └── Assets │ │ │ │ └── StoreLogo.png │ │ ├── EmptyBinding.Wasm │ │ │ └── Assets │ │ │ │ └── SplashScreen.png │ │ ├── EmptyBinding.Droid │ │ │ └── Resources │ │ │ │ └── drawable │ │ │ │ └── Icon.png │ │ └── EmptyBinding.iOS │ │ │ └── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── SplashScreen@2x.png │ │ │ └── SplashScreen@3x.png │ ├── uwp-uno │ │ └── EmptyBinding │ │ │ └── EmptyBinding.macOS │ │ │ └── Assets.xcassets │ │ │ └── Contents.json │ └── wpf │ │ └── EmptyBinding │ │ └── App.xaml.cs └── Images │ ├── EmptyBinding.png │ ├── EmptyBinding-uwp.png │ ├── EmptyBinding-wasm.png │ └── EmptyBinding-desktop.png ├── 03-GetListBoxItem ├── src │ ├── winui │ │ ├── global.json │ │ ├── GetListBoxItem.macOS │ │ │ ├── AppDelegate.cs │ │ │ └── Assets.xcassets │ │ │ │ └── Contents.json │ │ ├── GetListBoxItem.UWP │ │ │ └── Assets │ │ │ │ └── StoreLogo.png │ │ └── GetListBoxItem.Wasm │ │ │ └── Assets │ │ │ └── SplashScreen.png │ ├── uwp-uno │ │ └── GetListBoxItem │ │ │ └── GetListBoxItem.macOS │ │ │ └── Assets.xcassets │ │ │ └── Contents.json │ └── wpf │ │ └── GetListBoxItem │ │ └── App.xaml.cs └── Images │ ├── GetListBoxItem.png │ ├── GetListBoxItem-uwp.png │ └── GetListBoxItem-desktop.png ├── 04-BindToComboBox ├── src │ ├── winui │ │ ├── global.json │ │ ├── BindToComboBox.macOS │ │ │ ├── AppDelegate.cs │ │ │ └── Assets.xcassets │ │ │ │ └── Contents.json │ │ ├── BindToComboBox.UWP │ │ │ └── Assets │ │ │ │ └── StoreLogo.png │ │ └── BindToComboBox.Wasm │ │ │ └── Assets │ │ │ └── SplashScreen.png │ ├── uwp-uno │ │ └── BindToComboBox │ │ │ └── BindToComboBox.macOS │ │ │ └── Assets.xcassets │ │ │ └── Contents.json │ └── wpf │ │ └── BindToComboBox │ │ └── App.xaml.cs └── Images │ ├── BindToComboBox.png │ ├── BindToComboBox-uwp.png │ └── BindToComboBox-desktop.png ├── 06-SelectedValue ├── src │ ├── winui │ │ ├── global.json │ │ ├── SelectedValueSample.macOS │ │ │ ├── Assets.xcassets │ │ │ │ └── Contents.json │ │ │ └── AppDelegate.cs │ │ └── SelectedValueSample.UWP │ │ │ └── Assets │ │ │ └── StoreLogo.png │ └── uwp-uno │ │ └── SelectedValueSample │ │ └── SelectedValueSample.macOS │ │ └── Assets.xcassets │ │ └── Contents.json └── Images │ ├── SelectedValueSample.png │ ├── SelectedValueSample-uwp.png │ └── SelectedValueSample-desktop.png ├── 10-MasterDetail ├── src │ ├── winui │ │ ├── global.json │ │ ├── MasterDetail.macOS │ │ │ ├── AppDelegate.cs │ │ │ └── Assets.xcassets │ │ │ │ └── Contents.json │ │ ├── MasterDetail.Shared │ │ │ ├── 2moons_2.gif │ │ │ ├── earglobe.gif │ │ │ ├── jupglobe.gif │ │ │ ├── marglobe.gif │ │ │ ├── merglobe.gif │ │ │ ├── nepglobe.gif │ │ │ ├── uraglobe.gif │ │ │ ├── venglobe.gif │ │ │ └── plutoch_2.gif │ │ ├── MasterDetail.UWP │ │ │ └── Assets │ │ │ │ └── StoreLogo.png │ │ ├── MasterDetail.Wasm │ │ │ └── Assets │ │ │ │ └── SplashScreen.png │ │ ├── MasterDetail.Droid │ │ │ └── Resources │ │ │ │ └── drawable │ │ │ │ └── Icon.png │ │ └── MasterDetail.iOS │ │ │ └── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── SplashScreen@2x.png │ │ │ └── SplashScreen@3x.png │ ├── uwp-uno │ │ ├── MasterDetail.macOS │ │ │ └── Assets.xcassets │ │ │ │ └── Contents.json │ │ ├── MasterDetail.Shared │ │ │ ├── 2moons_2.gif │ │ │ ├── earglobe.gif │ │ │ ├── jupglobe.gif │ │ │ ├── marglobe.gif │ │ │ ├── merglobe.gif │ │ │ ├── nepglobe.gif │ │ │ ├── plutoch_2.gif │ │ │ ├── uraglobe.gif │ │ │ └── venglobe.gif │ │ ├── MasterDetail.UWP │ │ │ └── Assets │ │ │ │ └── storelogo.png │ │ └── MasterDetail.Wasm │ │ │ └── Assets │ │ │ └── SplashScreen.png │ └── wpf │ │ └── MasterDetail │ │ ├── 2moons_2.gif │ │ ├── earglobe.gif │ │ ├── jupglobe.gif │ │ ├── marglobe.gif │ │ ├── merglobe.gif │ │ ├── nepglobe.gif │ │ ├── plutoch_2.gif │ │ ├── uraglobe.gif │ │ ├── venglobe.gif │ │ └── App.xaml.cs └── Images │ ├── 10MasterDetail.png │ ├── 10MasterDetail-uwp.png │ ├── 10MasterDetail-wasm.png │ └── 10MasterDetail-desktop.png ├── 13-TemplatingItems ├── src │ ├── winui │ │ ├── global.json │ │ ├── TemplatingItems.macOS │ │ │ ├── AppDelegate.cs │ │ │ └── Assets.xcassets │ │ │ │ └── Contents.json │ │ ├── TemplatingItems.UWP │ │ │ └── Assets │ │ │ │ └── StoreLogo.png │ │ └── TemplatingItems.Wasm │ │ │ └── Assets │ │ │ └── SplashScreen.png │ └── uwp-uno │ │ ├── TemplatingItems.macOS │ │ ├── AppDelegate.cs │ │ └── Assets.xcassets │ │ │ └── Contents.json │ │ └── TemplatingItems.UWP │ │ └── Assets │ │ └── StoreLogo.png └── Images │ ├── 13TemplatingItems.png │ ├── 13TemplatingItems-uwp.png │ └── 13TemplatingItems-desktop.png ├── 14-SortingGroups ├── src │ ├── winui │ │ ├── global.json │ │ ├── SortingGroups.macOS │ │ │ ├── AppDelegate.cs │ │ │ └── Assets.xcassets │ │ │ │ └── Contents.json │ │ ├── SortingGroups.UWP │ │ │ └── Assets │ │ │ │ └── StoreLogo.png │ │ └── SortingGroups.Wasm │ │ │ └── Assets │ │ │ └── SplashScreen.png │ └── uwp-uno │ │ ├── SortingGroups.macOS │ │ ├── AppDelegate.cs │ │ └── Assets.xcassets │ │ │ └── Contents.json │ │ ├── SortingGroups.UWP │ │ └── Assets │ │ │ └── StoreLogo.png │ │ └── SortingGroups.Wasm │ │ └── Assets │ │ └── SplashScreen.png └── Images │ ├── 14SortingGroups.png │ ├── 14SortingGroups-uwp.png │ └── 14SortingGroups-desktop.png ├── 16-GroupByType ├── src │ ├── winui │ │ ├── global.json │ │ ├── GroupByType.macOS │ │ │ ├── AppDelegate.cs │ │ │ └── Assets.xcassets │ │ │ │ └── Contents.json │ │ ├── GroupByType.UWP │ │ │ └── Assets │ │ │ │ └── StoreLogo.png │ │ ├── GroupByType.Wasm │ │ │ └── Assets │ │ │ │ └── SplashScreen.png │ │ ├── GroupByType.Droid │ │ │ └── Resources │ │ │ │ └── drawable │ │ │ │ └── Icon.png │ │ └── GroupByType.iOS │ │ │ └── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── SplashScreen@2x.png │ │ │ └── SplashScreen@3x.png │ └── uwp-uno │ │ ├── GroupByType.macOS │ │ ├── AppDelegate.cs │ │ └── Assets.xcassets │ │ │ └── Contents.json │ │ ├── GroupByType.UWP │ │ └── Assets │ │ │ └── StoreLogo.png │ │ ├── GroupByType.Wasm │ │ └── Assets │ │ │ └── SplashScreen.png │ │ ├── GroupByType.Droid │ │ └── Resources │ │ │ └── drawable │ │ │ └── Icon.png │ │ └── GroupByType.iOS │ │ └── Resources │ │ ├── Default-568h@2x.png │ │ ├── SplashScreen@2x.png │ │ └── SplashScreen@3x.png └── Images │ ├── 16GroupByType.png │ ├── 16GroupByType-uwp.png │ └── 16GroupByType-desktop.png ├── 17-BoundListView ├── src │ ├── winui │ │ ├── global.json │ │ ├── BoundListView.macOS │ │ │ ├── AppDelegate.cs │ │ │ └── Assets.xcassets │ │ │ │ └── Contents.json │ │ ├── BoundListView.UWP │ │ │ └── Assets │ │ │ │ └── StoreLogo.png │ │ └── BoundListView.Wasm │ │ │ └── Assets │ │ │ └── SplashScreen.png │ ├── uwp-uno │ │ ├── BoundListView.macOS │ │ │ ├── AppDelegate.cs │ │ │ └── Assets.xcassets │ │ │ │ └── Contents.json │ │ ├── BoundListView.UWP │ │ │ └── Assets │ │ │ │ └── StoreLogo.png │ │ └── BoundListView.Wasm │ │ │ └── Assets │ │ │ └── SplashScreen.png │ └── wpf │ │ └── BoundListView │ │ ├── 2moons_2.gif │ │ ├── earglobe.gif │ │ ├── jupglobe.gif │ │ ├── marglobe.gif │ │ ├── merglobe.gif │ │ ├── nepglobe.gif │ │ ├── planetx.jpg │ │ ├── uraglobe.gif │ │ ├── venglobe.gif │ │ └── plutoch_2.gif └── Images │ └── BoundListView.png ├── 21-CustomSorting ├── src │ ├── winui │ │ ├── global.json │ │ ├── CustomSorting.macOS │ │ │ ├── AppDelegate.cs │ │ │ └── Assets.xcassets │ │ │ │ └── Contents.json │ │ ├── CustomSorting.UWP │ │ │ └── Assets │ │ │ │ └── StoreLogo.png │ │ └── CustomSorting.Wasm │ │ │ └── Assets │ │ │ └── SplashScreen.png │ └── uwp-uno │ │ ├── CustomSorting.macOS │ │ ├── AppDelegate.cs │ │ └── Assets.xcassets │ │ │ └── Contents.json │ │ ├── CustomSorting.UWP │ │ └── Assets │ │ │ └── StoreLogo.png │ │ └── CustomSorting.Wasm │ │ └── Assets │ │ └── SplashScreen.png └── Images │ └── 21CustomSorting.png ├── 27-ConvertXaml ├── src │ ├── winui │ │ ├── global.json │ │ ├── ConvertXaml.macOS │ │ │ ├── AppDelegate.cs │ │ │ └── Assets.xcassets │ │ │ │ └── Contents.json │ │ ├── ConvertXaml.UWP │ │ │ └── Assets │ │ │ │ └── StoreLogo.png │ │ ├── ConvertXaml.Wasm │ │ │ └── Assets │ │ │ │ └── SplashScreen.png │ │ ├── ConvertXaml.Droid │ │ │ └── Resources │ │ │ │ └── drawable │ │ │ │ └── Icon.png │ │ └── ConvertXaml.iOS │ │ │ └── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── SplashScreen@2x.png │ │ │ └── SplashScreen@3x.png │ └── uwp-uno │ │ ├── ConvertXaml.macOS │ │ ├── AppDelegate.cs │ │ └── Assets.xcassets │ │ │ └── Contents.json │ │ ├── ConvertXaml.UWP │ │ └── Assets │ │ │ └── StoreLogo.png │ │ ├── ConvertXaml.Wasm │ │ └── Assets │ │ │ └── SplashScreen.png │ │ ├── ConvertXaml.Droid │ │ └── Resources │ │ │ └── drawable │ │ │ └── Icon.png │ │ └── ConvertXaml.iOS │ │ └── Resources │ │ ├── Default-568h@2x.png │ │ ├── SplashScreen@2x.png │ │ └── SplashScreen@3x.png └── Images │ └── 27ConvertXaml.png ├── 28-FilterSample ├── src │ ├── winui │ │ ├── global.json │ │ ├── FilterSample.macOS │ │ │ ├── AppDelegate.cs │ │ │ └── Assets.xcassets │ │ │ │ └── Contents.json │ │ ├── FilterSample.UWP │ │ │ └── Assets │ │ │ │ └── StoreLogo.png │ │ ├── FilterSample.Wasm │ │ │ └── Assets │ │ │ │ └── SplashScreen.png │ │ ├── FilterSample.Droid │ │ │ └── Resources │ │ │ │ └── drawable │ │ │ │ └── Icon.png │ │ └── FilterSample.iOS │ │ │ └── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── SplashScreen@2x.png │ │ │ └── SplashScreen@3x.png │ └── uwp-uno │ │ ├── FilterSample.macOS │ │ ├── AppDelegate.cs │ │ └── Assets.xcassets │ │ │ └── Contents.json │ │ ├── FilterSample.UWP │ │ └── Assets │ │ │ └── StoreLogo.png │ │ └── FilterSample.Wasm │ │ └── Assets │ │ └── SplashScreen.png └── Images │ └── 28FilterSample.png ├── 29-MultipleFilters ├── src │ ├── winui │ │ ├── global.json │ │ ├── MultipleFilters.macOS │ │ │ ├── AppDelegate.cs │ │ │ └── Assets.xcassets │ │ │ │ └── Contents.json │ │ ├── MultipleFilters.UWP │ │ │ └── Assets │ │ │ │ └── StoreLogo.png │ │ └── MultipleFilters.Wasm │ │ │ └── Assets │ │ │ └── SplashScreen.png │ └── uwp-uno │ │ ├── MultipleFilters.macOS │ │ ├── AppDelegate.cs │ │ └── Assets.xcassets │ │ │ └── Contents.json │ │ └── MultipleFilters.UWP │ │ └── Assets │ │ └── StoreLogo.png └── Images │ └── 29MultipleFilters.png ├── 32-PolygonBinding ├── src │ ├── winui │ │ ├── global.json │ │ ├── PolygonBinding.macOS │ │ │ ├── AppDelegate.cs │ │ │ └── Assets.xcassets │ │ │ │ └── Contents.json │ │ ├── PolygonBinding.UWP │ │ │ └── Assets │ │ │ │ └── StoreLogo.png │ │ └── PolygonBinding.Wasm │ │ │ └── Assets │ │ │ └── SplashScreen.png │ └── uwp-uno │ │ ├── PolygonBinding.macOS │ │ ├── AppDelegate.cs │ │ └── Assets.xcassets │ │ │ └── Contents.json │ │ ├── PolygonBinding.UWP │ │ └── Assets │ │ │ └── StoreLogo.png │ │ └── PolygonBinding.Wasm │ │ └── Assets │ │ └── SplashScreen.png └── Images │ └── 32PolygonBinding.png ├── 33-PolygonBinding2 ├── src │ ├── winui │ │ ├── global.json │ │ ├── PolygonBinding2.macOS │ │ │ ├── AppDelegate.cs │ │ │ └── Assets.xcassets │ │ │ │ └── Contents.json │ │ ├── PolygonBinding2.UWP │ │ │ └── Assets │ │ │ │ └── StoreLogo.png │ │ └── PolygonBinding2.Wasm │ │ │ └── Assets │ │ │ └── SplashScreen.png │ └── uwp-uno │ │ ├── PolygonBinding2.macOS │ │ ├── AppDelegate.cs │ │ └── Assets.xcassets │ │ │ └── Contents.json │ │ └── PolygonBinding2.UWP │ │ └── Assets │ │ └── StoreLogo.png └── Images │ └── 33PolygonBinding2.png ├── 34-PolygonBinding3 ├── src │ ├── winui │ │ ├── global.json │ │ ├── PolygonBinding3.macOS │ │ │ ├── AppDelegate.cs │ │ │ └── Assets.xcassets │ │ │ │ └── Contents.json │ │ ├── PolygonBinding3.UWP │ │ │ └── Assets │ │ │ │ └── StoreLogo.png │ │ └── PolygonBinding3.Wasm │ │ │ └── Assets │ │ │ └── SplashScreen.png │ └── uwp-uno │ │ ├── PolygonBinding3.macOS │ │ ├── AppDelegate.cs │ │ └── Assets.xcassets │ │ │ └── Contents.json │ │ └── PolygonBinding3.UWP │ │ └── Assets │ │ └── StoreLogo.png └── Images │ └── TechEdBarcelona.GIF ├── 35-CommonQuestions └── src │ ├── winui │ ├── global.json │ ├── CommonQuestions.macOS │ │ ├── AppDelegate.cs │ │ └── Assets.xcassets │ │ │ └── Contents.json │ ├── CommonQuestions.UWP │ │ └── Assets │ │ │ └── StoreLogo.png │ └── CommonQuestions.Wasm │ │ └── Assets │ │ └── SplashScreen.png │ └── uwp-uno │ ├── CommonQuestions.macOS │ ├── AppDelegate.cs │ └── Assets.xcassets │ │ └── Contents.json │ └── CommonQuestions.UWP │ └── Assets │ └── StoreLogo.png ├── 37-PlanetsListBox ├── src │ ├── winui │ │ ├── global.json │ │ ├── PlanetsListBox.macOS │ │ │ ├── AppDelegate.cs │ │ │ └── Assets.xcassets │ │ │ │ └── Contents.json │ │ ├── PlanetsListBox.UWP │ │ │ └── Assets │ │ │ │ └── StoreLogo.png │ │ └── PlanetsListBox.Wasm │ │ │ └── Assets │ │ │ └── SplashScreen.png │ ├── uwp-uno │ │ ├── PlanetsListBox.macOS │ │ │ ├── AppDelegate.cs │ │ │ └── Assets.xcassets │ │ │ │ └── Contents.json │ │ ├── PlanetsListBox.UWP │ │ │ └── Assets │ │ │ │ └── StoreLogo.png │ │ └── PlanetsListBox.Wasm │ │ │ └── Assets │ │ │ └── SplashScreen.png │ └── wpf │ │ ├── PlanetsListBox │ │ └── Images │ │ │ ├── sun.jpg │ │ │ ├── 2moons_2.gif │ │ │ ├── earglobe.gif │ │ │ ├── jupglobe.gif │ │ │ ├── marglobe.gif │ │ │ ├── merglobe.gif │ │ │ ├── nepglobe.gif │ │ │ ├── planetx.jpg │ │ │ ├── plutoch_2.gif │ │ │ ├── uraglobe.gif │ │ │ └── venglobe.gif │ │ └── DataBindingPresenter │ │ ├── Images │ │ ├── Bea.jpg │ │ ├── sun.jpg │ │ ├── Kevin.jpg │ │ ├── 2moons_2.gif │ │ ├── earglobe.gif │ │ ├── jupglobe.gif │ │ ├── marglobe.gif │ │ ├── merglobe.gif │ │ ├── nepglobe.gif │ │ ├── planetx.jpg │ │ ├── uraglobe.gif │ │ ├── venglobe.gif │ │ ├── plutoch_2.gif │ │ └── screenShotBlend.png │ │ └── Application.ico └── Images │ ├── 37PlanetsListBox1.PNG │ └── 37PlanetsListBox2.PNG ├── 38-UpdateExplicit ├── src │ ├── winui │ │ ├── global.json │ │ ├── UpdateExplicit.macOS │ │ │ ├── AppDelegate.cs │ │ │ └── Assets.xcassets │ │ │ │ └── Contents.json │ │ ├── UpdateExplicit.UWP │ │ │ └── Assets │ │ │ │ └── StoreLogo.png │ │ └── UpdateExplicit.Wasm │ │ │ └── Assets │ │ │ └── SplashScreen.png │ └── uwp-uno │ │ ├── UpdateExplicit.macOS │ │ ├── AppDelegate.cs │ │ └── Assets.xcassets │ │ │ └── Contents.json │ │ ├── UpdateExplicit.UWP │ │ └── Assets │ │ │ └── StoreLogo.png │ │ └── UpdateExplicit.Wasm │ │ └── Assets │ │ └── SplashScreen.png └── Images │ ├── 38mix.bmp │ └── 38UpdateExplicit.PNG ├── 42-WPFPresenter ├── src │ ├── winui │ │ ├── global.json │ │ ├── WPFPresenter.macOS │ │ │ ├── AppDelegate.cs │ │ │ └── Assets.xcassets │ │ │ │ └── Contents.json │ │ ├── WPFPresenter.UWP │ │ │ └── Assets │ │ │ │ └── StoreLogo.png │ │ ├── WPFPresenter.Wasm │ │ │ └── Assets │ │ │ │ └── SplashScreen.png │ │ ├── WPFPresenter.Droid │ │ │ └── Resources │ │ │ │ └── drawable │ │ │ │ └── Icon.png │ │ └── WPFPresenter.iOS │ │ │ └── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── SplashScreen@2x.png │ │ │ └── SplashScreen@3x.png │ └── uwp-uno │ │ ├── WPFPresenter.macOS │ │ ├── AppDelegate.cs │ │ └── Assets.xcassets │ │ │ └── Contents.json │ │ ├── WPFPresenter.UWP │ │ └── Assets │ │ │ └── StoreLogo.png │ │ └── WPFPresenter.Wasm │ │ └── Assets │ │ └── SplashScreen.png └── Images │ └── 42WPFPresenter.jpg ├── 43-BindToXLinq ├── src │ ├── winui │ │ ├── global.json │ │ ├── BindToXLinq.macOS │ │ │ ├── AppDelegate.cs │ │ │ └── Assets.xcassets │ │ │ │ └── Contents.json │ │ ├── BindToXLinq.UWP │ │ │ └── Assets │ │ │ │ └── StoreLogo.png │ │ ├── BindToXLinq.Wasm │ │ │ └── Assets │ │ │ │ └── SplashScreen.png │ │ ├── BindToXLinq.Droid │ │ │ └── Resources │ │ │ │ └── drawable │ │ │ │ └── Icon.png │ │ └── BindToXLinq.iOS │ │ │ └── Resources │ │ │ ├── Default-568h@2x.png │ │ │ ├── SplashScreen@2x.png │ │ │ └── SplashScreen@3x.png │ └── uwp-uno │ │ ├── BindToXLinq.macOS │ │ ├── AppDelegate.cs │ │ └── Assets.xcassets │ │ │ └── Contents.json │ │ ├── BindToXLinq.UWP │ │ └── Assets │ │ │ └── StoreLogo.png │ │ ├── BindToXLinq.Wasm │ │ └── Assets │ │ │ └── SplashScreen.png │ │ ├── BindToXLinq.Droid │ │ └── Resources │ │ │ └── drawable │ │ │ └── Icon.png │ │ └── BindToXLinq.iOS │ │ └── Resources │ │ ├── Default-568h@2x.png │ │ ├── SplashScreen@2x.png │ │ └── SplashScreen@3x.png └── Images │ └── 43BindToLinq.png ├── 46-DragDropListBox ├── src │ ├── winui │ │ ├── global.json │ │ ├── DragDropListBox.macOS │ │ │ ├── AppDelegate.cs │ │ │ └── Assets.xcassets │ │ │ │ └── Contents.json │ │ ├── DragDropListBox.UWP │ │ │ └── Assets │ │ │ │ └── StoreLogo.png │ │ └── DragDropListBox.Wasm │ │ │ └── Assets │ │ │ └── SplashScreen.png │ ├── uwp-uno │ │ ├── DragDropListBox.macOS │ │ │ ├── AppDelegate.cs │ │ │ └── Assets.xcassets │ │ │ │ └── Contents.json │ │ └── DragDropListBox.UWP │ │ │ └── Assets │ │ │ └── StoreLogo.png │ └── wpf │ │ ├── DragDropListBox │ │ └── Images │ │ │ ├── sun.jpg │ │ │ ├── planetx.jpg │ │ │ ├── 2moons_2.gif │ │ │ ├── earglobe.gif │ │ │ ├── jupglobe.gif │ │ │ ├── marglobe.gif │ │ │ ├── merglobe.gif │ │ │ ├── nepglobe.gif │ │ │ ├── plutoch_2.gif │ │ │ ├── uraglobe.gif │ │ │ └── venglobe.gif │ │ └── OriginalScreenshots │ │ ├── 46DraggedAdorner.png │ │ └── 46InsertionAdorner.png └── Images │ ├── 46DraggedAdorner.png │ └── 46InsertionAdorner.png ├── 58-MultipleStyles ├── src │ ├── winui │ │ ├── global.json │ │ ├── MultipleStyles.macOS │ │ │ ├── AppDelegate.cs │ │ │ └── Assets.xcassets │ │ │ │ └── Contents.json │ │ ├── MultipleStyles.UWP │ │ │ └── Assets │ │ │ │ └── StoreLogo.png │ │ └── MultipleStyles.Wasm │ │ │ └── Assets │ │ │ └── SplashScreen.png │ └── uwp-uno │ │ ├── MultipleStyles.macOS │ │ ├── AppDelegate.cs │ │ └── Assets.xcassets │ │ │ └── Contents.json │ │ ├── MultipleStyles.UWP │ │ └── Assets │ │ │ └── StoreLogo.png │ │ └── MultipleStyles.Wasm │ │ └── Assets │ │ └── SplashScreen.png └── Images │ └── MultipleStyles.png ├── 76-FocusWatcher ├── src │ ├── winui │ │ ├── global.json │ │ ├── FocusWatcher.macOS │ │ │ ├── AppDelegate.cs │ │ │ └── Assets.xcassets │ │ │ │ └── Contents.json │ │ ├── FocusWatcher.UWP │ │ │ └── Assets │ │ │ │ └── StoreLogo.png │ │ └── FocusWatcher.Wasm │ │ │ └── Assets │ │ │ └── SplashScreen.png │ └── uwp-uno │ │ ├── FocusWatcher.macOS │ │ ├── AppDelegate.cs │ │ └── Assets.xcassets │ │ │ └── Contents.json │ │ ├── FocusWatcher.UWP │ │ └── Assets │ │ │ └── StoreLogo.png │ │ └── FocusWatcher.Wasm │ │ └── Assets │ │ └── SplashScreen.png └── Images │ └── FocusWatcher.png ├── 77-CaptureWatcher ├── src │ ├── winui │ │ ├── global.json │ │ ├── CaptureWatcher.macOS │ │ │ ├── AppDelegate.cs │ │ │ └── Assets.xcassets │ │ │ │ └── Contents.json │ │ ├── CaptureWatcher.UWP │ │ │ └── Assets │ │ │ │ └── StoreLogo.png │ │ └── CaptureWatcher.Wasm │ │ │ └── Assets │ │ │ └── SplashScreen.png │ └── uwp-uno │ │ ├── CaptureWatcher.macOS │ │ ├── AppDelegate.cs │ │ └── Assets.xcassets │ │ │ └── Contents.json │ │ └── CaptureWatcher.UWP │ │ └── Assets │ │ └── StoreLogo.png └── Images │ └── 77CaptureWatcher.png ├── 05-DisplayMemberPath ├── src │ ├── winui │ │ ├── global.json │ │ └── DisplayMemberPathSample.macOS │ │ │ ├── Assets.xcassets │ │ │ └── Contents.json │ │ │ └── AppDelegate.cs │ ├── uwp-uno │ │ └── DisplayMemberPathSample │ │ │ └── DisplayMemberPathSample.macOS │ │ │ └── Assets.xcassets │ │ │ └── Contents.json │ └── wpf │ │ └── DisplayMemberPathSample │ │ └── App.xaml.cs └── Images │ ├── DisplayMemberPathSample.png │ ├── DisplayMemberPathSample-uwp.png │ └── DisplayMemberPathSample-desktop.png ├── 12-DataBoundDialogBox ├── src │ ├── winui │ │ ├── global.json │ │ └── DataBoundDialogBox.macOS │ │ │ ├── Assets.xcassets │ │ │ └── Contents.json │ │ │ └── AppDelegate.cs │ └── uwp-uno │ │ └── DataBoundDialogBox.macOS │ │ └── Assets.xcassets │ │ └── Contents.json └── Images │ ├── DataBoundDialogBox.png │ ├── DataBoundDialogBox-uwp.png │ └── DataBoundDialogBox-desktop.png ├── 15-GroupingTreeView ├── src │ ├── winui │ │ ├── global.json │ │ ├── GroupingTreeView.macOS │ │ │ ├── AppDelegate.cs │ │ │ └── Assets.xcassets │ │ │ │ └── Contents.json │ │ └── GroupingTreeView.UWP │ │ │ └── Assets │ │ │ └── StoreLogo.png │ └── uwp-uno │ │ ├── GroupingTreeView.macOS │ │ ├── AppDelegate.cs │ │ └── Assets.xcassets │ │ │ └── Contents.json │ │ └── GroupingTreeView.UWP │ │ └── Assets │ │ └── StoreLogo.png └── Images │ ├── 15GroupingTreeView.png │ ├── 15GroupingTreeView-uwp.png │ └── 15GroupingTreeView-desktop.png ├── 20-InsertingSeparators ├── src │ ├── winui │ │ ├── global.json │ │ └── InsertingSeparators.macOS │ │ │ ├── Assets.xcassets │ │ │ └── Contents.json │ │ │ └── AppDelegate.cs │ └── uwp-uno │ │ └── InsertingSeparators.macOS │ │ ├── Assets.xcassets │ │ └── Contents.json │ │ └── AppDelegate.cs └── Images │ └── 20InsertingSeparators.png ├── 24-AsynchronousBinding ├── src │ ├── winui │ │ ├── global.json │ │ └── AsynchronousBinding.macOS │ │ │ ├── Assets.xcassets │ │ │ └── Contents.json │ │ │ └── AppDelegate.cs │ └── uwp-uno │ │ └── AsynchronousBinding.macOS │ │ ├── Assets.xcassets │ │ └── Contents.json │ │ └── AppDelegate.cs └── Images │ └── 24AsynchronousBinding.png ├── 26-DataTriggerSample ├── src │ ├── winui │ │ ├── global.json │ │ ├── DataTriggerSample.macOS │ │ │ ├── Assets.xcassets │ │ │ │ └── Contents.json │ │ │ └── AppDelegate.cs │ │ └── DataTriggerSample.UWP │ │ │ └── Assets │ │ │ └── StoreLogo.png │ ├── uwp-uno │ │ └── DataTriggerSample.macOS │ │ │ ├── Assets.xcassets │ │ │ └── Contents.json │ │ │ └── AppDelegate.cs │ └── wpf │ │ └── DataTriggerSample │ │ └── Pictures │ │ ├── Thumbs.db │ │ ├── TechEd 004.jpg │ │ ├── TechEd 022.jpg │ │ ├── TechEd 029.jpg │ │ ├── TechEd 030.jpg │ │ ├── TechEd 051.jpg │ │ ├── TechEd 061.jpg │ │ ├── TechEd 066.jpg │ │ ├── TechEd 074.jpg │ │ ├── TechEd 075.jpg │ │ ├── TechEd 077.jpg │ │ └── TechEd 082.jpg └── Images │ └── 26DataTriggerSample.png ├── 36-ADOIndependentView ├── src │ ├── winui │ │ ├── global.json │ │ └── ADOIndependentView.macOS │ │ │ ├── Assets.xcassets │ │ │ └── Contents.json │ │ │ └── AppDelegate.cs │ ├── uwp-uno │ │ └── ADOIndependentView.macOS │ │ │ ├── Assets.xcassets │ │ │ └── Contents.json │ │ │ └── AppDelegate.cs │ └── wpf │ │ └── ADOIndependentView │ │ └── IndiaSacredRivers.mdb └── Images │ └── 36ADOIndependentView.png ├── 44-XLinqXMLMasterDetail ├── src │ ├── winui │ │ ├── global.json │ │ └── XLinqXMLMasterDetail.macOS │ │ │ ├── Assets.xcassets │ │ │ └── Contents.json │ │ │ └── AppDelegate.cs │ └── uwp-uno │ │ └── XLinqXMLMasterDetail.macOS │ │ ├── Assets.xcassets │ │ └── Contents.json │ │ └── AppDelegate.cs └── Images │ └── 44XLinqXMLMasterDetail.png ├── 45-DebuggingDataBinding └── src │ ├── winui │ ├── global.json │ └── DebuggingDataBinding.macOS │ │ ├── Assets.xcassets │ │ └── Contents.json │ │ └── AppDelegate.cs │ ├── uwp-uno │ └── DebuggingDataBinding.macOS │ │ ├── Assets.xcassets │ │ └── Contents.json │ │ └── AppDelegate.cs │ └── wpf │ └── DebuggingDataBinding │ └── Images │ └── sun.jpg ├── 47-ExpandTreeViewPart1 ├── src │ ├── winui │ │ ├── global.json │ │ └── ExpandTreeViewPart1.macOS │ │ │ ├── Assets.xcassets │ │ │ └── Contents.json │ │ │ └── AppDelegate.cs │ └── uwp-uno │ │ └── ExpandTreeViewPart1.macOS │ │ ├── Assets.xcassets │ │ └── Contents.json │ │ └── AppDelegate.cs └── Images │ ├── 47ExpandTreeViewPart1.PNG │ └── 47ExpandTreeViewSilverlight.png ├── 48-ExpandTreeViewPart2 ├── src │ ├── winui │ │ ├── global.json │ │ └── ExpandTreeViewPart2.macOS │ │ │ ├── Assets.xcassets │ │ │ └── Contents.json │ │ │ └── AppDelegate.cs │ └── uwp-uno │ │ └── ExpandTreeViewPart2.macOS │ │ ├── Assets.xcassets │ │ └── Contents.json │ │ └── AppDelegate.cs └── Images │ ├── Oredev.jpg │ └── 48ExpandTreeViewPart2.PNG ├── 49-ExpandTreeViewPart3 ├── src │ ├── winui │ │ ├── global.json │ │ └── ExpandTreeViewPart3.macOS │ │ │ ├── Assets.xcassets │ │ │ └── Contents.json │ │ │ └── AppDelegate.cs │ └── uwp-uno │ │ └── ExpandTreeViewPart3.macOS │ │ ├── Assets.xcassets │ │ └── Contents.json │ │ └── AppDelegate.cs └── Images │ └── 49ExpandTreeViewPart3.PNG ├── 52-DataVirtualization ├── src │ ├── winui │ │ ├── global.json │ │ └── DataVirtualization.macOS │ │ │ ├── Assets.xcassets │ │ │ └── Contents.json │ │ │ └── AppDelegate.cs │ └── uwp-uno │ │ └── DataVirtualization.macOS │ │ ├── Assets.xcassets │ │ └── Contents.json │ │ └── AppDelegate.cs └── DataVirtualization.pdf ├── 54-PieChartWithLabels ├── src │ ├── winui │ │ ├── global.json │ │ └── PieChartWithLabels.macOS │ │ │ ├── Assets.xcassets │ │ │ └── Contents.json │ │ │ └── AppDelegate.cs │ └── uwp-uno │ │ └── PieChartWithLabels.macOS │ │ ├── Assets.xcassets │ │ └── Contents.json │ │ └── AppDelegate.cs └── Images │ ├── LabeledPieChartAuto.png │ ├── LabeledPieChartAuto1.png │ ├── LabeledPieChartAuto2.png │ ├── LabeledPieChartBasic.png │ ├── LabeledPieChartModes.design │ ├── LabeledPieChartConnected.png │ ├── LabeledPieChartConnected1.png │ ├── LabeledPieChartConnected2.png │ ├── LabeledPieChartArcMidpoint.png │ ├── LabeledPieChartArcMidpoint1.png │ ├── LabeledPieChartArcMidpoint2.png │ └── LabeledPieChartDataTemplate.png ├── 57-DataVirtualization └── src │ ├── winui │ ├── global.json │ └── DataVirtualization.macOS │ │ ├── Assets.xcassets │ │ └── Contents.json │ │ └── AppDelegate.cs │ └── uwp-uno │ └── DataVirtualization.macOS │ ├── Assets.xcassets │ └── Contents.json │ └── AppDelegate.cs ├── 66-SortingHierarchy ├── src │ ├── winui │ │ ├── global.json │ │ ├── SortingHierarchy.macOS │ │ │ ├── AppDelegate.cs │ │ │ └── Assets.xcassets │ │ │ │ └── Contents.json │ │ └── SortingHierarchy.UWP │ │ │ └── Assets │ │ │ └── StoreLogo.png │ └── uwp-uno │ │ ├── SortingHierarchy.macOS │ │ ├── AppDelegate.cs │ │ └── Assets.xcassets │ │ │ └── Contents.json │ │ └── SortingHierarchy.UWP │ │ └── Assets │ │ └── StoreLogo.png └── Images │ └── 66SortingHierarchy.PNG ├── 78-BetterBindableBase ├── src │ ├── winui │ │ ├── global.json │ │ └── BetterBindableBase.macOS │ │ │ ├── Assets.xcassets │ │ │ └── Contents.json │ │ │ └── AppDelegate.cs │ └── uwp-uno │ │ └── BetterBindableBase.macOS │ │ ├── Assets.xcassets │ │ └── Contents.json │ │ └── AppDelegate.cs └── Images │ └── 78BetterBindableBase.png ├── 79-BooleanConverters ├── src │ ├── winui │ │ ├── global.json │ │ └── BooleanConverters.macOS │ │ │ ├── Assets.xcassets │ │ │ └── Contents.json │ │ │ └── AppDelegate.cs │ └── uwp-uno │ │ └── BooleanConverters.macOS │ │ ├── Assets.xcassets │ │ └── Contents.json │ │ └── AppDelegate.cs └── Images │ └── 79BooleanConverters.png ├── 07-ChangePanelItemsControl ├── src │ ├── winui │ │ ├── global.json │ │ └── ChangePanelItemsControl.macOS │ │ │ ├── Assets.xcassets │ │ │ └── Contents.json │ │ │ └── AppDelegate.cs │ └── uwp-uno │ │ └── ChangePanelItemsControl │ │ └── ChangePanelItemsControl.macOS │ │ └── Assets.xcassets │ │ └── Contents.json └── Images │ ├── ChangePanelItemsControl.png │ ├── ChangePanelItemsControl-uwp.png │ ├── ChangePanelItemsControl-wasm.png │ └── ChangePanelItemsControl-desktop.png ├── 11-MasterDetailThreeLevels ├── src │ ├── winui │ │ ├── global.json │ │ └── MasterDetailThreeLevels.macOS │ │ │ ├── Assets.xcassets │ │ │ └── Contents.json │ │ │ └── AppDelegate.cs │ └── uwp-uno │ │ └── MasterDetailThreeLevels │ │ └── MasterDetailThreeLevels.macOS │ │ └── Assets.xcassets │ │ └── Contents.json └── Images │ ├── 11MasterDetailThreeLevels.png │ ├── 11MasterDetailThreeLevels-uwp.png │ ├── 11MasterDetailThreeLevels-wasm.png │ └── 11MasterDetailThreeLevels-desktop.png ├── 18-ThreeLevelMasterDetailADO ├── src │ ├── winui │ │ ├── global.json │ │ └── ThreeLevelMasterDetailADO.macOS │ │ │ ├── Assets.xcassets │ │ │ └── Contents.json │ │ │ └── AppDelegate.cs │ └── uwp-uno │ │ └── ThreeLevelMasterDetailADO.macOS │ │ ├── Assets.xcassets │ │ └── Contents.json │ │ └── AppDelegate.cs └── Images │ └── ThreeLevelMasterDetailADO.png ├── 19-ObjectDataProviderSample ├── src │ ├── winui │ │ ├── global.json │ │ └── ObjectDataProviderSample.macOS │ │ │ ├── Assets.xcassets │ │ │ └── Contents.json │ │ │ └── AppDelegate.cs │ └── uwp-uno │ │ └── ObjectDataProviderSample.macOS │ │ ├── Assets.xcassets │ │ └── Contents.json │ │ └── AppDelegate.cs └── Images │ └── 19ObjectDataProviderSample.png ├── 30-MultiBindingConverter ├── src │ ├── winui │ │ ├── global.json │ │ └── MultiBindingConverter.macOS │ │ │ ├── Assets.xcassets │ │ │ └── Contents.json │ │ │ └── AppDelegate.cs │ └── uwp-uno │ │ └── MultiBindingConverter.macOS │ │ ├── Assets.xcassets │ │ └── Contents.json │ │ └── AppDelegate.cs └── Images │ └── 30MultiBindingConverter.png ├── 31-ChangesMultithreading ├── src │ ├── winui │ │ ├── global.json │ │ └── ChangesMultithreading.macOS │ │ │ ├── Assets.xcassets │ │ │ └── Contents.json │ │ │ └── AppDelegate.cs │ └── uwp-uno │ │ └── ChangesMultithreading.macOS │ │ ├── Assets.xcassets │ │ └── Contents.json │ │ └── AppDelegate.cs └── Images │ └── 31ChangesMultithreading.png ├── 39-TreeViewPerformancePart1 ├── src │ ├── winui │ │ ├── global.json │ │ └── TreeViewPerformancePart1.macOS │ │ │ ├── Assets.xcassets │ │ │ └── Contents.json │ │ │ └── AppDelegate.cs │ └── uwp-uno │ │ └── TreeViewPerformancePart1.macOS │ │ ├── Assets.xcassets │ │ └── Contents.json │ │ └── AppDelegate.cs └── Images │ ├── 39TreeViewPerformance11.png │ ├── 39TreeViewPerformance12.png │ └── 39TreeViewPerformance13.png ├── 40-TreeViewPerformancePart2 ├── src │ ├── winui │ │ ├── global.json │ │ └── TreeViewPerformancePart2.macOS │ │ │ ├── Assets.xcassets │ │ │ └── Contents.json │ │ │ └── AppDelegate.cs │ └── uwp-uno │ │ └── TreeViewPerformancePart2.macOS │ │ ├── Assets.xcassets │ │ └── Contents.json │ │ └── AppDelegate.cs └── Images │ ├── 40TreeViewPerformance21.png │ └── 40TreeViewPerformance22.png ├── 41-TreeViewPerformancePart3 ├── src │ ├── winui │ │ ├── global.json │ │ └── TreeViewPerformancePart3.macOS │ │ │ ├── Assets.xcassets │ │ │ └── Contents.json │ │ │ └── AppDelegate.cs │ └── uwp-uno │ │ └── TreeViewPerformancePart3.macOS │ │ ├── Assets.xcassets │ │ └── Contents.json │ │ └── AppDelegate.cs └── Images │ └── TreeViewPerformance.png ├── 59-WPFCollectionViewSource ├── src │ ├── winui │ │ ├── global.json │ │ └── WPFCollectionViewSource.macOS │ │ │ ├── Assets.xcassets │ │ │ └── Contents.json │ │ │ └── AppDelegate.cs │ └── uwp-uno │ │ └── WPFCollectionViewSource.macOS │ │ ├── Assets.xcassets │ │ └── Contents.json │ │ └── AppDelegate.cs └── Images │ └── WPFCollectionViewSource.png ├── 60-SLCollectionViewSource ├── src │ ├── winui │ │ ├── global.json │ │ └── SLCollectionViewSource.macOS │ │ │ ├── Assets.xcassets │ │ │ └── Contents.json │ │ │ └── AppDelegate.cs │ ├── uwp-uno │ │ └── SLCollectionViewSource.macOS │ │ │ ├── Assets.xcassets │ │ │ └── Contents.json │ │ │ └── AppDelegate.cs │ └── wpf │ │ └── SLCollectionViewSource.xap └── Images │ └── 60SLCollectionViewSource.PNG ├── 67-PieChartWithLabelsUpdates ├── src │ ├── winui │ │ ├── global.json │ │ └── PieChartWithLabelsUpdates.macOS │ │ │ ├── Assets.xcassets │ │ │ └── Contents.json │ │ │ └── AppDelegate.cs │ ├── wpf │ │ └── PieChartWithLabels.xap │ └── uwp-uno │ │ └── PieChartWithLabelsUpdates.macOS │ │ ├── Assets.xcassets │ │ └── Contents.json │ │ └── AppDelegate.cs └── Images │ └── 67PieChartWithLabels.PNG ├── 74-PositioningDataBoundItems ├── src │ ├── winui │ │ ├── global.json │ │ └── PositioningDataBoundItems.macOS │ │ │ ├── Assets.xcassets │ │ │ └── Contents.json │ │ │ └── AppDelegate.cs │ └── uwp-uno │ │ └── PositioningDataBoundItems.macOS │ │ ├── Assets.xcassets │ │ └── Contents.json │ │ └── AppDelegate.cs └── Images │ └── PlanetsListBox.png ├── 75-SimultaneousEnableDisable └── src │ ├── winui │ ├── global.json │ └── SimultaneousEnableDisable.macOS │ │ ├── Assets.xcassets │ │ └── Contents.json │ │ └── AppDelegate.cs │ └── uwp-uno │ └── SimultaneousEnableDisable.macOS │ ├── Assets.xcassets │ └── Contents.json │ └── AppDelegate.cs ├── 09-CollectionViewSourceSample ├── src │ ├── winui │ │ ├── global.json │ │ └── CollectionViewSourceSample.macOS │ │ │ ├── Assets.xcassets │ │ │ └── Contents.json │ │ │ └── AppDelegate.cs │ └── uwp-uno │ │ └── CollectionViewSourceSample.macOS │ │ └── Assets.xcassets │ │ └── Contents.json └── Images │ ├── 9CollectionViewSourceSample.png │ └── 9CollectionViewSourceSample-uwp.png ├── 56-PieChartWithLabelsSilverlight └── src │ ├── winui │ ├── global.json │ └── PieChartWithLabelsSilverlight.macOS │ │ ├── Assets.xcassets │ │ └── Contents.json │ │ └── AppDelegate.cs │ └── uwp-uno │ └── PieChartWithLabelsSilverlight.macOS │ ├── Assets.xcassets │ └── Contents.json │ └── AppDelegate.cs ├── 62-DataVirtualizationFiltering ├── src │ ├── winui │ │ ├── global.json │ │ └── DataVirtualizationFiltering.macOS │ │ │ ├── Assets.xcassets │ │ │ └── Contents.json │ │ │ └── AppDelegate.cs │ └── uwp-uno │ │ └── DataVirtualizationFiltering.macOS │ │ ├── Assets.xcassets │ │ └── Contents.json │ │ └── AppDelegate.cs └── Images │ └── DVFiltering.png ├── 69-BindRadioButtonsToEnumsPart1 ├── src │ ├── winui │ │ ├── global.json │ │ └── BindRadioButtonsToEnumsPart1.macOS │ │ │ ├── Assets.xcassets │ │ │ └── Contents.json │ │ │ └── AppDelegate.cs │ └── uwp-uno │ │ └── BindRadioButtonsToEnumsPart1.macOS │ │ ├── Assets.xcassets │ │ └── Contents.json │ │ └── AppDelegate.cs └── Images │ └── BindRadioButtonsToEnums1.png ├── 70-BindRadioButtonsToEnumsPart2 ├── src │ ├── winui │ │ ├── global.json │ │ └── BindRadioButtonsToEnumsPart2.macOS │ │ │ ├── Assets.xcassets │ │ │ └── Contents.json │ │ │ └── AppDelegate.cs │ └── uwp-uno │ │ └── BindRadioButtonsToEnumsPart2.macOS │ │ ├── Assets.xcassets │ │ └── Contents.json │ │ └── AppDelegate.cs └── Images │ └── BindRadioButtonsToEnums2.png ├── 71-BindRadioButtonsToEnumsPart3 ├── src │ ├── winui │ │ ├── global.json │ │ └── BindRadioButtonsToEnumsPart3.macOS │ │ │ ├── Assets.xcassets │ │ │ └── Contents.json │ │ │ └── AppDelegate.cs │ └── uwp-uno │ │ └── BindRadioButtonsToEnumsPart3.macOS │ │ ├── Assets.xcassets │ │ └── Contents.json │ │ └── AppDelegate.cs └── Images │ └── BindRadioButtonsToEnums3.png ├── 72-BindRadioButtonsToEnumsPart4 ├── src │ ├── winui │ │ ├── global.json │ │ └── BindRadioButtonsToEnumsPart4.macOS │ │ │ ├── Assets.xcassets │ │ │ └── Contents.json │ │ │ └── AppDelegate.cs │ └── uwp-uno │ │ └── BindRadioButtonsToEnumsPart4.macOS │ │ ├── Assets.xcassets │ │ └── Contents.json │ │ └── AppDelegate.cs └── Images │ └── BindRadioButtonsToEnums4.png ├── 61-OredevComputerWeekly └── Images │ ├── Oredev2009.gif │ └── ComputerWeeklyAwards.bmp └── 55-PieChartWithLabelsSilverlight └── Images ├── LabeledPieChartAuto.png ├── LabeledPieChartAuto1.png ├── LabeledPieChartAuto2.png ├── LabeledPieChartBasic.png ├── LabeledPieChartConnected.png ├── LabeledPieChartArcMidpoint.png ├── LabeledPieChartArcMidpoint1.png ├── LabeledPieChartArcMidpoint2.png ├── LabeledPieChartConnected1.png ├── LabeledPieChartConnected2.png └── LabeledPieChartDataTemplate.png /dirnames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/dirnames.txt -------------------------------------------------------------------------------- /64-DataVirtualizationFilteringSorting/src/wpf/DVFilterSort/DVFilterSort/CustomersDataSet.xsc: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /64-DataVirtualizationFilteringSorting/src/wpf/DVFilterSort/DVFilterSort/CustomersDataSet.xss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /08-BarGraph/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /25-BindToEnum/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /01-DataContext/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /02-EmptyBinding/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /03-GetListBoxItem/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /04-BindToComboBox/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /06-SelectedValue/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /10-MasterDetail/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /13-TemplatingItems/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /14-SortingGroups/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /16-GroupByType/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /17-BoundListView/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /21-CustomSorting/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /27-ConvertXaml/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /28-FilterSample/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /29-MultipleFilters/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /32-PolygonBinding/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /33-PolygonBinding2/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /34-PolygonBinding3/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /35-CommonQuestions/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /37-PlanetsListBox/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /38-UpdateExplicit/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /42-WPFPresenter/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /43-BindToXLinq/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /46-DragDropListBox/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /58-MultipleStyles/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /76-FocusWatcher/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /77-CaptureWatcher/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /05-DisplayMemberPath/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /12-DataBoundDialogBox/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /15-GroupingTreeView/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /20-InsertingSeparators/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /24-AsynchronousBinding/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /26-DataTriggerSample/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /36-ADOIndependentView/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /44-XLinqXMLMasterDetail/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /45-DebuggingDataBinding/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /47-ExpandTreeViewPart1/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /48-ExpandTreeViewPart2/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /49-ExpandTreeViewPart3/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /52-DataVirtualization/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /54-PieChartWithLabels/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /57-DataVirtualization/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /66-SortingHierarchy/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /78-BetterBindableBase/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /79-BooleanConverters/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /07-ChangePanelItemsControl/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /08-BarGraph/Images/8BarGraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/08-BarGraph/Images/8BarGraph.png -------------------------------------------------------------------------------- /11-MasterDetailThreeLevels/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /18-ThreeLevelMasterDetailADO/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /19-ObjectDataProviderSample/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /30-MultiBindingConverter/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /31-ChangesMultithreading/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /39-TreeViewPerformancePart1/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /40-TreeViewPerformancePart2/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /41-TreeViewPerformancePart3/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /59-WPFCollectionViewSource/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /60-SLCollectionViewSource/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /67-PieChartWithLabelsUpdates/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /75-SimultaneousEnableDisable/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /08-BarGraph/Images/8BarGraph-uwp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/08-BarGraph/Images/8BarGraph-uwp.png -------------------------------------------------------------------------------- /09-CollectionViewSourceSample/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /38-UpdateExplicit/Images/38mix.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/38-UpdateExplicit/Images/38mix.bmp -------------------------------------------------------------------------------- /56-PieChartWithLabelsSilverlight/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /62-DataVirtualizationFiltering/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /69-BindRadioButtonsToEnumsPart1/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /70-BindRadioButtonsToEnumsPart2/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /71-BindRadioButtonsToEnumsPart3/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /72-BindRadioButtonsToEnumsPart4/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /01-DataContext/Images/DataContext.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/01-DataContext/Images/DataContext.PNG -------------------------------------------------------------------------------- /25-BindToEnum/Images/25BindToEnum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/25-BindToEnum/Images/25BindToEnum.png -------------------------------------------------------------------------------- /43-BindToXLinq/Images/43BindToLinq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/43-BindToXLinq/Images/43BindToLinq.png -------------------------------------------------------------------------------- /64-DataVirtualizationFilteringSorting/src/winui/global.json: -------------------------------------------------------------------------------- 1 | { 2 | "sdk": { 3 | "version": "5.0.100-preview.5.20279.10" 4 | } 5 | } -------------------------------------------------------------------------------- /01-DataContext/Images/DataContext-uno.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/01-DataContext/Images/DataContext-uno.PNG -------------------------------------------------------------------------------- /02-EmptyBinding/Images/EmptyBinding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/02-EmptyBinding/Images/EmptyBinding.png -------------------------------------------------------------------------------- /08-BarGraph/Images/8BarGraph-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/08-BarGraph/Images/8BarGraph-desktop.png -------------------------------------------------------------------------------- /08-BarGraph/src/winui/BarGraph.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace BarGraph.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /10-MasterDetail/Images/10MasterDetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/10-MasterDetail/Images/10MasterDetail.png -------------------------------------------------------------------------------- /16-GroupByType/Images/16GroupByType.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/16-GroupByType/Images/16GroupByType.png -------------------------------------------------------------------------------- /17-BoundListView/Images/BoundListView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/17-BoundListView/Images/BoundListView.png -------------------------------------------------------------------------------- /27-ConvertXaml/Images/27ConvertXaml.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/27-ConvertXaml/Images/27ConvertXaml.png -------------------------------------------------------------------------------- /28-FilterSample/Images/28FilterSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/28-FilterSample/Images/28FilterSample.png -------------------------------------------------------------------------------- /42-WPFPresenter/Images/42WPFPresenter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/42-WPFPresenter/Images/42WPFPresenter.jpg -------------------------------------------------------------------------------- /48-ExpandTreeViewPart2/Images/Oredev.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/48-ExpandTreeViewPart2/Images/Oredev.jpg -------------------------------------------------------------------------------- /76-FocusWatcher/Images/FocusWatcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/76-FocusWatcher/Images/FocusWatcher.png -------------------------------------------------------------------------------- /02-EmptyBinding/Images/EmptyBinding-uwp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/02-EmptyBinding/Images/EmptyBinding-uwp.png -------------------------------------------------------------------------------- /03-GetListBoxItem/Images/GetListBoxItem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/03-GetListBoxItem/Images/GetListBoxItem.png -------------------------------------------------------------------------------- /04-BindToComboBox/Images/BindToComboBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/04-BindToComboBox/Images/BindToComboBox.png -------------------------------------------------------------------------------- /08-BarGraph/src/winui/BarGraph.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /14-SortingGroups/Images/14SortingGroups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/14-SortingGroups/Images/14SortingGroups.png -------------------------------------------------------------------------------- /16-GroupByType/Images/16GroupByType-uwp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/16-GroupByType/Images/16GroupByType-uwp.png -------------------------------------------------------------------------------- /21-CustomSorting/Images/21CustomSorting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/21-CustomSorting/Images/21CustomSorting.png -------------------------------------------------------------------------------- /25-BindToEnum/src/winui/BindToEnum.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace BindToEnum.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /58-MultipleStyles/Images/MultipleStyles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/58-MultipleStyles/Images/MultipleStyles.png -------------------------------------------------------------------------------- /01-DataContext/Images/DataContext-desktop.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/01-DataContext/Images/DataContext-desktop.PNG -------------------------------------------------------------------------------- /02-EmptyBinding/Images/EmptyBinding-wasm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/02-EmptyBinding/Images/EmptyBinding-wasm.png -------------------------------------------------------------------------------- /10-MasterDetail/Images/10MasterDetail-uwp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/10-MasterDetail/Images/10MasterDetail-uwp.png -------------------------------------------------------------------------------- /10-MasterDetail/Images/10MasterDetail-wasm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/10-MasterDetail/Images/10MasterDetail-wasm.png -------------------------------------------------------------------------------- /16-GroupByType/src/uwp-uno/GroupByType.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace GroupByType.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /16-GroupByType/src/winui/GroupByType.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace GroupByType.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /25-BindToEnum/src/uwp-uno/BindToEnum.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace BindToEnum.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /25-BindToEnum/src/winui/BindToEnum.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /27-ConvertXaml/src/uwp-uno/ConvertXaml.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace ConvertXaml.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /27-ConvertXaml/src/winui/ConvertXaml.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace ConvertXaml.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /32-PolygonBinding/Images/32PolygonBinding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/32-PolygonBinding/Images/32PolygonBinding.png -------------------------------------------------------------------------------- /34-PolygonBinding3/Images/TechEdBarcelona.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/34-PolygonBinding3/Images/TechEdBarcelona.GIF -------------------------------------------------------------------------------- /37-PlanetsListBox/Images/37PlanetsListBox1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/37-PlanetsListBox/Images/37PlanetsListBox1.PNG -------------------------------------------------------------------------------- /37-PlanetsListBox/Images/37PlanetsListBox2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/37-PlanetsListBox/Images/37PlanetsListBox2.PNG -------------------------------------------------------------------------------- /38-UpdateExplicit/Images/38UpdateExplicit.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/38-UpdateExplicit/Images/38UpdateExplicit.PNG -------------------------------------------------------------------------------- /43-BindToXLinq/src/uwp-uno/BindToXLinq.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace BindToXLinq.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /43-BindToXLinq/src/winui/BindToXLinq.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace BindToXLinq.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /46-DragDropListBox/Images/46DraggedAdorner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/46-DragDropListBox/Images/46DraggedAdorner.png -------------------------------------------------------------------------------- /52-DataVirtualization/DataVirtualization.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/52-DataVirtualization/DataVirtualization.pdf -------------------------------------------------------------------------------- /61-OredevComputerWeekly/Images/Oredev2009.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/61-OredevComputerWeekly/Images/Oredev2009.gif -------------------------------------------------------------------------------- /77-CaptureWatcher/Images/77CaptureWatcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/77-CaptureWatcher/Images/77CaptureWatcher.png -------------------------------------------------------------------------------- /02-EmptyBinding/Images/EmptyBinding-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/02-EmptyBinding/Images/EmptyBinding-desktop.png -------------------------------------------------------------------------------- /02-EmptyBinding/src/winui/EmptyBinding.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace EmptyBinding.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /02-EmptyBinding/src/winui/EmptyBinding.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /03-GetListBoxItem/Images/GetListBoxItem-uwp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/03-GetListBoxItem/Images/GetListBoxItem-uwp.png -------------------------------------------------------------------------------- /04-BindToComboBox/Images/BindToComboBox-uwp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/04-BindToComboBox/Images/BindToComboBox-uwp.png -------------------------------------------------------------------------------- /06-SelectedValue/Images/SelectedValueSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/06-SelectedValue/Images/SelectedValueSample.png -------------------------------------------------------------------------------- /10-MasterDetail/src/uwp-uno/MasterDetail.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /10-MasterDetail/src/winui/MasterDetail.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace MasterDetail.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /10-MasterDetail/src/winui/MasterDetail.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /13-TemplatingItems/Images/13TemplatingItems.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/13-TemplatingItems/Images/13TemplatingItems.png -------------------------------------------------------------------------------- /14-SortingGroups/Images/14SortingGroups-uwp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/14-SortingGroups/Images/14SortingGroups-uwp.png -------------------------------------------------------------------------------- /14-SortingGroups/src/winui/SortingGroups.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace SortingGroups.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /14-SortingGroups/src/winui/SortingGroups.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /16-GroupByType/Images/16GroupByType-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/16-GroupByType/Images/16GroupByType-desktop.png -------------------------------------------------------------------------------- /16-GroupByType/src/uwp-uno/GroupByType.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /16-GroupByType/src/winui/GroupByType.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /17-BoundListView/src/winui/BoundListView.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace BoundListView.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /17-BoundListView/src/winui/BoundListView.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /21-CustomSorting/src/winui/CustomSorting.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace CustomSorting.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /21-CustomSorting/src/winui/CustomSorting.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /25-BindToEnum/src/uwp-uno/BindToEnum.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /27-ConvertXaml/src/uwp-uno/ConvertXaml.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /27-ConvertXaml/src/winui/ConvertXaml.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /28-FilterSample/src/uwp-uno/FilterSample.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace FilterSample.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /28-FilterSample/src/uwp-uno/FilterSample.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /28-FilterSample/src/winui/FilterSample.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace FilterSample.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /28-FilterSample/src/winui/FilterSample.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /29-MultipleFilters/Images/29MultipleFilters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/29-MultipleFilters/Images/29MultipleFilters.png -------------------------------------------------------------------------------- /33-PolygonBinding2/Images/33PolygonBinding2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/33-PolygonBinding2/Images/33PolygonBinding2.png -------------------------------------------------------------------------------- /42-WPFPresenter/src/uwp-uno/WPFPresenter.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace WPFPresenter.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /42-WPFPresenter/src/uwp-uno/WPFPresenter.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /42-WPFPresenter/src/winui/WPFPresenter.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace WPFPresenter.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /42-WPFPresenter/src/winui/WPFPresenter.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /43-BindToXLinq/src/uwp-uno/BindToXLinq.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /43-BindToXLinq/src/winui/BindToXLinq.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /46-DragDropListBox/Images/46InsertionAdorner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/46-DragDropListBox/Images/46InsertionAdorner.png -------------------------------------------------------------------------------- /76-FocusWatcher/src/uwp-uno/FocusWatcher.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace FocusWatcher.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /76-FocusWatcher/src/uwp-uno/FocusWatcher.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /76-FocusWatcher/src/winui/FocusWatcher.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace FocusWatcher.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /76-FocusWatcher/src/winui/FocusWatcher.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /01-DataContext/src/winui/DataContextSample.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace DataContextSample.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /01-DataContext/src/winui/DataContextSample.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /03-GetListBoxItem/Images/GetListBoxItem-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/03-GetListBoxItem/Images/GetListBoxItem-desktop.png -------------------------------------------------------------------------------- /03-GetListBoxItem/src/winui/GetListBoxItem.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace GetListBoxItem.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /03-GetListBoxItem/src/winui/GetListBoxItem.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /04-BindToComboBox/Images/BindToComboBox-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/04-BindToComboBox/Images/BindToComboBox-desktop.png -------------------------------------------------------------------------------- /04-BindToComboBox/src/winui/BindToComboBox.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace BindToComboBox.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /04-BindToComboBox/src/winui/BindToComboBox.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /06-SelectedValue/Images/SelectedValueSample-uwp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/06-SelectedValue/Images/SelectedValueSample-uwp.png -------------------------------------------------------------------------------- /08-BarGraph/src/uwp-uno/BarGraph/BarGraph.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /10-MasterDetail/Images/10MasterDetail-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/10-MasterDetail/Images/10MasterDetail-desktop.png -------------------------------------------------------------------------------- /10-MasterDetail/src/wpf/MasterDetail/2moons_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/10-MasterDetail/src/wpf/MasterDetail/2moons_2.gif -------------------------------------------------------------------------------- /10-MasterDetail/src/wpf/MasterDetail/earglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/10-MasterDetail/src/wpf/MasterDetail/earglobe.gif -------------------------------------------------------------------------------- /10-MasterDetail/src/wpf/MasterDetail/jupglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/10-MasterDetail/src/wpf/MasterDetail/jupglobe.gif -------------------------------------------------------------------------------- /10-MasterDetail/src/wpf/MasterDetail/marglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/10-MasterDetail/src/wpf/MasterDetail/marglobe.gif -------------------------------------------------------------------------------- /10-MasterDetail/src/wpf/MasterDetail/merglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/10-MasterDetail/src/wpf/MasterDetail/merglobe.gif -------------------------------------------------------------------------------- /10-MasterDetail/src/wpf/MasterDetail/nepglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/10-MasterDetail/src/wpf/MasterDetail/nepglobe.gif -------------------------------------------------------------------------------- /10-MasterDetail/src/wpf/MasterDetail/plutoch_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/10-MasterDetail/src/wpf/MasterDetail/plutoch_2.gif -------------------------------------------------------------------------------- /10-MasterDetail/src/wpf/MasterDetail/uraglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/10-MasterDetail/src/wpf/MasterDetail/uraglobe.gif -------------------------------------------------------------------------------- /10-MasterDetail/src/wpf/MasterDetail/venglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/10-MasterDetail/src/wpf/MasterDetail/venglobe.gif -------------------------------------------------------------------------------- /12-DataBoundDialogBox/Images/DataBoundDialogBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/12-DataBoundDialogBox/Images/DataBoundDialogBox.png -------------------------------------------------------------------------------- /13-TemplatingItems/Images/13TemplatingItems-uwp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/13-TemplatingItems/Images/13TemplatingItems-uwp.png -------------------------------------------------------------------------------- /13-TemplatingItems/src/winui/TemplatingItems.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace TemplatingItems.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /13-TemplatingItems/src/winui/TemplatingItems.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /14-SortingGroups/Images/14SortingGroups-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/14-SortingGroups/Images/14SortingGroups-desktop.png -------------------------------------------------------------------------------- /14-SortingGroups/src/uwp-uno/SortingGroups.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace SortingGroups.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /14-SortingGroups/src/uwp-uno/SortingGroups.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /15-GroupingTreeView/Images/15GroupingTreeView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/15-GroupingTreeView/Images/15GroupingTreeView.png -------------------------------------------------------------------------------- /17-BoundListView/src/uwp-uno/BoundListView.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace BoundListView.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /17-BoundListView/src/uwp-uno/BoundListView.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /17-BoundListView/src/wpf/BoundListView/2moons_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/17-BoundListView/src/wpf/BoundListView/2moons_2.gif -------------------------------------------------------------------------------- /17-BoundListView/src/wpf/BoundListView/earglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/17-BoundListView/src/wpf/BoundListView/earglobe.gif -------------------------------------------------------------------------------- /17-BoundListView/src/wpf/BoundListView/jupglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/17-BoundListView/src/wpf/BoundListView/jupglobe.gif -------------------------------------------------------------------------------- /17-BoundListView/src/wpf/BoundListView/marglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/17-BoundListView/src/wpf/BoundListView/marglobe.gif -------------------------------------------------------------------------------- /17-BoundListView/src/wpf/BoundListView/merglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/17-BoundListView/src/wpf/BoundListView/merglobe.gif -------------------------------------------------------------------------------- /17-BoundListView/src/wpf/BoundListView/nepglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/17-BoundListView/src/wpf/BoundListView/nepglobe.gif -------------------------------------------------------------------------------- /17-BoundListView/src/wpf/BoundListView/planetx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/17-BoundListView/src/wpf/BoundListView/planetx.jpg -------------------------------------------------------------------------------- /17-BoundListView/src/wpf/BoundListView/uraglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/17-BoundListView/src/wpf/BoundListView/uraglobe.gif -------------------------------------------------------------------------------- /17-BoundListView/src/wpf/BoundListView/venglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/17-BoundListView/src/wpf/BoundListView/venglobe.gif -------------------------------------------------------------------------------- /21-CustomSorting/src/uwp-uno/CustomSorting.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace CustomSorting.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /21-CustomSorting/src/uwp-uno/CustomSorting.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /26-DataTriggerSample/Images/26DataTriggerSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/26-DataTriggerSample/Images/26DataTriggerSample.png -------------------------------------------------------------------------------- /29-MultipleFilters/src/winui/MultipleFilters.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace MultipleFilters.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /29-MultipleFilters/src/winui/MultipleFilters.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /32-PolygonBinding/src/uwp-uno/PolygonBinding.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace PolygonBinding.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /32-PolygonBinding/src/uwp-uno/PolygonBinding.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /32-PolygonBinding/src/winui/PolygonBinding.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace PolygonBinding.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /32-PolygonBinding/src/winui/PolygonBinding.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /33-PolygonBinding2/src/winui/PolygonBinding2.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace PolygonBinding2.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /33-PolygonBinding2/src/winui/PolygonBinding2.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /34-PolygonBinding3/src/winui/PolygonBinding3.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace PolygonBinding3.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /34-PolygonBinding3/src/winui/PolygonBinding3.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /35-CommonQuestions/src/winui/CommonQuestions.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace CommonQuestions.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /35-CommonQuestions/src/winui/CommonQuestions.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /37-PlanetsListBox/src/uwp-uno/PlanetsListBox.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace PlanetsListBox.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /37-PlanetsListBox/src/uwp-uno/PlanetsListBox.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /37-PlanetsListBox/src/winui/PlanetsListBox.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace PlanetsListBox.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /37-PlanetsListBox/src/winui/PlanetsListBox.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /38-UpdateExplicit/src/uwp-uno/UpdateExplicit.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace UpdateExplicit.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /38-UpdateExplicit/src/uwp-uno/UpdateExplicit.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /38-UpdateExplicit/src/winui/UpdateExplicit.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace UpdateExplicit.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /38-UpdateExplicit/src/winui/UpdateExplicit.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /46-DragDropListBox/src/winui/DragDropListBox.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace DragDropListBox.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /46-DragDropListBox/src/winui/DragDropListBox.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /58-MultipleStyles/src/uwp-uno/MultipleStyles.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace MultipleStyles.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /58-MultipleStyles/src/uwp-uno/MultipleStyles.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /58-MultipleStyles/src/winui/MultipleStyles.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace MultipleStyles.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /58-MultipleStyles/src/winui/MultipleStyles.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /66-SortingHierarchy/Images/66SortingHierarchy.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/66-SortingHierarchy/Images/66SortingHierarchy.PNG -------------------------------------------------------------------------------- /77-CaptureWatcher/src/uwp-uno/CaptureWatcher.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace CaptureWatcher.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /77-CaptureWatcher/src/uwp-uno/CaptureWatcher.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /77-CaptureWatcher/src/winui/CaptureWatcher.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace CaptureWatcher.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /77-CaptureWatcher/src/winui/CaptureWatcher.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /79-BooleanConverters/Images/79BooleanConverters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/79-BooleanConverters/Images/79BooleanConverters.png -------------------------------------------------------------------------------- /06-SelectedValue/src/winui/SelectedValueSample.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /08-BarGraph/src/wpf/BarGraph/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace BarGraph 4 | { 5 | public partial class App : Application 6 | { 7 | } 8 | } -------------------------------------------------------------------------------- /12-DataBoundDialogBox/src/winui/DataBoundDialogBox.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /13-TemplatingItems/src/uwp-uno/TemplatingItems.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace TemplatingItems.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /13-TemplatingItems/src/uwp-uno/TemplatingItems.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /15-GroupingTreeView/Images/15GroupingTreeView-uwp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/15-GroupingTreeView/Images/15GroupingTreeView-uwp.png -------------------------------------------------------------------------------- /15-GroupingTreeView/src/uwp-uno/GroupingTreeView.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace GroupingTreeView.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /15-GroupingTreeView/src/uwp-uno/GroupingTreeView.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /15-GroupingTreeView/src/winui/GroupingTreeView.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace GroupingTreeView.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /15-GroupingTreeView/src/winui/GroupingTreeView.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /17-BoundListView/src/wpf/BoundListView/plutoch_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/17-BoundListView/src/wpf/BoundListView/plutoch_2.gif -------------------------------------------------------------------------------- /26-DataTriggerSample/src/uwp-uno/DataTriggerSample.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /26-DataTriggerSample/src/winui/DataTriggerSample.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /29-MultipleFilters/src/uwp-uno/MultipleFilters.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace MultipleFilters.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /29-MultipleFilters/src/uwp-uno/MultipleFilters.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /33-PolygonBinding2/src/uwp-uno/PolygonBinding2.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace PolygonBinding2.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /33-PolygonBinding2/src/uwp-uno/PolygonBinding2.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /34-PolygonBinding3/src/uwp-uno/PolygonBinding3.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace PolygonBinding3.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /34-PolygonBinding3/src/uwp-uno/PolygonBinding3.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /35-CommonQuestions/src/uwp-uno/CommonQuestions.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace CommonQuestions.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /35-CommonQuestions/src/uwp-uno/CommonQuestions.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /36-ADOIndependentView/Images/36ADOIndependentView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/36-ADOIndependentView/Images/36ADOIndependentView.png -------------------------------------------------------------------------------- /36-ADOIndependentView/src/winui/ADOIndependentView.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /46-DragDropListBox/src/uwp-uno/DragDropListBox.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace DragDropListBox.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /46-DragDropListBox/src/uwp-uno/DragDropListBox.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /52-DataVirtualization/src/winui/DataVirtualization.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /54-PieChartWithLabels/Images/LabeledPieChartAuto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/54-PieChartWithLabels/Images/LabeledPieChartAuto.png -------------------------------------------------------------------------------- /54-PieChartWithLabels/Images/LabeledPieChartAuto1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/54-PieChartWithLabels/Images/LabeledPieChartAuto1.png -------------------------------------------------------------------------------- /54-PieChartWithLabels/Images/LabeledPieChartAuto2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/54-PieChartWithLabels/Images/LabeledPieChartAuto2.png -------------------------------------------------------------------------------- /54-PieChartWithLabels/Images/LabeledPieChartBasic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/54-PieChartWithLabels/Images/LabeledPieChartBasic.png -------------------------------------------------------------------------------- /54-PieChartWithLabels/src/winui/PieChartWithLabels.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /57-DataVirtualization/src/winui/DataVirtualization.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /62-DataVirtualizationFiltering/Images/DVFiltering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/62-DataVirtualizationFiltering/Images/DVFiltering.png -------------------------------------------------------------------------------- /66-SortingHierarchy/src/uwp-uno/SortingHierarchy.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace SortingHierarchy.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /66-SortingHierarchy/src/uwp-uno/SortingHierarchy.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /66-SortingHierarchy/src/winui/SortingHierarchy.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace SortingHierarchy.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /66-SortingHierarchy/src/winui/SortingHierarchy.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /78-BetterBindableBase/Images/78BetterBindableBase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/78-BetterBindableBase/Images/78BetterBindableBase.png -------------------------------------------------------------------------------- /78-BetterBindableBase/src/winui/BetterBindableBase.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /79-BooleanConverters/src/uwp-uno/BooleanConverters.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /79-BooleanConverters/src/winui/BooleanConverters.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /02-EmptyBinding/src/uwp-uno/EmptyBinding/EmptyBinding.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /05-DisplayMemberPath/Images/DisplayMemberPathSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/05-DisplayMemberPath/Images/DisplayMemberPathSample.png -------------------------------------------------------------------------------- /05-DisplayMemberPath/src/winui/DisplayMemberPathSample.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /06-SelectedValue/Images/SelectedValueSample-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/06-SelectedValue/Images/SelectedValueSample-desktop.png -------------------------------------------------------------------------------- /06-SelectedValue/src/winui/SelectedValueSample.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace SelectedValueSample.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /08-BarGraph/src/winui/BarGraph.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/08-BarGraph/src/winui/BarGraph.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /12-DataBoundDialogBox/Images/DataBoundDialogBox-uwp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/12-DataBoundDialogBox/Images/DataBoundDialogBox-uwp.png -------------------------------------------------------------------------------- /12-DataBoundDialogBox/src/uwp-uno/DataBoundDialogBox.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /12-DataBoundDialogBox/src/winui/DataBoundDialogBox.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace DataBoundDialogBox.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /13-TemplatingItems/Images/13TemplatingItems-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/13-TemplatingItems/Images/13TemplatingItems-desktop.png -------------------------------------------------------------------------------- /20-InsertingSeparators/Images/20InsertingSeparators.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/20-InsertingSeparators/Images/20InsertingSeparators.png -------------------------------------------------------------------------------- /20-InsertingSeparators/src/uwp-uno/InsertingSeparators.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /20-InsertingSeparators/src/winui/InsertingSeparators.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /24-AsynchronousBinding/Images/24AsynchronousBinding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/24-AsynchronousBinding/Images/24AsynchronousBinding.png -------------------------------------------------------------------------------- /24-AsynchronousBinding/src/uwp-uno/AsynchronousBinding.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /24-AsynchronousBinding/src/winui/AsynchronousBinding.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /26-DataTriggerSample/src/uwp-uno/DataTriggerSample.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace DataTriggerSample.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /26-DataTriggerSample/src/winui/DataTriggerSample.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace DataTriggerSample.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /36-ADOIndependentView/src/uwp-uno/ADOIndependentView.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /36-ADOIndependentView/src/winui/ADOIndependentView.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace ADOIndependentView.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /37-PlanetsListBox/src/wpf/PlanetsListBox/Images/sun.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/37-PlanetsListBox/src/wpf/PlanetsListBox/Images/sun.jpg -------------------------------------------------------------------------------- /44-XLinqXMLMasterDetail/src/winui/XLinqXMLMasterDetail.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /45-DebuggingDataBinding/src/winui/DebuggingDataBinding.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /47-ExpandTreeViewPart1/Images/47ExpandTreeViewPart1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/47-ExpandTreeViewPart1/Images/47ExpandTreeViewPart1.PNG -------------------------------------------------------------------------------- /47-ExpandTreeViewPart1/src/uwp-uno/ExpandTreeViewPart1.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /47-ExpandTreeViewPart1/src/winui/ExpandTreeViewPart1.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /48-ExpandTreeViewPart2/Images/48ExpandTreeViewPart2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/48-ExpandTreeViewPart2/Images/48ExpandTreeViewPart2.PNG -------------------------------------------------------------------------------- /48-ExpandTreeViewPart2/src/uwp-uno/ExpandTreeViewPart2.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /48-ExpandTreeViewPart2/src/winui/ExpandTreeViewPart2.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /49-ExpandTreeViewPart3/Images/49ExpandTreeViewPart3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/49-ExpandTreeViewPart3/Images/49ExpandTreeViewPart3.PNG -------------------------------------------------------------------------------- /49-ExpandTreeViewPart3/src/uwp-uno/ExpandTreeViewPart3.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /49-ExpandTreeViewPart3/src/winui/ExpandTreeViewPart3.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /52-DataVirtualization/src/uwp-uno/DataVirtualization.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /52-DataVirtualization/src/winui/DataVirtualization.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace DataVirtualization.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /54-PieChartWithLabels/Images/LabeledPieChartModes.design: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/54-PieChartWithLabels/Images/LabeledPieChartModes.design -------------------------------------------------------------------------------- /54-PieChartWithLabels/src/uwp-uno/PieChartWithLabels.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /54-PieChartWithLabels/src/winui/PieChartWithLabels.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace PieChartWithLabels.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /57-DataVirtualization/src/uwp-uno/DataVirtualization.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /57-DataVirtualization/src/winui/DataVirtualization.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace DataVirtualization.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /61-OredevComputerWeekly/Images/ComputerWeeklyAwards.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/61-OredevComputerWeekly/Images/ComputerWeeklyAwards.bmp -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/Images/PlanetsListBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/74-PositioningDataBoundItems/Images/PlanetsListBox.png -------------------------------------------------------------------------------- /78-BetterBindableBase/src/uwp-uno/BetterBindableBase.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /78-BetterBindableBase/src/winui/BetterBindableBase.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace BetterBindableBase.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /79-BooleanConverters/src/uwp-uno/BooleanConverters.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace BooleanConverters.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /79-BooleanConverters/src/winui/BooleanConverters.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace BooleanConverters.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /03-GetListBoxItem/src/uwp-uno/GetListBoxItem/GetListBoxItem.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /04-BindToComboBox/src/uwp-uno/BindToComboBox/BindToComboBox.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /07-ChangePanelItemsControl/src/winui/ChangePanelItemsControl.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /10-MasterDetail/src/winui/MasterDetail.Shared/2moons_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/10-MasterDetail/src/winui/MasterDetail.Shared/2moons_2.gif -------------------------------------------------------------------------------- /10-MasterDetail/src/winui/MasterDetail.Shared/earglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/10-MasterDetail/src/winui/MasterDetail.Shared/earglobe.gif -------------------------------------------------------------------------------- /10-MasterDetail/src/winui/MasterDetail.Shared/jupglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/10-MasterDetail/src/winui/MasterDetail.Shared/jupglobe.gif -------------------------------------------------------------------------------- /10-MasterDetail/src/winui/MasterDetail.Shared/marglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/10-MasterDetail/src/winui/MasterDetail.Shared/marglobe.gif -------------------------------------------------------------------------------- /10-MasterDetail/src/winui/MasterDetail.Shared/merglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/10-MasterDetail/src/winui/MasterDetail.Shared/merglobe.gif -------------------------------------------------------------------------------- /10-MasterDetail/src/winui/MasterDetail.Shared/nepglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/10-MasterDetail/src/winui/MasterDetail.Shared/nepglobe.gif -------------------------------------------------------------------------------- /10-MasterDetail/src/winui/MasterDetail.Shared/uraglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/10-MasterDetail/src/winui/MasterDetail.Shared/uraglobe.gif -------------------------------------------------------------------------------- /10-MasterDetail/src/winui/MasterDetail.Shared/venglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/10-MasterDetail/src/winui/MasterDetail.Shared/venglobe.gif -------------------------------------------------------------------------------- /11-MasterDetailThreeLevels/src/winui/MasterDetailThreeLevels.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /15-GroupingTreeView/Images/15GroupingTreeView-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/15-GroupingTreeView/Images/15GroupingTreeView-desktop.png -------------------------------------------------------------------------------- /20-InsertingSeparators/src/uwp-uno/InsertingSeparators.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace InsertingSeparators.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /20-InsertingSeparators/src/winui/InsertingSeparators.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace InsertingSeparators.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /24-AsynchronousBinding/src/uwp-uno/AsynchronousBinding.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace AsynchronousBinding.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /24-AsynchronousBinding/src/winui/AsynchronousBinding.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace AsynchronousBinding.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /30-MultiBindingConverter/src/uwp-uno/MultiBindingConverter.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /30-MultiBindingConverter/src/winui/MultiBindingConverter.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /31-ChangesMultithreading/src/uwp-uno/ChangesMultithreading.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /31-ChangesMultithreading/src/winui/ChangesMultithreading.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /36-ADOIndependentView/src/uwp-uno/ADOIndependentView.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace ADOIndependentView.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /41-TreeViewPerformancePart3/Images/TreeViewPerformance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/41-TreeViewPerformancePart3/Images/TreeViewPerformance.png -------------------------------------------------------------------------------- /44-XLinqXMLMasterDetail/Images/44XLinqXMLMasterDetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/44-XLinqXMLMasterDetail/Images/44XLinqXMLMasterDetail.png -------------------------------------------------------------------------------- /44-XLinqXMLMasterDetail/src/uwp-uno/XLinqXMLMasterDetail.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /44-XLinqXMLMasterDetail/src/winui/XLinqXMLMasterDetail.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace XLinqXMLMasterDetail.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /45-DebuggingDataBinding/src/uwp-uno/DebuggingDataBinding.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /45-DebuggingDataBinding/src/winui/DebuggingDataBinding.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace DebuggingDataBinding.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /46-DragDropListBox/src/wpf/DragDropListBox/Images/sun.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/46-DragDropListBox/src/wpf/DragDropListBox/Images/sun.jpg -------------------------------------------------------------------------------- /47-ExpandTreeViewPart1/src/uwp-uno/ExpandTreeViewPart1.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace ExpandTreeViewPart1.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /47-ExpandTreeViewPart1/src/winui/ExpandTreeViewPart1.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace ExpandTreeViewPart1.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /48-ExpandTreeViewPart2/src/uwp-uno/ExpandTreeViewPart2.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace ExpandTreeViewPart2.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /48-ExpandTreeViewPart2/src/winui/ExpandTreeViewPart2.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace ExpandTreeViewPart2.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /49-ExpandTreeViewPart3/src/uwp-uno/ExpandTreeViewPart3.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace ExpandTreeViewPart3.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /49-ExpandTreeViewPart3/src/winui/ExpandTreeViewPart3.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace ExpandTreeViewPart3.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /52-DataVirtualization/src/uwp-uno/DataVirtualization.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace DataVirtualization.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /54-PieChartWithLabels/Images/LabeledPieChartConnected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/54-PieChartWithLabels/Images/LabeledPieChartConnected.png -------------------------------------------------------------------------------- /54-PieChartWithLabels/Images/LabeledPieChartConnected1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/54-PieChartWithLabels/Images/LabeledPieChartConnected1.png -------------------------------------------------------------------------------- /54-PieChartWithLabels/Images/LabeledPieChartConnected2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/54-PieChartWithLabels/Images/LabeledPieChartConnected2.png -------------------------------------------------------------------------------- /54-PieChartWithLabels/src/uwp-uno/PieChartWithLabels.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace PieChartWithLabels.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /57-DataVirtualization/src/uwp-uno/DataVirtualization.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace DataVirtualization.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /59-WPFCollectionViewSource/src/winui/WPFCollectionViewSource.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /60-SLCollectionViewSource/src/uwp-uno/SLCollectionViewSource.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /60-SLCollectionViewSource/src/winui/SLCollectionViewSource.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /78-BetterBindableBase/src/uwp-uno/BetterBindableBase.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace BetterBindableBase.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /01-DataContext/src/uwp-uno/DataContextSample/DataContextSample.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /02-EmptyBinding/src/wpf/EmptyBinding/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace EmptyBinding 4 | { 5 | public partial class App : Application 6 | { 7 | } 8 | } -------------------------------------------------------------------------------- /05-DisplayMemberPath/Images/DisplayMemberPathSample-uwp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/05-DisplayMemberPath/Images/DisplayMemberPathSample-uwp.png -------------------------------------------------------------------------------- /05-DisplayMemberPath/src/winui/DisplayMemberPathSample.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace DisplayMemberPathSample.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /07-ChangePanelItemsControl/Images/ChangePanelItemsControl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/07-ChangePanelItemsControl/Images/ChangePanelItemsControl.png -------------------------------------------------------------------------------- /08-BarGraph/src/winui/BarGraph.Wasm/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/08-BarGraph/src/winui/BarGraph.Wasm/Assets/SplashScreen.png -------------------------------------------------------------------------------- /10-MasterDetail/src/uwp-uno/MasterDetail.Shared/2moons_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/10-MasterDetail/src/uwp-uno/MasterDetail.Shared/2moons_2.gif -------------------------------------------------------------------------------- /10-MasterDetail/src/uwp-uno/MasterDetail.Shared/earglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/10-MasterDetail/src/uwp-uno/MasterDetail.Shared/earglobe.gif -------------------------------------------------------------------------------- /10-MasterDetail/src/uwp-uno/MasterDetail.Shared/jupglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/10-MasterDetail/src/uwp-uno/MasterDetail.Shared/jupglobe.gif -------------------------------------------------------------------------------- /10-MasterDetail/src/uwp-uno/MasterDetail.Shared/marglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/10-MasterDetail/src/uwp-uno/MasterDetail.Shared/marglobe.gif -------------------------------------------------------------------------------- /10-MasterDetail/src/uwp-uno/MasterDetail.Shared/merglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/10-MasterDetail/src/uwp-uno/MasterDetail.Shared/merglobe.gif -------------------------------------------------------------------------------- /10-MasterDetail/src/uwp-uno/MasterDetail.Shared/nepglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/10-MasterDetail/src/uwp-uno/MasterDetail.Shared/nepglobe.gif -------------------------------------------------------------------------------- /10-MasterDetail/src/uwp-uno/MasterDetail.Shared/plutoch_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/10-MasterDetail/src/uwp-uno/MasterDetail.Shared/plutoch_2.gif -------------------------------------------------------------------------------- /10-MasterDetail/src/uwp-uno/MasterDetail.Shared/uraglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/10-MasterDetail/src/uwp-uno/MasterDetail.Shared/uraglobe.gif -------------------------------------------------------------------------------- /10-MasterDetail/src/uwp-uno/MasterDetail.Shared/venglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/10-MasterDetail/src/uwp-uno/MasterDetail.Shared/venglobe.gif -------------------------------------------------------------------------------- /10-MasterDetail/src/winui/MasterDetail.Shared/plutoch_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/10-MasterDetail/src/winui/MasterDetail.Shared/plutoch_2.gif -------------------------------------------------------------------------------- /10-MasterDetail/src/wpf/MasterDetail/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace MasterDetail 4 | { 5 | public partial class App : Application 6 | { 7 | } 8 | } -------------------------------------------------------------------------------- /12-DataBoundDialogBox/Images/DataBoundDialogBox-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/12-DataBoundDialogBox/Images/DataBoundDialogBox-desktop.png -------------------------------------------------------------------------------- /16-GroupByType/src/winui/GroupByType.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/16-GroupByType/src/winui/GroupByType.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /18-ThreeLevelMasterDetailADO/src/winui/ThreeLevelMasterDetailADO.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /19-ObjectDataProviderSample/src/uwp-uno/ObjectDataProviderSample.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /19-ObjectDataProviderSample/src/winui/ObjectDataProviderSample.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /25-BindToEnum/src/uwp-uno/BindToEnum.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/25-BindToEnum/src/uwp-uno/BindToEnum.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /25-BindToEnum/src/winui/BindToEnum.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/25-BindToEnum/src/winui/BindToEnum.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /27-ConvertXaml/src/winui/ConvertXaml.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/27-ConvertXaml/src/winui/ConvertXaml.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /30-MultiBindingConverter/Images/30MultiBindingConverter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/30-MultiBindingConverter/Images/30MultiBindingConverter.png -------------------------------------------------------------------------------- /30-MultiBindingConverter/src/uwp-uno/MultiBindingConverter.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace MultiBindingConverter.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /30-MultiBindingConverter/src/winui/MultiBindingConverter.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace MultiBindingConverter.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /31-ChangesMultithreading/Images/31ChangesMultithreading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/31-ChangesMultithreading/Images/31ChangesMultithreading.png -------------------------------------------------------------------------------- /31-ChangesMultithreading/src/uwp-uno/ChangesMultithreading.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace ChangesMultithreading.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /31-ChangesMultithreading/src/winui/ChangesMultithreading.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace ChangesMultithreading.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /37-PlanetsListBox/src/wpf/DataBindingPresenter/Images/Bea.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/37-PlanetsListBox/src/wpf/DataBindingPresenter/Images/Bea.jpg -------------------------------------------------------------------------------- /37-PlanetsListBox/src/wpf/DataBindingPresenter/Images/sun.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/37-PlanetsListBox/src/wpf/DataBindingPresenter/Images/sun.jpg -------------------------------------------------------------------------------- /37-PlanetsListBox/src/wpf/PlanetsListBox/Images/2moons_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/37-PlanetsListBox/src/wpf/PlanetsListBox/Images/2moons_2.gif -------------------------------------------------------------------------------- /37-PlanetsListBox/src/wpf/PlanetsListBox/Images/earglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/37-PlanetsListBox/src/wpf/PlanetsListBox/Images/earglobe.gif -------------------------------------------------------------------------------- /37-PlanetsListBox/src/wpf/PlanetsListBox/Images/jupglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/37-PlanetsListBox/src/wpf/PlanetsListBox/Images/jupglobe.gif -------------------------------------------------------------------------------- /37-PlanetsListBox/src/wpf/PlanetsListBox/Images/marglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/37-PlanetsListBox/src/wpf/PlanetsListBox/Images/marglobe.gif -------------------------------------------------------------------------------- /37-PlanetsListBox/src/wpf/PlanetsListBox/Images/merglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/37-PlanetsListBox/src/wpf/PlanetsListBox/Images/merglobe.gif -------------------------------------------------------------------------------- /37-PlanetsListBox/src/wpf/PlanetsListBox/Images/nepglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/37-PlanetsListBox/src/wpf/PlanetsListBox/Images/nepglobe.gif -------------------------------------------------------------------------------- /37-PlanetsListBox/src/wpf/PlanetsListBox/Images/planetx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/37-PlanetsListBox/src/wpf/PlanetsListBox/Images/planetx.jpg -------------------------------------------------------------------------------- /37-PlanetsListBox/src/wpf/PlanetsListBox/Images/plutoch_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/37-PlanetsListBox/src/wpf/PlanetsListBox/Images/plutoch_2.gif -------------------------------------------------------------------------------- /37-PlanetsListBox/src/wpf/PlanetsListBox/Images/uraglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/37-PlanetsListBox/src/wpf/PlanetsListBox/Images/uraglobe.gif -------------------------------------------------------------------------------- /37-PlanetsListBox/src/wpf/PlanetsListBox/Images/venglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/37-PlanetsListBox/src/wpf/PlanetsListBox/Images/venglobe.gif -------------------------------------------------------------------------------- /39-TreeViewPerformancePart1/src/uwp-uno/TreeViewPerformancePart1.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /39-TreeViewPerformancePart1/src/winui/TreeViewPerformancePart1.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /40-TreeViewPerformancePart2/src/uwp-uno/TreeViewPerformancePart2.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /40-TreeViewPerformancePart2/src/winui/TreeViewPerformancePart2.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /41-TreeViewPerformancePart3/src/uwp-uno/TreeViewPerformancePart3.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /41-TreeViewPerformancePart3/src/winui/TreeViewPerformancePart3.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /43-BindToXLinq/src/winui/BindToXLinq.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/43-BindToXLinq/src/winui/BindToXLinq.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /44-XLinqXMLMasterDetail/src/uwp-uno/XLinqXMLMasterDetail.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace XLinqXMLMasterDetail.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /45-DebuggingDataBinding/src/uwp-uno/DebuggingDataBinding.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace DebuggingDataBinding.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /46-DragDropListBox/src/wpf/DragDropListBox/Images/planetx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/46-DragDropListBox/src/wpf/DragDropListBox/Images/planetx.jpg -------------------------------------------------------------------------------- /47-ExpandTreeViewPart1/Images/47ExpandTreeViewSilverlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/47-ExpandTreeViewPart1/Images/47ExpandTreeViewSilverlight.png -------------------------------------------------------------------------------- /54-PieChartWithLabels/Images/LabeledPieChartArcMidpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/54-PieChartWithLabels/Images/LabeledPieChartArcMidpoint.png -------------------------------------------------------------------------------- /54-PieChartWithLabels/Images/LabeledPieChartArcMidpoint1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/54-PieChartWithLabels/Images/LabeledPieChartArcMidpoint1.png -------------------------------------------------------------------------------- /54-PieChartWithLabels/Images/LabeledPieChartArcMidpoint2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/54-PieChartWithLabels/Images/LabeledPieChartArcMidpoint2.png -------------------------------------------------------------------------------- /54-PieChartWithLabels/Images/LabeledPieChartDataTemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/54-PieChartWithLabels/Images/LabeledPieChartDataTemplate.png -------------------------------------------------------------------------------- /59-WPFCollectionViewSource/Images/WPFCollectionViewSource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/59-WPFCollectionViewSource/Images/WPFCollectionViewSource.png -------------------------------------------------------------------------------- /59-WPFCollectionViewSource/src/uwp-uno/WPFCollectionViewSource.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /60-SLCollectionViewSource/Images/60SLCollectionViewSource.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/60-SLCollectionViewSource/Images/60SLCollectionViewSource.PNG -------------------------------------------------------------------------------- /60-SLCollectionViewSource/src/wpf/SLCollectionViewSource.xap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/60-SLCollectionViewSource/src/wpf/SLCollectionViewSource.xap -------------------------------------------------------------------------------- /67-PieChartWithLabelsUpdates/Images/67PieChartWithLabels.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/67-PieChartWithLabelsUpdates/Images/67PieChartWithLabels.PNG -------------------------------------------------------------------------------- /67-PieChartWithLabelsUpdates/src/winui/PieChartWithLabelsUpdates.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /67-PieChartWithLabelsUpdates/src/wpf/PieChartWithLabels.xap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/67-PieChartWithLabelsUpdates/src/wpf/PieChartWithLabels.xap -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/src/winui/PositioningDataBoundItems.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /75-SimultaneousEnableDisable/src/winui/SimultaneousEnableDisable.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /02-EmptyBinding/src/winui/EmptyBinding.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/02-EmptyBinding/src/winui/EmptyBinding.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /03-GetListBoxItem/src/wpf/GetListBoxItem/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace GetListBoxItem 4 | { 5 | public partial class App : Application 6 | { 7 | } 8 | } -------------------------------------------------------------------------------- /04-BindToComboBox/src/wpf/BindToComboBox/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace BindToComboBox 4 | { 5 | public partial class App : Application 6 | { 7 | } 8 | } -------------------------------------------------------------------------------- /05-DisplayMemberPath/Images/DisplayMemberPathSample-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/05-DisplayMemberPath/Images/DisplayMemberPathSample-desktop.png -------------------------------------------------------------------------------- /06-SelectedValue/src/uwp-uno/SelectedValueSample/SelectedValueSample.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /07-ChangePanelItemsControl/src/winui/ChangePanelItemsControl.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace ChangePanelItemsControl.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /09-CollectionViewSourceSample/src/uwp-uno/CollectionViewSourceSample.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /09-CollectionViewSourceSample/src/winui/CollectionViewSourceSample.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /10-MasterDetail/src/winui/MasterDetail.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/10-MasterDetail/src/winui/MasterDetail.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /11-MasterDetailThreeLevels/Images/11MasterDetailThreeLevels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/11-MasterDetailThreeLevels/Images/11MasterDetailThreeLevels.png -------------------------------------------------------------------------------- /11-MasterDetailThreeLevels/src/winui/MasterDetailThreeLevels.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace MasterDetailThreeLevels.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /16-GroupByType/src/uwp-uno/GroupByType.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/16-GroupByType/src/uwp-uno/GroupByType.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /18-ThreeLevelMasterDetailADO/src/uwp-uno/ThreeLevelMasterDetailADO.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /25-BindToEnum/src/winui/BindToEnum.Wasm/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/25-BindToEnum/src/winui/BindToEnum.Wasm/Assets/SplashScreen.png -------------------------------------------------------------------------------- /27-ConvertXaml/src/uwp-uno/ConvertXaml.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/27-ConvertXaml/src/uwp-uno/ConvertXaml.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /28-FilterSample/src/winui/FilterSample.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/28-FilterSample/src/winui/FilterSample.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /37-PlanetsListBox/src/wpf/DataBindingPresenter/Application.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/37-PlanetsListBox/src/wpf/DataBindingPresenter/Application.ico -------------------------------------------------------------------------------- /37-PlanetsListBox/src/wpf/DataBindingPresenter/Images/Kevin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/37-PlanetsListBox/src/wpf/DataBindingPresenter/Images/Kevin.jpg -------------------------------------------------------------------------------- /39-TreeViewPerformancePart1/Images/39TreeViewPerformance11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/39-TreeViewPerformancePart1/Images/39TreeViewPerformance11.png -------------------------------------------------------------------------------- /39-TreeViewPerformancePart1/Images/39TreeViewPerformance12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/39-TreeViewPerformancePart1/Images/39TreeViewPerformance12.png -------------------------------------------------------------------------------- /39-TreeViewPerformancePart1/Images/39TreeViewPerformance13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/39-TreeViewPerformancePart1/Images/39TreeViewPerformance13.png -------------------------------------------------------------------------------- /40-TreeViewPerformancePart2/Images/40TreeViewPerformance21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/40-TreeViewPerformancePart2/Images/40TreeViewPerformance21.png -------------------------------------------------------------------------------- /40-TreeViewPerformancePart2/Images/40TreeViewPerformance22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/40-TreeViewPerformancePart2/Images/40TreeViewPerformance22.png -------------------------------------------------------------------------------- /42-WPFPresenter/src/winui/WPFPresenter.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/42-WPFPresenter/src/winui/WPFPresenter.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /43-BindToXLinq/src/uwp-uno/BindToXLinq.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/43-BindToXLinq/src/uwp-uno/BindToXLinq.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /46-DragDropListBox/src/wpf/DragDropListBox/Images/2moons_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/46-DragDropListBox/src/wpf/DragDropListBox/Images/2moons_2.gif -------------------------------------------------------------------------------- /46-DragDropListBox/src/wpf/DragDropListBox/Images/earglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/46-DragDropListBox/src/wpf/DragDropListBox/Images/earglobe.gif -------------------------------------------------------------------------------- /46-DragDropListBox/src/wpf/DragDropListBox/Images/jupglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/46-DragDropListBox/src/wpf/DragDropListBox/Images/jupglobe.gif -------------------------------------------------------------------------------- /46-DragDropListBox/src/wpf/DragDropListBox/Images/marglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/46-DragDropListBox/src/wpf/DragDropListBox/Images/marglobe.gif -------------------------------------------------------------------------------- /46-DragDropListBox/src/wpf/DragDropListBox/Images/merglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/46-DragDropListBox/src/wpf/DragDropListBox/Images/merglobe.gif -------------------------------------------------------------------------------- /46-DragDropListBox/src/wpf/DragDropListBox/Images/nepglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/46-DragDropListBox/src/wpf/DragDropListBox/Images/nepglobe.gif -------------------------------------------------------------------------------- /46-DragDropListBox/src/wpf/DragDropListBox/Images/plutoch_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/46-DragDropListBox/src/wpf/DragDropListBox/Images/plutoch_2.gif -------------------------------------------------------------------------------- /46-DragDropListBox/src/wpf/DragDropListBox/Images/uraglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/46-DragDropListBox/src/wpf/DragDropListBox/Images/uraglobe.gif -------------------------------------------------------------------------------- /46-DragDropListBox/src/wpf/DragDropListBox/Images/venglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/46-DragDropListBox/src/wpf/DragDropListBox/Images/venglobe.gif -------------------------------------------------------------------------------- /55-PieChartWithLabelsSilverlight/Images/LabeledPieChartAuto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/55-PieChartWithLabelsSilverlight/Images/LabeledPieChartAuto.png -------------------------------------------------------------------------------- /59-WPFCollectionViewSource/src/winui/WPFCollectionViewSource.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace WPFCollectionViewSource.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /60-SLCollectionViewSource/src/uwp-uno/SLCollectionViewSource.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace SLCollectionViewSource.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /60-SLCollectionViewSource/src/winui/SLCollectionViewSource.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace SLCollectionViewSource.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /62-DataVirtualizationFiltering/src/uwp-uno/DataVirtualizationFiltering.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /62-DataVirtualizationFiltering/src/winui/DataVirtualizationFiltering.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /67-PieChartWithLabelsUpdates/src/uwp-uno/PieChartWithLabelsUpdates.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /69-BindRadioButtonsToEnumsPart1/src/winui/BindRadioButtonsToEnumsPart1.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /70-BindRadioButtonsToEnumsPart2/src/winui/BindRadioButtonsToEnumsPart2.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /71-BindRadioButtonsToEnumsPart3/src/winui/BindRadioButtonsToEnumsPart3.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /72-BindRadioButtonsToEnumsPart4/src/winui/BindRadioButtonsToEnumsPart4.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/src/uwp-uno/PositioningDataBoundItems.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /75-SimultaneousEnableDisable/src/uwp-uno/SimultaneousEnableDisable.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /76-FocusWatcher/src/winui/FocusWatcher.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/76-FocusWatcher/src/winui/FocusWatcher.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /01-DataContext/src/wpf/DataContextSample/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace DataContextSample 4 | { 5 | public partial class App : Application 6 | { 7 | } 8 | } -------------------------------------------------------------------------------- /07-ChangePanelItemsControl/Images/ChangePanelItemsControl-uwp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/07-ChangePanelItemsControl/Images/ChangePanelItemsControl-uwp.png -------------------------------------------------------------------------------- /07-ChangePanelItemsControl/Images/ChangePanelItemsControl-wasm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/07-ChangePanelItemsControl/Images/ChangePanelItemsControl-wasm.png -------------------------------------------------------------------------------- /08-BarGraph/src/uwp-uno/BarGraph/BarGraph.UWP/Assets/storelogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/08-BarGraph/src/uwp-uno/BarGraph/BarGraph.UWP/Assets/storelogo.png -------------------------------------------------------------------------------- /08-BarGraph/src/winui/BarGraph.Droid/Resources/drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/08-BarGraph/src/winui/BarGraph.Droid/Resources/drawable/Icon.png -------------------------------------------------------------------------------- /08-BarGraph/src/winui/BarGraph.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/08-BarGraph/src/winui/BarGraph.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /08-BarGraph/src/winui/BarGraph.iOS/Resources/SplashScreen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/08-BarGraph/src/winui/BarGraph.iOS/Resources/SplashScreen@2x.png -------------------------------------------------------------------------------- /08-BarGraph/src/winui/BarGraph.iOS/Resources/SplashScreen@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/08-BarGraph/src/winui/BarGraph.iOS/Resources/SplashScreen@3x.png -------------------------------------------------------------------------------- /10-MasterDetail/src/uwp-uno/MasterDetail.UWP/Assets/storelogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/10-MasterDetail/src/uwp-uno/MasterDetail.UWP/Assets/storelogo.png -------------------------------------------------------------------------------- /14-SortingGroups/src/winui/SortingGroups.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/14-SortingGroups/src/winui/SortingGroups.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /16-GroupByType/src/winui/GroupByType.Wasm/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/16-GroupByType/src/winui/GroupByType.Wasm/Assets/SplashScreen.png -------------------------------------------------------------------------------- /17-BoundListView/src/winui/BoundListView.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/17-BoundListView/src/winui/BoundListView.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /18-ThreeLevelMasterDetailADO/Images/ThreeLevelMasterDetailADO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/18-ThreeLevelMasterDetailADO/Images/ThreeLevelMasterDetailADO.png -------------------------------------------------------------------------------- /18-ThreeLevelMasterDetailADO/src/winui/ThreeLevelMasterDetailADO.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace ThreeLevelMasterDetailADO.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /19-ObjectDataProviderSample/Images/19ObjectDataProviderSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/19-ObjectDataProviderSample/Images/19ObjectDataProviderSample.png -------------------------------------------------------------------------------- /19-ObjectDataProviderSample/src/uwp-uno/ObjectDataProviderSample.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace ObjectDataProviderSample.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /19-ObjectDataProviderSample/src/winui/ObjectDataProviderSample.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace ObjectDataProviderSample.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /21-CustomSorting/src/winui/CustomSorting.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/21-CustomSorting/src/winui/CustomSorting.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /25-BindToEnum/src/uwp-uno/BindToEnum.Wasm/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/25-BindToEnum/src/uwp-uno/BindToEnum.Wasm/Assets/SplashScreen.png -------------------------------------------------------------------------------- /26-DataTriggerSample/src/wpf/DataTriggerSample/Pictures/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/26-DataTriggerSample/src/wpf/DataTriggerSample/Pictures/Thumbs.db -------------------------------------------------------------------------------- /27-ConvertXaml/src/winui/ConvertXaml.Wasm/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/27-ConvertXaml/src/winui/ConvertXaml.Wasm/Assets/SplashScreen.png -------------------------------------------------------------------------------- /28-FilterSample/src/uwp-uno/FilterSample.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/28-FilterSample/src/uwp-uno/FilterSample.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /37-PlanetsListBox/src/wpf/DataBindingPresenter/Images/2moons_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/37-PlanetsListBox/src/wpf/DataBindingPresenter/Images/2moons_2.gif -------------------------------------------------------------------------------- /37-PlanetsListBox/src/wpf/DataBindingPresenter/Images/earglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/37-PlanetsListBox/src/wpf/DataBindingPresenter/Images/earglobe.gif -------------------------------------------------------------------------------- /37-PlanetsListBox/src/wpf/DataBindingPresenter/Images/jupglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/37-PlanetsListBox/src/wpf/DataBindingPresenter/Images/jupglobe.gif -------------------------------------------------------------------------------- /37-PlanetsListBox/src/wpf/DataBindingPresenter/Images/marglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/37-PlanetsListBox/src/wpf/DataBindingPresenter/Images/marglobe.gif -------------------------------------------------------------------------------- /37-PlanetsListBox/src/wpf/DataBindingPresenter/Images/merglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/37-PlanetsListBox/src/wpf/DataBindingPresenter/Images/merglobe.gif -------------------------------------------------------------------------------- /37-PlanetsListBox/src/wpf/DataBindingPresenter/Images/nepglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/37-PlanetsListBox/src/wpf/DataBindingPresenter/Images/nepglobe.gif -------------------------------------------------------------------------------- /37-PlanetsListBox/src/wpf/DataBindingPresenter/Images/planetx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/37-PlanetsListBox/src/wpf/DataBindingPresenter/Images/planetx.jpg -------------------------------------------------------------------------------- /37-PlanetsListBox/src/wpf/DataBindingPresenter/Images/uraglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/37-PlanetsListBox/src/wpf/DataBindingPresenter/Images/uraglobe.gif -------------------------------------------------------------------------------- /37-PlanetsListBox/src/wpf/DataBindingPresenter/Images/venglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/37-PlanetsListBox/src/wpf/DataBindingPresenter/Images/venglobe.gif -------------------------------------------------------------------------------- /39-TreeViewPerformancePart1/src/uwp-uno/TreeViewPerformancePart1.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace TreeViewPerformancePart1.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /39-TreeViewPerformancePart1/src/winui/TreeViewPerformancePart1.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace TreeViewPerformancePart1.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /40-TreeViewPerformancePart2/src/uwp-uno/TreeViewPerformancePart2.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace TreeViewPerformancePart2.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /40-TreeViewPerformancePart2/src/winui/TreeViewPerformancePart2.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace TreeViewPerformancePart2.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /41-TreeViewPerformancePart3/src/uwp-uno/TreeViewPerformancePart3.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace TreeViewPerformancePart3.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /41-TreeViewPerformancePart3/src/winui/TreeViewPerformancePart3.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace TreeViewPerformancePart3.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /42-WPFPresenter/src/uwp-uno/WPFPresenter.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/42-WPFPresenter/src/uwp-uno/WPFPresenter.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /43-BindToXLinq/src/winui/BindToXLinq.Wasm/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/43-BindToXLinq/src/winui/BindToXLinq.Wasm/Assets/SplashScreen.png -------------------------------------------------------------------------------- /55-PieChartWithLabelsSilverlight/Images/LabeledPieChartAuto1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/55-PieChartWithLabelsSilverlight/Images/LabeledPieChartAuto1.png -------------------------------------------------------------------------------- /55-PieChartWithLabelsSilverlight/Images/LabeledPieChartAuto2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/55-PieChartWithLabelsSilverlight/Images/LabeledPieChartAuto2.png -------------------------------------------------------------------------------- /55-PieChartWithLabelsSilverlight/Images/LabeledPieChartBasic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/55-PieChartWithLabelsSilverlight/Images/LabeledPieChartBasic.png -------------------------------------------------------------------------------- /56-PieChartWithLabelsSilverlight/src/uwp-uno/PieChartWithLabelsSilverlight.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /56-PieChartWithLabelsSilverlight/src/winui/PieChartWithLabelsSilverlight.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /59-WPFCollectionViewSource/src/uwp-uno/WPFCollectionViewSource.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace WPFCollectionViewSource.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /67-PieChartWithLabelsUpdates/src/winui/PieChartWithLabelsUpdates.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace PieChartWithLabelsUpdates.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /69-BindRadioButtonsToEnumsPart1/src/uwp-uno/BindRadioButtonsToEnumsPart1.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /70-BindRadioButtonsToEnumsPart2/src/uwp-uno/BindRadioButtonsToEnumsPart2.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /71-BindRadioButtonsToEnumsPart3/src/uwp-uno/BindRadioButtonsToEnumsPart3.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /72-BindRadioButtonsToEnumsPart4/src/uwp-uno/BindRadioButtonsToEnumsPart4.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/src/winui/PositioningDataBoundItems.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace PositioningDataBoundItems.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /75-SimultaneousEnableDisable/src/winui/SimultaneousEnableDisable.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace SimultaneousEnableDisable.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /76-FocusWatcher/src/uwp-uno/FocusWatcher.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/76-FocusWatcher/src/uwp-uno/FocusWatcher.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /01-DataContext/src/winui/DataContextSample.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/01-DataContext/src/winui/DataContextSample.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /02-EmptyBinding/src/winui/EmptyBinding.Wasm/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/02-EmptyBinding/src/winui/EmptyBinding.Wasm/Assets/SplashScreen.png -------------------------------------------------------------------------------- /03-GetListBoxItem/src/winui/GetListBoxItem.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/03-GetListBoxItem/src/winui/GetListBoxItem.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /04-BindToComboBox/src/winui/BindToComboBox.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/04-BindToComboBox/src/winui/BindToComboBox.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /05-DisplayMemberPath/src/uwp-uno/DisplayMemberPathSample/DisplayMemberPathSample.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /08-BarGraph/src/winui/BarGraph.Droid/Assets/Fonts/winjs-symbols.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/08-BarGraph/src/winui/BarGraph.Droid/Assets/Fonts/winjs-symbols.ttf -------------------------------------------------------------------------------- /08-BarGraph/src/winui/BarGraph.UWP/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/08-BarGraph/src/winui/BarGraph.UWP/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /08-BarGraph/src/winui/BarGraph.iOS/Resources/Fonts/winjs-symbols.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/08-BarGraph/src/winui/BarGraph.iOS/Resources/Fonts/winjs-symbols.ttf -------------------------------------------------------------------------------- /09-CollectionViewSourceSample/Images/9CollectionViewSourceSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/09-CollectionViewSourceSample/Images/9CollectionViewSourceSample.png -------------------------------------------------------------------------------- /09-CollectionViewSourceSample/src/winui/CollectionViewSourceSample.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace CollectionViewSourceSample.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /10-MasterDetail/src/winui/MasterDetail.Wasm/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/10-MasterDetail/src/winui/MasterDetail.Wasm/Assets/SplashScreen.png -------------------------------------------------------------------------------- /11-MasterDetailThreeLevels/Images/11MasterDetailThreeLevels-uwp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/11-MasterDetailThreeLevels/Images/11MasterDetailThreeLevels-uwp.png -------------------------------------------------------------------------------- /11-MasterDetailThreeLevels/Images/11MasterDetailThreeLevels-wasm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/11-MasterDetailThreeLevels/Images/11MasterDetailThreeLevels-wasm.png -------------------------------------------------------------------------------- /14-SortingGroups/src/uwp-uno/SortingGroups.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/14-SortingGroups/src/uwp-uno/SortingGroups.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /16-GroupByType/src/uwp-uno/GroupByType.Wasm/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/16-GroupByType/src/uwp-uno/GroupByType.Wasm/Assets/SplashScreen.png -------------------------------------------------------------------------------- /17-BoundListView/src/uwp-uno/BoundListView.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/17-BoundListView/src/uwp-uno/BoundListView.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /18-ThreeLevelMasterDetailADO/src/uwp-uno/ThreeLevelMasterDetailADO.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace ThreeLevelMasterDetailADO.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /21-CustomSorting/src/uwp-uno/CustomSorting.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/21-CustomSorting/src/uwp-uno/CustomSorting.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /25-BindToEnum/src/winui/BindToEnum.Droid/Resources/drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/25-BindToEnum/src/winui/BindToEnum.Droid/Resources/drawable/Icon.png -------------------------------------------------------------------------------- /25-BindToEnum/src/winui/BindToEnum.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/25-BindToEnum/src/winui/BindToEnum.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /25-BindToEnum/src/winui/BindToEnum.iOS/Resources/SplashScreen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/25-BindToEnum/src/winui/BindToEnum.iOS/Resources/SplashScreen@2x.png -------------------------------------------------------------------------------- /25-BindToEnum/src/winui/BindToEnum.iOS/Resources/SplashScreen@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/25-BindToEnum/src/winui/BindToEnum.iOS/Resources/SplashScreen@3x.png -------------------------------------------------------------------------------- /27-ConvertXaml/src/uwp-uno/ConvertXaml.Wasm/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/27-ConvertXaml/src/uwp-uno/ConvertXaml.Wasm/Assets/SplashScreen.png -------------------------------------------------------------------------------- /28-FilterSample/src/winui/FilterSample.Wasm/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/28-FilterSample/src/winui/FilterSample.Wasm/Assets/SplashScreen.png -------------------------------------------------------------------------------- /32-PolygonBinding/src/winui/PolygonBinding.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/32-PolygonBinding/src/winui/PolygonBinding.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /37-PlanetsListBox/src/winui/PlanetsListBox.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/37-PlanetsListBox/src/winui/PlanetsListBox.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /37-PlanetsListBox/src/wpf/DataBindingPresenter/Images/plutoch_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/37-PlanetsListBox/src/wpf/DataBindingPresenter/Images/plutoch_2.gif -------------------------------------------------------------------------------- /38-UpdateExplicit/src/winui/UpdateExplicit.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/38-UpdateExplicit/src/winui/UpdateExplicit.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /42-WPFPresenter/src/winui/WPFPresenter.Wasm/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/42-WPFPresenter/src/winui/WPFPresenter.Wasm/Assets/SplashScreen.png -------------------------------------------------------------------------------- /43-BindToXLinq/src/uwp-uno/BindToXLinq.Wasm/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/43-BindToXLinq/src/uwp-uno/BindToXLinq.Wasm/Assets/SplashScreen.png -------------------------------------------------------------------------------- /45-DebuggingDataBinding/src/wpf/DebuggingDataBinding/Images/sun.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/45-DebuggingDataBinding/src/wpf/DebuggingDataBinding/Images/sun.jpg -------------------------------------------------------------------------------- /46-DragDropListBox/src/wpf/OriginalScreenshots/46DraggedAdorner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/46-DragDropListBox/src/wpf/OriginalScreenshots/46DraggedAdorner.png -------------------------------------------------------------------------------- /55-PieChartWithLabelsSilverlight/Images/LabeledPieChartConnected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/55-PieChartWithLabelsSilverlight/Images/LabeledPieChartConnected.png -------------------------------------------------------------------------------- /58-MultipleStyles/src/winui/MultipleStyles.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/58-MultipleStyles/src/winui/MultipleStyles.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /64-DataVirtualizationFilteringSorting/Images/DVFilteringSorting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/64-DataVirtualizationFilteringSorting/Images/DVFilteringSorting.png -------------------------------------------------------------------------------- /67-PieChartWithLabelsUpdates/src/uwp-uno/PieChartWithLabelsUpdates.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace PieChartWithLabelsUpdates.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /69-BindRadioButtonsToEnumsPart1/Images/BindRadioButtonsToEnums1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/69-BindRadioButtonsToEnumsPart1/Images/BindRadioButtonsToEnums1.png -------------------------------------------------------------------------------- /70-BindRadioButtonsToEnumsPart2/Images/BindRadioButtonsToEnums2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/70-BindRadioButtonsToEnumsPart2/Images/BindRadioButtonsToEnums2.png -------------------------------------------------------------------------------- /71-BindRadioButtonsToEnumsPart3/Images/BindRadioButtonsToEnums3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/71-BindRadioButtonsToEnumsPart3/Images/BindRadioButtonsToEnums3.png -------------------------------------------------------------------------------- /72-BindRadioButtonsToEnumsPart4/Images/BindRadioButtonsToEnums4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/72-BindRadioButtonsToEnumsPart4/Images/BindRadioButtonsToEnums4.png -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/src/uwp-uno/PositioningDataBoundItems.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace PositioningDataBoundItems.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /75-SimultaneousEnableDisable/src/uwp-uno/SimultaneousEnableDisable.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace SimultaneousEnableDisable.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /76-FocusWatcher/src/winui/FocusWatcher.Wasm/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/76-FocusWatcher/src/winui/FocusWatcher.Wasm/Assets/SplashScreen.png -------------------------------------------------------------------------------- /77-CaptureWatcher/src/winui/CaptureWatcher.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/77-CaptureWatcher/src/winui/CaptureWatcher.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /01-DataContext/src/winui/DataContextSample.Wasm/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/01-DataContext/src/winui/DataContextSample.Wasm/Assets/SplashScreen.png -------------------------------------------------------------------------------- /03-GetListBoxItem/src/winui/GetListBoxItem.Wasm/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/03-GetListBoxItem/src/winui/GetListBoxItem.Wasm/Assets/SplashScreen.png -------------------------------------------------------------------------------- /04-BindToComboBox/src/winui/BindToComboBox.Wasm/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/04-BindToComboBox/src/winui/BindToComboBox.Wasm/Assets/SplashScreen.png -------------------------------------------------------------------------------- /06-SelectedValue/src/winui/SelectedValueSample.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/06-SelectedValue/src/winui/SelectedValueSample.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /07-ChangePanelItemsControl/Images/ChangePanelItemsControl-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/07-ChangePanelItemsControl/Images/ChangePanelItemsControl-desktop.png -------------------------------------------------------------------------------- /08-BarGraph/src/uwp-uno/BarGraph/BarGraph.Wasm/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/08-BarGraph/src/uwp-uno/BarGraph/BarGraph.Wasm/Assets/SplashScreen.png -------------------------------------------------------------------------------- /08-BarGraph/src/winui/BarGraph.UWP/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/08-BarGraph/src/winui/BarGraph.UWP/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /08-BarGraph/src/winui/BarGraph.UWP/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/08-BarGraph/src/winui/BarGraph.UWP/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /08-BarGraph/src/winui/BarGraph.UWP/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/08-BarGraph/src/winui/BarGraph.UWP/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /08-BarGraph/src/winui/BarGraph.macOS/Resources/Fonts/winjs-symbols.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/08-BarGraph/src/winui/BarGraph.macOS/Resources/Fonts/winjs-symbols.ttf -------------------------------------------------------------------------------- /10-MasterDetail/src/uwp-uno/MasterDetail.Wasm/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/10-MasterDetail/src/uwp-uno/MasterDetail.Wasm/Assets/SplashScreen.png -------------------------------------------------------------------------------- /11-MasterDetailThreeLevels/Images/11MasterDetailThreeLevels-desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/11-MasterDetailThreeLevels/Images/11MasterDetailThreeLevels-desktop.png -------------------------------------------------------------------------------- /13-TemplatingItems/src/uwp-uno/TemplatingItems.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/13-TemplatingItems/src/uwp-uno/TemplatingItems.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /13-TemplatingItems/src/winui/TemplatingItems.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/13-TemplatingItems/src/winui/TemplatingItems.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /14-SortingGroups/src/uwp-uno/SortingGroups.Wasm/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/14-SortingGroups/src/uwp-uno/SortingGroups.Wasm/Assets/SplashScreen.png -------------------------------------------------------------------------------- /14-SortingGroups/src/winui/SortingGroups.Wasm/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/14-SortingGroups/src/winui/SortingGroups.Wasm/Assets/SplashScreen.png -------------------------------------------------------------------------------- /15-GroupingTreeView/src/winui/GroupingTreeView.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/15-GroupingTreeView/src/winui/GroupingTreeView.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /16-GroupByType/src/winui/GroupByType.Droid/Resources/drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/16-GroupByType/src/winui/GroupByType.Droid/Resources/drawable/Icon.png -------------------------------------------------------------------------------- /16-GroupByType/src/winui/GroupByType.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/16-GroupByType/src/winui/GroupByType.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /16-GroupByType/src/winui/GroupByType.iOS/Resources/SplashScreen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/16-GroupByType/src/winui/GroupByType.iOS/Resources/SplashScreen@2x.png -------------------------------------------------------------------------------- /16-GroupByType/src/winui/GroupByType.iOS/Resources/SplashScreen@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/16-GroupByType/src/winui/GroupByType.iOS/Resources/SplashScreen@3x.png -------------------------------------------------------------------------------- /17-BoundListView/src/uwp-uno/BoundListView.Wasm/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/17-BoundListView/src/uwp-uno/BoundListView.Wasm/Assets/SplashScreen.png -------------------------------------------------------------------------------- /17-BoundListView/src/winui/BoundListView.Wasm/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/17-BoundListView/src/winui/BoundListView.Wasm/Assets/SplashScreen.png -------------------------------------------------------------------------------- /21-CustomSorting/src/uwp-uno/CustomSorting.Wasm/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/21-CustomSorting/src/uwp-uno/CustomSorting.Wasm/Assets/SplashScreen.png -------------------------------------------------------------------------------- /21-CustomSorting/src/winui/CustomSorting.Wasm/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/21-CustomSorting/src/winui/CustomSorting.Wasm/Assets/SplashScreen.png -------------------------------------------------------------------------------- /25-BindToEnum/src/uwp-uno/BindToEnum.Droid/Resources/drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/25-BindToEnum/src/uwp-uno/BindToEnum.Droid/Resources/drawable/Icon.png -------------------------------------------------------------------------------- /25-BindToEnum/src/uwp-uno/BindToEnum.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/25-BindToEnum/src/uwp-uno/BindToEnum.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /25-BindToEnum/src/uwp-uno/BindToEnum.iOS/Resources/SplashScreen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/25-BindToEnum/src/uwp-uno/BindToEnum.iOS/Resources/SplashScreen@2x.png -------------------------------------------------------------------------------- /25-BindToEnum/src/uwp-uno/BindToEnum.iOS/Resources/SplashScreen@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/25-BindToEnum/src/uwp-uno/BindToEnum.iOS/Resources/SplashScreen@3x.png -------------------------------------------------------------------------------- /26-DataTriggerSample/src/wpf/DataTriggerSample/Pictures/TechEd 004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/26-DataTriggerSample/src/wpf/DataTriggerSample/Pictures/TechEd 004.jpg -------------------------------------------------------------------------------- /26-DataTriggerSample/src/wpf/DataTriggerSample/Pictures/TechEd 022.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/26-DataTriggerSample/src/wpf/DataTriggerSample/Pictures/TechEd 022.jpg -------------------------------------------------------------------------------- /26-DataTriggerSample/src/wpf/DataTriggerSample/Pictures/TechEd 029.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/26-DataTriggerSample/src/wpf/DataTriggerSample/Pictures/TechEd 029.jpg -------------------------------------------------------------------------------- /26-DataTriggerSample/src/wpf/DataTriggerSample/Pictures/TechEd 030.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/26-DataTriggerSample/src/wpf/DataTriggerSample/Pictures/TechEd 030.jpg -------------------------------------------------------------------------------- /26-DataTriggerSample/src/wpf/DataTriggerSample/Pictures/TechEd 051.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/26-DataTriggerSample/src/wpf/DataTriggerSample/Pictures/TechEd 051.jpg -------------------------------------------------------------------------------- /26-DataTriggerSample/src/wpf/DataTriggerSample/Pictures/TechEd 061.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/26-DataTriggerSample/src/wpf/DataTriggerSample/Pictures/TechEd 061.jpg -------------------------------------------------------------------------------- /26-DataTriggerSample/src/wpf/DataTriggerSample/Pictures/TechEd 066.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/26-DataTriggerSample/src/wpf/DataTriggerSample/Pictures/TechEd 066.jpg -------------------------------------------------------------------------------- /26-DataTriggerSample/src/wpf/DataTriggerSample/Pictures/TechEd 074.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/26-DataTriggerSample/src/wpf/DataTriggerSample/Pictures/TechEd 074.jpg -------------------------------------------------------------------------------- /26-DataTriggerSample/src/wpf/DataTriggerSample/Pictures/TechEd 075.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/26-DataTriggerSample/src/wpf/DataTriggerSample/Pictures/TechEd 075.jpg -------------------------------------------------------------------------------- /26-DataTriggerSample/src/wpf/DataTriggerSample/Pictures/TechEd 077.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/26-DataTriggerSample/src/wpf/DataTriggerSample/Pictures/TechEd 077.jpg -------------------------------------------------------------------------------- /26-DataTriggerSample/src/wpf/DataTriggerSample/Pictures/TechEd 082.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/26-DataTriggerSample/src/wpf/DataTriggerSample/Pictures/TechEd 082.jpg -------------------------------------------------------------------------------- /27-ConvertXaml/src/winui/ConvertXaml.Droid/Resources/drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/27-ConvertXaml/src/winui/ConvertXaml.Droid/Resources/drawable/Icon.png -------------------------------------------------------------------------------- /27-ConvertXaml/src/winui/ConvertXaml.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/27-ConvertXaml/src/winui/ConvertXaml.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /27-ConvertXaml/src/winui/ConvertXaml.iOS/Resources/SplashScreen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/27-ConvertXaml/src/winui/ConvertXaml.iOS/Resources/SplashScreen@2x.png -------------------------------------------------------------------------------- /27-ConvertXaml/src/winui/ConvertXaml.iOS/Resources/SplashScreen@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/27-ConvertXaml/src/winui/ConvertXaml.iOS/Resources/SplashScreen@3x.png -------------------------------------------------------------------------------- /28-FilterSample/src/uwp-uno/FilterSample.Wasm/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/28-FilterSample/src/uwp-uno/FilterSample.Wasm/Assets/SplashScreen.png -------------------------------------------------------------------------------- /29-MultipleFilters/src/uwp-uno/MultipleFilters.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/29-MultipleFilters/src/uwp-uno/MultipleFilters.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /29-MultipleFilters/src/winui/MultipleFilters.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/29-MultipleFilters/src/winui/MultipleFilters.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /32-PolygonBinding/src/uwp-uno/PolygonBinding.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/32-PolygonBinding/src/uwp-uno/PolygonBinding.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /32-PolygonBinding/src/winui/PolygonBinding.Wasm/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/32-PolygonBinding/src/winui/PolygonBinding.Wasm/Assets/SplashScreen.png -------------------------------------------------------------------------------- /33-PolygonBinding2/src/uwp-uno/PolygonBinding2.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/33-PolygonBinding2/src/uwp-uno/PolygonBinding2.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /33-PolygonBinding2/src/winui/PolygonBinding2.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/33-PolygonBinding2/src/winui/PolygonBinding2.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /34-PolygonBinding3/src/uwp-uno/PolygonBinding3.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/34-PolygonBinding3/src/uwp-uno/PolygonBinding3.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /34-PolygonBinding3/src/winui/PolygonBinding3.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/34-PolygonBinding3/src/winui/PolygonBinding3.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /35-CommonQuestions/src/uwp-uno/CommonQuestions.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/35-CommonQuestions/src/uwp-uno/CommonQuestions.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /35-CommonQuestions/src/winui/CommonQuestions.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/35-CommonQuestions/src/winui/CommonQuestions.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /36-ADOIndependentView/src/wpf/ADOIndependentView/IndiaSacredRivers.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/36-ADOIndependentView/src/wpf/ADOIndependentView/IndiaSacredRivers.mdb -------------------------------------------------------------------------------- /37-PlanetsListBox/src/uwp-uno/PlanetsListBox.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/37-PlanetsListBox/src/uwp-uno/PlanetsListBox.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /37-PlanetsListBox/src/winui/PlanetsListBox.Wasm/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/37-PlanetsListBox/src/winui/PlanetsListBox.Wasm/Assets/SplashScreen.png -------------------------------------------------------------------------------- /38-UpdateExplicit/src/uwp-uno/UpdateExplicit.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/38-UpdateExplicit/src/uwp-uno/UpdateExplicit.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /38-UpdateExplicit/src/winui/UpdateExplicit.Wasm/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/38-UpdateExplicit/src/winui/UpdateExplicit.Wasm/Assets/SplashScreen.png -------------------------------------------------------------------------------- /42-WPFPresenter/src/uwp-uno/WPFPresenter.Wasm/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/42-WPFPresenter/src/uwp-uno/WPFPresenter.Wasm/Assets/SplashScreen.png -------------------------------------------------------------------------------- /43-BindToXLinq/src/winui/BindToXLinq.Droid/Resources/drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/43-BindToXLinq/src/winui/BindToXLinq.Droid/Resources/drawable/Icon.png -------------------------------------------------------------------------------- /43-BindToXLinq/src/winui/BindToXLinq.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/43-BindToXLinq/src/winui/BindToXLinq.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /43-BindToXLinq/src/winui/BindToXLinq.iOS/Resources/SplashScreen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/43-BindToXLinq/src/winui/BindToXLinq.iOS/Resources/SplashScreen@2x.png -------------------------------------------------------------------------------- /43-BindToXLinq/src/winui/BindToXLinq.iOS/Resources/SplashScreen@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/43-BindToXLinq/src/winui/BindToXLinq.iOS/Resources/SplashScreen@3x.png -------------------------------------------------------------------------------- /46-DragDropListBox/src/uwp-uno/DragDropListBox.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/46-DragDropListBox/src/uwp-uno/DragDropListBox.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /46-DragDropListBox/src/winui/DragDropListBox.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/46-DragDropListBox/src/winui/DragDropListBox.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /46-DragDropListBox/src/wpf/OriginalScreenshots/46InsertionAdorner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/46-DragDropListBox/src/wpf/OriginalScreenshots/46InsertionAdorner.png -------------------------------------------------------------------------------- /55-PieChartWithLabelsSilverlight/Images/LabeledPieChartArcMidpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/55-PieChartWithLabelsSilverlight/Images/LabeledPieChartArcMidpoint.png -------------------------------------------------------------------------------- /55-PieChartWithLabelsSilverlight/Images/LabeledPieChartArcMidpoint1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/55-PieChartWithLabelsSilverlight/Images/LabeledPieChartArcMidpoint1.png -------------------------------------------------------------------------------- /55-PieChartWithLabelsSilverlight/Images/LabeledPieChartArcMidpoint2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/55-PieChartWithLabelsSilverlight/Images/LabeledPieChartArcMidpoint2.png -------------------------------------------------------------------------------- /55-PieChartWithLabelsSilverlight/Images/LabeledPieChartConnected1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/55-PieChartWithLabelsSilverlight/Images/LabeledPieChartConnected1.png -------------------------------------------------------------------------------- /55-PieChartWithLabelsSilverlight/Images/LabeledPieChartConnected2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/55-PieChartWithLabelsSilverlight/Images/LabeledPieChartConnected2.png -------------------------------------------------------------------------------- /55-PieChartWithLabelsSilverlight/Images/LabeledPieChartDataTemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/55-PieChartWithLabelsSilverlight/Images/LabeledPieChartDataTemplate.png -------------------------------------------------------------------------------- /58-MultipleStyles/src/uwp-uno/MultipleStyles.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/58-MultipleStyles/src/uwp-uno/MultipleStyles.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /58-MultipleStyles/src/winui/MultipleStyles.Wasm/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/58-MultipleStyles/src/winui/MultipleStyles.Wasm/Assets/SplashScreen.png -------------------------------------------------------------------------------- /62-DataVirtualizationFiltering/src/uwp-uno/DataVirtualizationFiltering.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace DataVirtualizationFiltering.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /62-DataVirtualizationFiltering/src/winui/DataVirtualizationFiltering.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace DataVirtualizationFiltering.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /64-DataVirtualizationFilteringSorting/src/uwp-uno/DataVirtualizationFilteringSorting.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /64-DataVirtualizationFilteringSorting/src/winui/DataVirtualizationFilteringSorting.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /66-SortingHierarchy/src/winui/SortingHierarchy.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/66-SortingHierarchy/src/winui/SortingHierarchy.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /69-BindRadioButtonsToEnumsPart1/src/winui/BindRadioButtonsToEnumsPart1.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace BindRadioButtonsToEnumsPart1.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /70-BindRadioButtonsToEnumsPart2/src/winui/BindRadioButtonsToEnumsPart2.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace BindRadioButtonsToEnumsPart2.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /71-BindRadioButtonsToEnumsPart3/src/winui/BindRadioButtonsToEnumsPart3.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace BindRadioButtonsToEnumsPart3.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /72-BindRadioButtonsToEnumsPart4/src/winui/BindRadioButtonsToEnumsPart4.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace BindRadioButtonsToEnumsPart4.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /76-FocusWatcher/src/uwp-uno/FocusWatcher.Wasm/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/76-FocusWatcher/src/uwp-uno/FocusWatcher.Wasm/Assets/SplashScreen.png -------------------------------------------------------------------------------- /77-CaptureWatcher/src/uwp-uno/CaptureWatcher.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/77-CaptureWatcher/src/uwp-uno/CaptureWatcher.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /77-CaptureWatcher/src/winui/CaptureWatcher.Wasm/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/77-CaptureWatcher/src/winui/CaptureWatcher.Wasm/Assets/SplashScreen.png -------------------------------------------------------------------------------- /02-EmptyBinding/src/winui/EmptyBinding.Droid/Resources/drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/02-EmptyBinding/src/winui/EmptyBinding.Droid/Resources/drawable/Icon.png -------------------------------------------------------------------------------- /02-EmptyBinding/src/winui/EmptyBinding.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/02-EmptyBinding/src/winui/EmptyBinding.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /02-EmptyBinding/src/winui/EmptyBinding.iOS/Resources/SplashScreen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/02-EmptyBinding/src/winui/EmptyBinding.iOS/Resources/SplashScreen@2x.png -------------------------------------------------------------------------------- /02-EmptyBinding/src/winui/EmptyBinding.iOS/Resources/SplashScreen@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/02-EmptyBinding/src/winui/EmptyBinding.iOS/Resources/SplashScreen@3x.png -------------------------------------------------------------------------------- /05-DisplayMemberPath/src/wpf/DisplayMemberPathSample/App.xaml.cs: -------------------------------------------------------------------------------- 1 | using System.Windows; 2 | 3 | namespace DisplayMemberPathSample 4 | { 5 | public partial class App : Application 6 | { 7 | } 8 | } -------------------------------------------------------------------------------- /07-ChangePanelItemsControl/src/uwp-uno/ChangePanelItemsControl/ChangePanelItemsControl.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /08-BarGraph/src/winui/BarGraph.Droid/Assets/Fonts/uno-fluentui-assets.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/08-BarGraph/src/winui/BarGraph.Droid/Assets/Fonts/uno-fluentui-assets.ttf -------------------------------------------------------------------------------- /08-BarGraph/src/winui/BarGraph.UWP/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/08-BarGraph/src/winui/BarGraph.UWP/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /09-CollectionViewSourceSample/Images/9CollectionViewSourceSample-uwp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/09-CollectionViewSourceSample/Images/9CollectionViewSourceSample-uwp.png -------------------------------------------------------------------------------- /10-MasterDetail/src/winui/MasterDetail.Droid/Resources/drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/10-MasterDetail/src/winui/MasterDetail.Droid/Resources/drawable/Icon.png -------------------------------------------------------------------------------- /10-MasterDetail/src/winui/MasterDetail.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/10-MasterDetail/src/winui/MasterDetail.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /10-MasterDetail/src/winui/MasterDetail.iOS/Resources/SplashScreen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/10-MasterDetail/src/winui/MasterDetail.iOS/Resources/SplashScreen@2x.png -------------------------------------------------------------------------------- /10-MasterDetail/src/winui/MasterDetail.iOS/Resources/SplashScreen@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/10-MasterDetail/src/winui/MasterDetail.iOS/Resources/SplashScreen@3x.png -------------------------------------------------------------------------------- /11-MasterDetailThreeLevels/src/uwp-uno/MasterDetailThreeLevels/MasterDetailThreeLevels.macOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /13-TemplatingItems/src/winui/TemplatingItems.Wasm/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/13-TemplatingItems/src/winui/TemplatingItems.Wasm/Assets/SplashScreen.png -------------------------------------------------------------------------------- /15-GroupingTreeView/src/uwp-uno/GroupingTreeView.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/15-GroupingTreeView/src/uwp-uno/GroupingTreeView.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /16-GroupByType/src/uwp-uno/GroupByType.Droid/Resources/drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/16-GroupByType/src/uwp-uno/GroupByType.Droid/Resources/drawable/Icon.png -------------------------------------------------------------------------------- /16-GroupByType/src/uwp-uno/GroupByType.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/16-GroupByType/src/uwp-uno/GroupByType.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /16-GroupByType/src/uwp-uno/GroupByType.iOS/Resources/SplashScreen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/16-GroupByType/src/uwp-uno/GroupByType.iOS/Resources/SplashScreen@2x.png -------------------------------------------------------------------------------- /16-GroupByType/src/uwp-uno/GroupByType.iOS/Resources/SplashScreen@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/16-GroupByType/src/uwp-uno/GroupByType.iOS/Resources/SplashScreen@3x.png -------------------------------------------------------------------------------- /25-BindToEnum/src/winui/BindToEnum.UWP/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/25-BindToEnum/src/winui/BindToEnum.UWP/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /26-DataTriggerSample/src/winui/DataTriggerSample.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/26-DataTriggerSample/src/winui/DataTriggerSample.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /27-ConvertXaml/src/uwp-uno/ConvertXaml.Droid/Resources/drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/27-ConvertXaml/src/uwp-uno/ConvertXaml.Droid/Resources/drawable/Icon.png -------------------------------------------------------------------------------- /27-ConvertXaml/src/uwp-uno/ConvertXaml.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/27-ConvertXaml/src/uwp-uno/ConvertXaml.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /27-ConvertXaml/src/uwp-uno/ConvertXaml.iOS/Resources/SplashScreen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/27-ConvertXaml/src/uwp-uno/ConvertXaml.iOS/Resources/SplashScreen@2x.png -------------------------------------------------------------------------------- /27-ConvertXaml/src/uwp-uno/ConvertXaml.iOS/Resources/SplashScreen@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/27-ConvertXaml/src/uwp-uno/ConvertXaml.iOS/Resources/SplashScreen@3x.png -------------------------------------------------------------------------------- /28-FilterSample/src/winui/FilterSample.Droid/Resources/drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/28-FilterSample/src/winui/FilterSample.Droid/Resources/drawable/Icon.png -------------------------------------------------------------------------------- /28-FilterSample/src/winui/FilterSample.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/28-FilterSample/src/winui/FilterSample.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /28-FilterSample/src/winui/FilterSample.iOS/Resources/SplashScreen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/28-FilterSample/src/winui/FilterSample.iOS/Resources/SplashScreen@2x.png -------------------------------------------------------------------------------- /28-FilterSample/src/winui/FilterSample.iOS/Resources/SplashScreen@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/28-FilterSample/src/winui/FilterSample.iOS/Resources/SplashScreen@3x.png -------------------------------------------------------------------------------- /29-MultipleFilters/src/winui/MultipleFilters.Wasm/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/29-MultipleFilters/src/winui/MultipleFilters.Wasm/Assets/SplashScreen.png -------------------------------------------------------------------------------- /32-PolygonBinding/src/uwp-uno/PolygonBinding.Wasm/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/32-PolygonBinding/src/uwp-uno/PolygonBinding.Wasm/Assets/SplashScreen.png -------------------------------------------------------------------------------- /33-PolygonBinding2/src/winui/PolygonBinding2.Wasm/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/33-PolygonBinding2/src/winui/PolygonBinding2.Wasm/Assets/SplashScreen.png -------------------------------------------------------------------------------- /34-PolygonBinding3/src/winui/PolygonBinding3.Wasm/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/34-PolygonBinding3/src/winui/PolygonBinding3.Wasm/Assets/SplashScreen.png -------------------------------------------------------------------------------- /35-CommonQuestions/src/winui/CommonQuestions.Wasm/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/35-CommonQuestions/src/winui/CommonQuestions.Wasm/Assets/SplashScreen.png -------------------------------------------------------------------------------- /37-PlanetsListBox/src/uwp-uno/PlanetsListBox.Wasm/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/37-PlanetsListBox/src/uwp-uno/PlanetsListBox.Wasm/Assets/SplashScreen.png -------------------------------------------------------------------------------- /37-PlanetsListBox/src/wpf/DataBindingPresenter/Images/screenShotBlend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/37-PlanetsListBox/src/wpf/DataBindingPresenter/Images/screenShotBlend.png -------------------------------------------------------------------------------- /38-UpdateExplicit/src/uwp-uno/UpdateExplicit.Wasm/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/38-UpdateExplicit/src/uwp-uno/UpdateExplicit.Wasm/Assets/SplashScreen.png -------------------------------------------------------------------------------- /42-WPFPresenter/src/winui/WPFPresenter.Droid/Resources/drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/42-WPFPresenter/src/winui/WPFPresenter.Droid/Resources/drawable/Icon.png -------------------------------------------------------------------------------- /42-WPFPresenter/src/winui/WPFPresenter.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/42-WPFPresenter/src/winui/WPFPresenter.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /42-WPFPresenter/src/winui/WPFPresenter.iOS/Resources/SplashScreen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/42-WPFPresenter/src/winui/WPFPresenter.iOS/Resources/SplashScreen@2x.png -------------------------------------------------------------------------------- /42-WPFPresenter/src/winui/WPFPresenter.iOS/Resources/SplashScreen@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/42-WPFPresenter/src/winui/WPFPresenter.iOS/Resources/SplashScreen@3x.png -------------------------------------------------------------------------------- /43-BindToXLinq/src/uwp-uno/BindToXLinq.Droid/Resources/drawable/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/43-BindToXLinq/src/uwp-uno/BindToXLinq.Droid/Resources/drawable/Icon.png -------------------------------------------------------------------------------- /43-BindToXLinq/src/uwp-uno/BindToXLinq.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/43-BindToXLinq/src/uwp-uno/BindToXLinq.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /43-BindToXLinq/src/uwp-uno/BindToXLinq.iOS/Resources/SplashScreen@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/43-BindToXLinq/src/uwp-uno/BindToXLinq.iOS/Resources/SplashScreen@2x.png -------------------------------------------------------------------------------- /43-BindToXLinq/src/uwp-uno/BindToXLinq.iOS/Resources/SplashScreen@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/43-BindToXLinq/src/uwp-uno/BindToXLinq.iOS/Resources/SplashScreen@3x.png -------------------------------------------------------------------------------- /46-DragDropListBox/src/winui/DragDropListBox.Wasm/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/46-DragDropListBox/src/winui/DragDropListBox.Wasm/Assets/SplashScreen.png -------------------------------------------------------------------------------- /56-PieChartWithLabelsSilverlight/src/uwp-uno/PieChartWithLabelsSilverlight.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace PieChartWithLabelsSilverlight.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /56-PieChartWithLabelsSilverlight/src/winui/PieChartWithLabelsSilverlight.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace PieChartWithLabelsSilverlight.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /58-MultipleStyles/src/uwp-uno/MultipleStyles.Wasm/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/58-MultipleStyles/src/uwp-uno/MultipleStyles.Wasm/Assets/SplashScreen.png -------------------------------------------------------------------------------- /66-SortingHierarchy/src/uwp-uno/SortingHierarchy.UWP/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nickrandolph/old-wpf-blog/HEAD/66-SortingHierarchy/src/uwp-uno/SortingHierarchy.UWP/Assets/StoreLogo.png -------------------------------------------------------------------------------- /69-BindRadioButtonsToEnumsPart1/src/uwp-uno/BindRadioButtonsToEnumsPart1.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace BindRadioButtonsToEnumsPart1.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /70-BindRadioButtonsToEnumsPart2/src/uwp-uno/BindRadioButtonsToEnumsPart2.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace BindRadioButtonsToEnumsPart2.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /71-BindRadioButtonsToEnumsPart3/src/uwp-uno/BindRadioButtonsToEnumsPart3.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace BindRadioButtonsToEnumsPart3.macOS 5 | { 6 | 7 | } 8 | -------------------------------------------------------------------------------- /72-BindRadioButtonsToEnumsPart4/src/uwp-uno/BindRadioButtonsToEnumsPart4.macOS/AppDelegate.cs: -------------------------------------------------------------------------------- 1 | using AppKit; 2 | using Foundation; 3 | 4 | namespace BindRadioButtonsToEnumsPart4.macOS 5 | { 6 | 7 | } 8 | --------------------------------------------------------------------------------