├── 01-DataContext ├── DataContextSample │ ├── DataContextSample.sln │ ├── DataContextSample.suo │ └── DataContextSample │ │ ├── DataContextSample.csproj │ │ ├── DataContextSample.csproj.user │ │ ├── GreekGod.cs │ │ ├── MyApp.xaml │ │ ├── MyApp.xaml.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.cs │ │ ├── Resources.resx │ │ ├── Settings.cs │ │ └── Settings.settings │ │ ├── Window1.xaml │ │ └── Window1.xaml.cs ├── Images │ └── DataContext.PNG └── README.md ├── 02-EmptyBinding ├── EmptyBinding │ ├── EmptyBinding.sln │ ├── EmptyBinding.suo │ └── EmptyBinding │ │ ├── EmptyBinding.csproj │ │ ├── EmptyBinding.csproj.user │ │ ├── GreekGod.cs │ │ ├── MyApp.xaml │ │ ├── MyApp.xaml.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.cs │ │ ├── Resources.resx │ │ ├── Settings.cs │ │ └── Settings.settings │ │ ├── Window1.xaml │ │ └── Window1.xaml.cs ├── Images │ └── EmptyBinding.png └── README.md ├── 03-GetListBoxItem ├── GetListBoxItem - Silverlight3 │ └── GetListBoxItem │ │ ├── GetListBoxItem.sln │ │ ├── GetListBoxItem.suo │ │ └── GetListBoxItem │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── GetListBoxItem.csproj │ │ ├── GetListBoxItem.csproj.user │ │ ├── GreekGod.cs │ │ ├── GreekGods.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ └── Properties │ │ ├── AppManifest.xml │ │ └── AssemblyInfo.cs ├── GetListBoxItem - VS2008 │ └── GetListBoxItem │ │ ├── GetListBoxItem.sln │ │ ├── GetListBoxItem.suo │ │ └── GetListBoxItem │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── GetListBoxItem.csproj │ │ ├── GreekGod.cs │ │ ├── GreekGods.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── Window1.xaml │ │ └── Window1.xaml.cs ├── GetListBoxItem │ ├── GetListBoxItem.sln │ ├── GetListBoxItem.suo │ └── GetListBoxItem │ │ ├── GetListBoxItem.csproj │ │ ├── GetListBoxItem.csproj.user │ │ ├── GreekGod.cs │ │ ├── GreekGods.cs │ │ ├── MyApp.xaml │ │ ├── MyApp.xaml.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.cs │ │ ├── Resources.resx │ │ ├── Settings.cs │ │ └── Settings.settings │ │ ├── Window1.xaml │ │ └── Window1.xaml.cs ├── Images │ └── GetListBoxItem.png └── README.md ├── 04-BindToComboBox ├── BindToComboBox │ ├── BindToComboBox.sln │ ├── BindToComboBox.suo │ └── BindToComboBox │ │ ├── BindToComboBox.csproj │ │ ├── BindToComboBox.csproj.user │ │ ├── GreekGod.cs │ │ ├── GreekGods.cs │ │ ├── MyApp.xaml │ │ ├── MyApp.xaml.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.cs │ │ ├── Resources.resx │ │ ├── Settings.cs │ │ └── Settings.settings │ │ ├── Window1.xaml │ │ └── Window1.xaml.cs ├── Images │ └── BindToComboBox.png └── README.md ├── 05-DisplayMemberPath ├── DisplayMemberPathSample - Orcas Beta 2 │ ├── DisplayMemberPathSample.csproj │ ├── DisplayMemberPathSample.csproj.user │ ├── DisplayMemberPathSample.sln │ ├── DisplayMemberPathSample.suo │ ├── GreekGod.cs │ ├── GreekGods.cs │ ├── MyApp.xaml │ ├── MyApp.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Window1.xaml │ └── Window1.xaml.cs ├── DisplayMemberPathSample │ ├── DisplayMemberPathSample.sln │ ├── DisplayMemberPathSample.suo │ ├── DisplayMemberPathSample │ │ ├── DisplayMemberPathSample.csproj │ │ ├── DisplayMemberPathSample.csproj.user │ │ ├── DisplayMemberPathSample.sln │ │ ├── DisplayMemberPathSample.suo │ │ ├── DisplayMemberPathSample │ │ │ ├── DisplayMemberPathSample.csproj │ │ │ ├── DisplayMemberPathSample.csproj.user │ │ │ ├── GreekGod.cs │ │ │ ├── GreekGods.cs │ │ │ ├── MyApp.xaml │ │ │ ├── MyApp.xaml.cs │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── Settings.cs │ │ │ │ └── Settings.settings │ │ │ ├── Window1.xaml │ │ │ └── Window1.xaml.cs │ │ ├── GreekGod.cs │ │ ├── GreekGods.cs │ │ ├── MyApp.xaml │ │ ├── MyApp.xaml.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.cs │ │ │ └── Settings.settings │ │ ├── Window1.xaml │ │ └── Window1.xaml.cs │ └── Visual Studio 2005 │ │ └── settings │ │ └── currentsettings.vssettings ├── Images │ └── DisplayMemberPathSample.png ├── README.md └── visual studio 2005 │ └── settings │ └── currentsettings.vssettings ├── 06-SelectedValue ├── Images │ └── SelectedValueSample.png ├── README.md └── SelectedValueSample │ ├── SelectedValueSample.sln │ ├── SelectedValueSample.suo │ └── SelectedValueSample │ ├── GreekGod.cs │ ├── GreekGods.cs │ ├── MyApp.xaml │ ├── MyApp.xaml.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.cs │ ├── Resources.resx │ ├── Settings.cs │ └── Settings.settings │ ├── SelectedValueSample.csproj │ ├── SelectedValueSample.csproj.user │ ├── Window1.xaml │ └── Window1.xaml.cs ├── 07-ChangePanelItemsControl ├── ChangePanelItemsControl │ ├── ChangePanelItemsControl.sln │ ├── ChangePanelItemsControl.suo │ └── ChangePanelItemsControl │ │ ├── ChangePanelItemsControl.csproj │ │ ├── ChangePanelItemsControl.csproj.user │ │ ├── MyApp.xaml │ │ ├── MyApp.xaml.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.cs │ │ ├── Resources.resx │ │ ├── Settings.cs │ │ └── Settings.settings │ │ ├── Window1.xaml │ │ └── Window1.xaml.cs ├── Images │ └── ChangePanelItemsControl.png └── README.md ├── 08-BarGraph ├── BarGraph │ ├── BarGraph.sln │ ├── BarGraph.suo │ └── BarGraph │ │ ├── BarGraph.csproj │ │ ├── BarGraph.csproj.user │ │ ├── DataSource.cs │ │ ├── MyApp.xaml │ │ ├── MyApp.xaml.cs │ │ ├── Window1.xaml │ │ └── Window1.xaml.cs ├── Images │ └── 8BarGraph.png └── README.md ├── 09-CollectionViewSourceSample ├── CollectionViewSourceSample │ ├── CollectionViewSourceSample.sln │ ├── CollectionViewSourceSample.suo │ └── CollectionViewSourceSample │ │ ├── CollectionViewSourceSample.csproj │ │ ├── CollectionViewSourceSample.csproj.user │ │ ├── GreekGod.cs │ │ ├── GreekGods.cs │ │ ├── MyApp.xaml │ │ ├── MyApp.xaml.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.cs │ │ ├── Resources.resx │ │ ├── Settings.cs │ │ └── Settings.settings │ │ ├── Window1.xaml │ │ └── Window1.xaml.cs ├── Images │ └── 9CollectionViewSourceSample.png └── README.md ├── 10-MasterDetail ├── Images │ └── 10MasterDetail.png ├── MasterDetail │ ├── 2moons_2.gif │ ├── MasterDetail.csproj │ ├── MasterDetail.csproj.user │ ├── MasterDetail.sln │ ├── MasterDetail.suo │ ├── MyApp.xaml │ ├── MyApp.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.cs │ │ ├── Resources.resx │ │ ├── Settings.cs │ │ └── Settings.settings │ ├── Window1.xaml │ ├── Window1.xaml.cs │ ├── earglobe.gif │ ├── jupglobe.gif │ ├── marglobe.gif │ ├── merglobe.gif │ ├── nepglobe.gif │ ├── plutoch_2.gif │ ├── uraglobe.gif │ └── venglobe.gif └── README.md ├── 11-MasterDetailThreeLevels ├── Images │ └── 11MasterDetailThreeLevels.png ├── MasterDetailThreeLevel - .NET 3.5 │ └── MasterDetailThreeLevels │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── DataSource.cs │ │ ├── MasterDetailThreeLevels.csproj │ │ ├── MasterDetailThreeLevels.sln │ │ ├── MasterDetailThreeLevels.suo │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── Window1.xaml │ │ └── Window1.xaml.cs ├── MasterDetailThreeLevels │ ├── MasterDetailThreeLevels.sln │ ├── MasterDetailThreeLevels.suo │ └── MasterDetailThreeLevels │ │ ├── DataSource.cs │ │ ├── MasterDetailThreeLevels.csproj │ │ ├── MasterDetailThreeLevels.csproj.user │ │ ├── MyApp.xaml │ │ ├── MyApp.xaml.cs │ │ ├── Properties │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── Window1.xaml │ │ └── Window1.xaml.cs ├── MasterDetailThreeLevelsXml │ ├── MasterDetailThreeLevelsXml.csproj │ ├── MasterDetailThreeLevelsXml.sln │ ├── MasterDetailThreeLevelsXml.suo │ ├── MyApp.xaml │ ├── MyApp.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.cs │ │ ├── Resources.resx │ │ ├── Settings.cs │ │ └── Settings.settings │ ├── Window1.xaml │ └── Window1.xaml.cs └── README.md ├── 12-DataBoundDialogBox ├── DataBoundDialogBox - 3.5 SP1 │ └── DataBoundDialogBox │ │ ├── DataBoundDialogBox.sln │ │ ├── DataBoundDialogBox.suo │ │ └── DataBoundDialogBox │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── DataBoundDialogBox.csproj │ │ ├── DataSource.cs │ │ ├── Dialog1.xaml │ │ ├── Dialog1.xaml.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── Window1.xaml │ │ └── Window1.xaml.cs ├── DataBoundDialogBox │ ├── DataBoundDialogBox.csproj │ ├── DataBoundDialogBox.sln │ ├── DataBoundDialogBox.suo │ ├── DataSource.cs │ ├── Dialog1.xaml │ ├── Dialog1.xaml.cs │ ├── MyApp.xaml │ ├── MyApp.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Window1.xaml │ └── Window1.xaml.cs ├── Images │ └── DataBoundDialogBox.png └── README.md ├── 13-TemplatingItems ├── Images │ └── 13TemplatingItems.png ├── README.md └── TemplatingItems │ ├── TemplatingItems.sln │ ├── TemplatingItems.suo │ └── TemplatingItems │ ├── MyApp.xaml │ ├── MyApp.xaml.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.cs │ ├── Resources.resx │ ├── Settings.cs │ └── Settings.settings │ ├── TemplatingItems.csproj │ ├── TemplatingItems.csproj.user │ ├── Window1.xaml │ └── Window1.xaml.cs ├── 14-SortingGroups ├── Images │ └── 14SortingGroups.png ├── README.md ├── SortingGroups - Orcas Beta 2 │ ├── DataSource.cs │ ├── MyApp.xaml │ ├── MyApp.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── SortingGroups.csproj │ ├── SortingGroups.sln │ ├── SortingGroups.suo │ ├── Window1.xaml │ └── Window1.xaml.cs └── SortingGroups │ ├── DataSource.cs │ ├── MyApp.xaml │ ├── MyApp.xaml.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.cs │ ├── Resources.resx │ ├── Settings.cs │ └── Settings.settings │ ├── SortingGroups.csproj │ ├── SortingGroups.sln │ ├── SortingGroups.suo │ ├── Window1.xaml │ └── Window1.xaml.cs ├── 15-GroupingTreeView ├── 15GroupingTreeView - Orcas Beta 2 │ ├── DataSource.cs │ ├── GroupingTreeView.5.0.resharper.user │ ├── GroupingTreeView.csproj │ ├── GroupingTreeView.sln │ ├── GroupingTreeView.suo │ ├── MyApp.xaml │ ├── MyApp.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Window1.xaml │ └── Window1.xaml.cs ├── 15GroupingTreeView │ ├── DataSource.cs │ ├── GroupingTreeView.csproj │ ├── GroupingTreeView.sln │ ├── GroupingTreeView.suo │ ├── MyApp.xaml │ ├── MyApp.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.cs │ │ ├── Resources.resx │ │ ├── Settings.cs │ │ └── Settings.settings │ ├── Window1.xaml │ └── Window1.xaml.cs ├── Images │ └── 15GroupingTreeView.png └── README.md ├── 16-GroupByType ├── GroupByType │ ├── GroupByType.csproj │ ├── GroupByType.sln │ ├── GroupByType.suo │ ├── MyApp.xaml │ ├── MyApp.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.cs │ │ ├── Resources.resx │ │ ├── Settings.cs │ │ └── Settings.settings │ ├── Window1.xaml │ └── Window1.xaml.cs ├── Images │ └── 16GroupByType.png └── README.md ├── 17-BoundListView ├── BoundListView - Orcas Beta 2 │ ├── 2moons_2.gif │ ├── BoundListView.csproj │ ├── BoundListView.sln │ ├── BoundListView.suo │ ├── MyApp.xaml │ ├── MyApp.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Window1.xaml │ ├── Window1.xaml.cs │ ├── earglobe.gif │ ├── jupglobe.gif │ ├── marglobe.gif │ ├── merglobe.gif │ ├── nepglobe.gif │ ├── planetx.jpg │ ├── plutoch_2.gif │ ├── uraglobe.gif │ └── venglobe.gif ├── BoundListView │ ├── 2moons_2.gif │ ├── BoundListView.csproj │ ├── BoundListView.sln │ ├── BoundListView.suo │ ├── MyApp.xaml │ ├── MyApp.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.cs │ │ ├── Resources.resx │ │ ├── Settings.cs │ │ └── Settings.settings │ ├── Window1.xaml │ ├── Window1.xaml.cs │ ├── earglobe.gif │ ├── jupglobe.gif │ ├── marglobe.gif │ ├── merglobe.gif │ ├── nepglobe.gif │ ├── planetx.jpg │ ├── plutoch_2.gif │ ├── uraglobe.gif │ └── venglobe.gif ├── Images │ └── BoundListView.png └── README.md ├── 18-ThreeLevelMasterDetailADO ├── Images │ └── ThreeLevelMasterDetailADO.png ├── README.md ├── ThreeLevelMasterDetailADO - 3.5 RTM │ └── ThreeLevelMasterDetailADO │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── SkiMountains.mdb │ │ ├── ThreeLevelMasterDetailADO.csproj │ │ ├── ThreeLevelMasterDetailADO.sln │ │ ├── ThreeLevelMasterDetailADO.suo │ │ ├── Window1.xaml │ │ └── Window1.xaml.cs └── ThreeLevelMasterDetailADO │ ├── MyApp.xaml │ ├── MyApp.xaml.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.cs │ ├── Resources.resx │ ├── Settings.cs │ └── Settings.settings │ ├── SkiMountains.mdb │ ├── ThreeLevelMasterDetailADO.csproj │ ├── ThreeLevelMasterDetailADO.sln │ ├── ThreeLevelMasterDetailADO.suo │ ├── Window1.xaml │ └── Window1.xaml.cs ├── 19-ObjectDataProviderSample ├── Images │ └── 19ObjectDataProviderSample.png ├── ObjectDataProviderSample │ ├── MyApp.xaml │ ├── MyApp.xaml.cs │ ├── ObjectDataProviderSample.csproj │ ├── ObjectDataProviderSample.sln │ ├── ObjectDataProviderSample.suo │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.cs │ │ ├── Resources.resx │ │ ├── Settings.cs │ │ └── Settings.settings │ ├── Window1.xaml │ └── Window1.xaml.cs └── README.md ├── 20-InsertingSeparators ├── Images │ └── 20InsertingSeparators.png ├── InsertingSeparators - Orcas Beta 2 │ ├── InsertingSeparators.csproj │ ├── InsertingSeparators.sln │ ├── InsertingSeparators.suo │ ├── MyApp.xaml │ ├── MyApp.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── UpgradeLog.XML │ ├── Window1.xaml │ └── Window1.xaml.cs ├── InsertingSeparators │ ├── InsertingSeparators.csproj │ ├── InsertingSeparators.sln │ ├── InsertingSeparators.suo │ ├── MyApp.xaml │ ├── MyApp.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.cs │ │ ├── Resources.resx │ │ ├── Settings.cs │ │ └── Settings.settings │ ├── Window1.xaml │ └── Window1.xaml.cs └── README.md ├── 21-CustomSorting ├── CustomSorting │ ├── CustomSorting.csproj │ ├── CustomSorting.sln │ ├── CustomSorting.suo │ ├── MyApp.xaml │ ├── MyApp.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.cs │ │ ├── Resources.resx │ │ ├── Settings.cs │ │ └── Settings.settings │ ├── Window1.xaml │ └── Window1.xaml.cs ├── Images │ └── 21CustomSorting.png └── README.md ├── 24-AsynchronousBinding ├── AsynchronousBinding │ ├── AsynchronousBinding.csproj │ ├── AsynchronousBinding.sln │ ├── AsynchronousBinding.suo │ ├── MyApp.xaml │ ├── MyApp.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.cs │ │ ├── Resources.resx │ │ ├── Settings.cs │ │ └── Settings.settings │ ├── Window1.xaml │ └── Window1.xaml.cs ├── Images │ └── 24AsynchronousBinding.png └── README.md ├── 25-BindToEnum ├── BindToEnum │ ├── App.xaml │ ├── App.xaml.cs │ ├── BindToEnum.csproj │ ├── BindToEnum.sln │ ├── BindToEnum.suo │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.cs │ │ ├── Resources.resx │ │ ├── Settings.cs │ │ └── Settings.settings │ ├── Window1.xaml │ └── Window1.xaml.cs ├── Images │ └── 25BindToEnum.png └── README.md ├── 26-DataTriggerSample ├── DataTriggerSample │ ├── App.xaml │ ├── App.xaml.cs │ ├── DataTriggerSample.csproj │ ├── DataTriggerSample.sln │ ├── DataTriggerSample.suo │ ├── Pictures │ │ ├── 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 │ │ └── Thumbs.db │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Window1.xaml │ └── Window1.xaml.cs ├── Images │ └── 26DataTriggerSample.png └── README.md ├── 27-ConvertXaml ├── ConvertXaml │ └── ConvertXaml │ │ ├── ConvertXaml.sln │ │ ├── ConvertXaml.suo │ │ └── ConvertXaml │ │ ├── ConvertXaml.csproj │ │ ├── ConvertXaml.csproj.user │ │ ├── MyApp.xaml │ │ ├── MyApp.xaml.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.cs │ │ ├── Resources.resx │ │ ├── Settings.cs │ │ └── Settings.settings │ │ ├── Window1.xaml │ │ ├── Window1.xaml.cs │ │ └── XamlConverter.cs └── README.md ├── 28-FilterSample ├── FilterSample │ ├── App.xaml │ ├── App.xaml.cs │ ├── FilterSample.csproj │ ├── FilterSample.sln │ ├── FilterSample.suo │ ├── GreekGod.cs │ ├── GreekGods.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.cs │ │ ├── Resources.resx │ │ ├── Settings.cs │ │ └── Settings.settings │ ├── Window1.xaml │ └── Window1.xaml.cs ├── Images │ └── 28FilterSample.png └── README.md ├── 29-MultipleFilters ├── Images │ └── 29MultipleFilters.png ├── MultipleFilters │ ├── App.xaml │ ├── App.xaml.cs │ ├── MultipleFilters.csproj │ ├── MultipleFilters.sln │ ├── MultipleFilters.suo │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.cs │ │ ├── Resources.resx │ │ ├── Settings.cs │ │ └── Settings.settings │ ├── Window1.xaml │ └── Window1.xaml.cs └── README.md ├── 30-MultiBindingConverter ├── Images │ └── 30MultiBindingConverter.png ├── MultiBindingConverter │ ├── App.xaml │ ├── App.xaml.cs │ ├── MultiBindingConverter.csproj │ ├── MultiBindingConverter.sln │ ├── MultiBindingConverter.suo │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.cs │ │ ├── Resources.resx │ │ ├── Settings.cs │ │ └── Settings.settings │ ├── Window1.xaml │ └── Window1.xaml.cs └── README.md ├── 31-ChangesMultithreading ├── ChangesMultithreading │ ├── App.xaml │ ├── App.xaml.cs │ ├── ChangesMultithreading.csproj │ ├── ChangesMultithreading.sln │ ├── ChangesMultithreading.suo │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.cs │ │ ├── Resources.resx │ │ ├── Settings.cs │ │ └── Settings.settings │ ├── Window1.xaml │ └── Window1.xaml.cs ├── Images │ └── 31ChangesMultithreading.png └── README.md ├── 32-PolygonBinding ├── Images │ └── 32PolygonBinding.png ├── PolygonBinding │ ├── App.xaml │ ├── App.xaml.cs │ ├── PolygonBinding.csproj │ ├── PolygonBinding.sln │ ├── PolygonBinding.suo │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.cs │ │ ├── Resources.resx │ │ ├── Settings.cs │ │ └── Settings.settings │ ├── Window1.xaml │ └── Window1.xaml.cs └── README.md ├── 33-PolygonBinding2 ├── Images │ └── 33PolygonBinding2.png ├── PolygonBinding │ ├── App.xaml │ ├── App.xaml.cs │ ├── PointCollectionConnectorExtension.cs │ ├── PolygonBinding.csproj │ ├── PolygonBinding.sln │ ├── PolygonBinding.suo │ ├── PolygonItem.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Window1.xaml │ └── Window1.xaml.cs └── README.md ├── 34-PolygonBinding3 ├── Images │ └── TechEdBarcelona.GIF ├── PolygonBinding3 │ ├── PolygonBinding.sln │ ├── PolygonBinding.suo │ └── PolygonBinding │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── PointCollectionConverter.cs │ │ ├── PolygonBinding.csproj │ │ ├── PolygonItem.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.cs │ │ ├── Resources.resx │ │ ├── Settings.cs │ │ └── Settings.settings │ │ ├── Window1.xaml │ │ └── Window1.xaml.cs └── README.md ├── 35-CommonQuestions ├── CommonQuestions │ ├── App.xaml │ ├── App.xaml.cs │ ├── CommonQuestions.csproj │ ├── CommonQuestions.sln │ ├── CommonQuestions.suo │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.cs │ │ ├── Resources.resx │ │ ├── Settings.cs │ │ └── Settings.settings │ ├── Window1.xaml │ └── Window1.xaml.cs └── README.md ├── 36-ADOIndependentView ├── ADOIndependentView │ ├── ADOIndependentView.csproj │ ├── ADOIndependentView.sln │ ├── ADOIndependentView.suo │ ├── App.xaml │ ├── App.xaml.cs │ ├── IndiaSacredRivers.mdb │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.cs │ │ ├── Resources.resx │ │ ├── Settings.cs │ │ └── Settings.settings │ ├── Window1.xaml │ └── Window1.xaml.cs ├── Images │ └── 36ADOIndependentView.png └── README.md ├── 37-PlanetsListBox ├── DataBindingPresenter │ ├── 01Title.xaml │ ├── 01Title.xaml.cs │ ├── 02WhatIsDataBinding.xaml │ ├── 02WhatIsDataBinding.xaml.cs │ ├── 03SimpleBinding.xaml │ ├── 03SimpleBinding.xaml.cs │ ├── 04PropertyChangeNotifications.xaml │ ├── 04PropertyChangeNotifications.xaml.cs │ ├── 05BindToCollections.xaml │ ├── 05BindToCollections.xaml.cs │ ├── 06DataTemplateDiagram.xaml │ ├── 06DataTemplateDiagram.xaml.cs │ ├── 07FancyDataTemplate.xaml │ ├── 07FancyDataTemplate.xaml.cs │ ├── 08MasterDetail.xaml │ ├── 08MasterDetail.xaml.cs │ ├── 09Views.xaml │ ├── 09Views.xaml.cs │ ├── 10TipsDataBinding.xaml │ ├── 10TipsDataBinding.xaml.cs │ ├── 11Questions.xaml │ ├── 11Questions.xaml.cs │ ├── App.xaml │ ├── App.xaml.cs │ ├── Application.ico │ ├── AssemblyInfo.cs │ ├── ConvertKmToM.cs │ ├── ConvertOrbit.cs │ ├── Images │ │ ├── 2moons_2.gif │ │ ├── Bea.jpg │ │ ├── Kevin.jpg │ │ ├── earglobe.gif │ │ ├── jupglobe.gif │ │ ├── marglobe.gif │ │ ├── merglobe.gif │ │ ├── nepglobe.gif │ │ ├── planetx.jpg │ │ ├── plutoch_2.gif │ │ ├── screenShotBlend.png │ │ ├── sun.jpg │ │ ├── uraglobe.gif │ │ └── venglobe.gif │ ├── MinMaxValidationRule.cs │ ├── Page1.xaml │ ├── PooSniffer.xaml │ ├── Presentation.cs │ ├── Presenter.csproj │ ├── Presenter.sln │ ├── Presenter.suo │ ├── Saturn.cs │ ├── SolarSystem.cs │ ├── SolarSystemObject.cs │ ├── Window1.xaml │ └── Window1.xaml.cs ├── Images │ ├── 37PlanetsListBox1.PNG │ └── 37PlanetsListBox2.PNG ├── PlanetsListBox │ ├── App.xaml │ ├── App.xaml.cs │ ├── ConvertOrbit.cs │ ├── Images │ │ ├── 2moons_2.gif │ │ ├── earglobe.gif │ │ ├── jupglobe.gif │ │ ├── marglobe.gif │ │ ├── merglobe.gif │ │ ├── nepglobe.gif │ │ ├── planetx.jpg │ │ ├── plutoch_2.gif │ │ ├── sun.jpg │ │ ├── uraglobe.gif │ │ └── venglobe.gif │ ├── PlanetsListBox.csproj │ ├── PlanetsListBox.sln │ ├── PlanetsListBox.suo │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.cs │ │ ├── Resources.resx │ │ ├── Settings.cs │ │ └── Settings.settings │ ├── SolarSystem.cs │ ├── SolarSystemObject.cs │ ├── Window1.xaml │ └── Window1.xaml.cs └── README.md ├── 38-UpdateExplicit ├── 38UpdateExplicit - Orcas Beta 2 │ ├── App.xaml │ ├── App.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── UpdateExplicit.csproj │ ├── UpdateExplicit.sln │ ├── UpdateExplicit.suo │ ├── Window1.xaml │ └── Window1.xaml.cs ├── 38UpdateExplicit │ ├── App.xaml │ ├── App.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.cs │ │ ├── Resources.resx │ │ ├── Settings.cs │ │ └── Settings.settings │ ├── UpdateExplicit.csproj │ ├── UpdateExplicit.sln │ ├── UpdateExplicit.suo │ ├── Window1.xaml │ └── Window1.xaml.cs ├── Images │ ├── 38UpdateExplicit.PNG │ └── 38mix.bmp └── README.md ├── 39-TreeViewPerformancePart1 ├── Images │ ├── 39TreeViewPerformance11.png │ ├── 39TreeViewPerformance12.png │ └── 39TreeViewPerformance13.png ├── README.md └── TreeViewPerformance1 │ ├── App.xaml │ ├── App.xaml.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── TreeViewPerformance.csproj │ ├── TreeViewPerformance.sln │ ├── TreeViewPerformance.suo │ ├── Window1.xaml │ └── Window1.xaml.cs ├── 40-TreeViewPerformancePart2 ├── Images │ ├── 40TreeViewPerformance21.png │ └── 40TreeViewPerformance22.png ├── README.md └── TreeViewPerformance │ ├── App.xaml │ ├── App.xaml.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── TreeViewPerformance.csproj │ ├── TreeViewPerformance.sln │ ├── TreeViewPerformance.suo │ ├── Window1.xaml │ └── Window1.xaml.cs ├── 41-TreeViewPerformancePart3 ├── Images │ └── TreeViewPerformance.png ├── README.md └── TreeViewPerformance │ ├── App.xaml │ ├── App.xaml.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── TreeViewPerformance.csproj │ ├── TreeViewPerformance.sln │ ├── TreeViewPerformance.suo │ ├── Window1.xaml │ └── Window1.xaml.cs ├── 42-WPFPresenter ├── Images │ └── 42WPFPresenter.jpg ├── README.md └── WPFPresenter │ ├── 01Title.xaml │ ├── 01Title.xaml.cs │ ├── 02Slide.xaml │ ├── 02Slide.xaml.cs │ ├── 03Slide.xaml │ ├── 03Slide.xaml.cs │ ├── App.xaml │ ├── App.xaml.cs │ ├── Presentation.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── WPFPresenter.csproj │ ├── WPFPresenter.sln │ ├── WPFPresenter.sln.cache │ ├── WPFPresenter.suo │ ├── Window1.xaml │ └── Window1.xaml.cs ├── 43-BindToXLinq ├── BindToXLinq │ ├── App.xaml │ ├── App.xaml.cs │ ├── BindToXLinq.csproj │ ├── BindToXLinq.sln │ ├── BindToXLinq.suo │ ├── Planets.xml │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Window1.xaml │ └── Window1.xaml.cs ├── Images │ └── 43BindToLinq.png └── README.md ├── 44-XLinqXMLMasterDetail ├── Images │ └── 44XLinqXMLMasterDetail.png ├── README.md └── XLinqXMLMasterDetail │ ├── App.xaml │ ├── App.xaml.cs │ ├── Mountains.xml │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── SolarSystemPlanets.xml │ ├── Window1.xaml │ ├── Window1.xaml.cs │ ├── XLinqXMLMasterDetail.csproj │ ├── XLinqXMLMasterDetail.sln │ └── XLinqXMLMasterDetail.suo ├── 45-DebuggingDataBinding ├── DebuggingDataBinding │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── DebuggingDataBinding.csproj │ ├── DebuggingDataBinding.sln │ ├── DebuggingDataBinding.suo │ ├── Images │ │ └── sun.jpg │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Window1.xaml │ └── Window1.xaml.cs └── README.md ├── 46-DragDropListBox ├── DragDropListBox │ ├── App.xaml │ ├── App.xaml.cs │ ├── DataSource.cs │ ├── DragDropHelper.cs │ ├── DragDropListBox.5.0.resharper.user │ ├── DragDropListBox.csproj │ ├── DragDropListBox.sln │ ├── DragDropListBox.suo │ ├── DraggedAdorner.cs │ ├── Images │ │ ├── 2moons_2.gif │ │ ├── earglobe.gif │ │ ├── jupglobe.gif │ │ ├── marglobe.gif │ │ ├── merglobe.gif │ │ ├── nepglobe.gif │ │ ├── planetx.jpg │ │ ├── plutoch_2.gif │ │ ├── sun.jpg │ │ ├── uraglobe.gif │ │ └── venglobe.gif │ ├── InsertionAdorner.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Utilities.cs │ ├── Window1.xaml │ └── Window1.xaml.cs ├── Images │ ├── 46DraggedAdorner.png │ └── 46InsertionAdorner.png ├── OriginalScreenshots │ ├── 46DraggedAdorner.png │ └── 46InsertionAdorner.png └── README.md ├── 47-ExpandTreeViewPart1 ├── ExpandTreeViewSilverlight │ ├── App.xaml │ ├── App.xaml.cs │ ├── DataSource.cs │ ├── ExpandTreeViewSilverlight.csproj │ ├── ExpandTreeViewSilverlight.csproj.user │ ├── ExpandTreeViewSilverlight.sln │ ├── ExpandTreeViewSilverlight.suo │ ├── Page.xaml │ ├── Page.xaml.cs │ ├── Properties │ │ ├── AppManifest.xml │ │ └── AssemblyInfo.cs │ └── SilverlightToolkit │ │ ├── Microsoft.Windows.Controls.DataVisualization.dll │ │ ├── Microsoft.Windows.Controls.Input.dll │ │ ├── Microsoft.Windows.Controls.Theming.dll │ │ └── Microsoft.Windows.Controls.dll ├── ExpandTreeViewWPF - VS 2010 │ ├── App.xaml │ ├── App.xaml.cs │ ├── DataSource.cs │ ├── ExpandTreeViewWPF.csproj │ ├── ExpandTreeViewWPF.csproj.user │ ├── ExpandTreeViewWPF.sln │ ├── ExpandTreeViewWPF.suo │ ├── ExpandTreeViewWPF_TemporaryKey.pfx │ ├── Page1.xaml │ ├── Page1.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ ├── Settings.settings │ │ └── app.manifest │ ├── UpgradeLog.XML │ └── _UpgradeReport_Files │ │ ├── UpgradeReport.css │ │ ├── UpgradeReport.xslt │ │ ├── UpgradeReport_Minus.gif │ │ └── UpgradeReport_Plus.gif ├── ExpandTreeViewWPF │ ├── App.xaml │ ├── App.xaml.cs │ ├── DataSource.cs │ ├── ExpandTreeViewWPF.csproj │ ├── ExpandTreeViewWPF.sln │ ├── ExpandTreeViewWPF.suo │ ├── ExpandTreeViewWPF_TemporaryKey.pfx │ ├── Page1.xaml │ ├── Page1.xaml.cs │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ ├── Settings.settings │ │ └── app.manifest ├── Images │ ├── 47ExpandTreeViewPart1.PNG │ └── 47ExpandTreeViewSilverlight.png └── README.md ├── 48-ExpandTreeViewPart2 ├── ExpandTreeViewSilverlight │ ├── App.xaml │ ├── App.xaml.cs │ ├── DataSource.cs │ ├── ExpandTreeViewSilverlight.csproj │ ├── ExpandTreeViewSilverlight.csproj.user │ ├── ExpandTreeViewSilverlight.sln │ ├── ExpandTreeViewSilverlight.suo │ ├── MyTreeView.cs │ ├── MyTreeViewItem.cs │ ├── Page.xaml │ ├── Page.xaml.cs │ ├── Properties │ │ ├── AppManifest.xml │ │ └── AssemblyInfo.cs │ ├── SilverlightToolkit │ │ ├── Microsoft.Windows.Controls.DataVisualization.dll │ │ ├── Microsoft.Windows.Controls.Input.dll │ │ ├── Microsoft.Windows.Controls.Theming.dll │ │ ├── Microsoft.Windows.Controls.dll │ │ └── Themes │ │ │ ├── Microsoft.Windows.Controls.Theming.ExpressionDark.dll │ │ │ ├── Microsoft.Windows.Controls.Theming.ExpressionLight.dll │ │ │ ├── Microsoft.Windows.Controls.Theming.RainierOrange.dll │ │ │ ├── Microsoft.Windows.Controls.Theming.RainierPurple.dll │ │ │ ├── Microsoft.Windows.Controls.Theming.ShinyBlue.dll │ │ │ ├── Microsoft.Windows.Controls.Theming.ShinyRed.dll │ │ │ └── XAML │ │ │ ├── Microsoft.Windows.Controls.Theming.ExpressionDark.xaml │ │ │ ├── Microsoft.Windows.Controls.Theming.ExpressionLight.xaml │ │ │ ├── Microsoft.Windows.Controls.Theming.RainierOrange.xaml │ │ │ ├── Microsoft.Windows.Controls.Theming.RainierPurple.xaml │ │ │ ├── Microsoft.Windows.Controls.Theming.ShinyBlue.xaml │ │ │ └── Microsoft.Windows.Controls.Theming.ShinyRed.xaml │ └── ViewModel.cs ├── ExpandTreeViewWPF │ ├── App.xaml │ ├── App.xaml.cs │ ├── DataSource.cs │ ├── ExpandTreeViewWPF.csproj │ ├── ExpandTreeViewWPF.sln │ ├── ExpandTreeViewWPF.suo │ ├── ExpandTreeViewWPF_TemporaryKey.pfx │ ├── Page1.xaml │ ├── Page1.xaml.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ ├── Settings.settings │ │ └── app.manifest │ └── ViewModel.cs ├── Images │ ├── 48ExpandTreeViewPart2.PNG │ └── Oredev.jpg └── README.md ├── 49-ExpandTreeViewPart3 ├── ExpandTreeViewSilverlight │ ├── App.xaml │ ├── App.xaml.cs │ ├── DataSource.cs │ ├── ExpandTreeViewSilverlight.csproj │ ├── ExpandTreeViewSilverlight.csproj.user │ ├── ExpandTreeViewSilverlight.sln │ ├── ExpandTreeViewSilverlight.suo │ ├── Page.xaml │ ├── Page.xaml.cs │ ├── Properties │ │ ├── AppManifest.xml │ │ └── AssemblyInfo.cs │ ├── SilverlightToolkit │ │ ├── Microsoft.Windows.Controls.DataVisualization.dll │ │ ├── Microsoft.Windows.Controls.Input.dll │ │ ├── Microsoft.Windows.Controls.Theming.dll │ │ ├── Microsoft.Windows.Controls.dll │ │ └── Themes │ │ │ ├── Microsoft.Windows.Controls.Theming.ExpressionDark.dll │ │ │ ├── Microsoft.Windows.Controls.Theming.ExpressionLight.dll │ │ │ ├── Microsoft.Windows.Controls.Theming.RainierOrange.dll │ │ │ ├── Microsoft.Windows.Controls.Theming.RainierPurple.dll │ │ │ ├── Microsoft.Windows.Controls.Theming.ShinyBlue.dll │ │ │ ├── Microsoft.Windows.Controls.Theming.ShinyRed.dll │ │ │ └── XAML │ │ │ ├── Microsoft.Windows.Controls.Theming.ExpressionDark.xaml │ │ │ ├── Microsoft.Windows.Controls.Theming.ExpressionLight.xaml │ │ │ ├── Microsoft.Windows.Controls.Theming.RainierOrange.xaml │ │ │ ├── Microsoft.Windows.Controls.Theming.RainierPurple.xaml │ │ │ ├── Microsoft.Windows.Controls.Theming.ShinyBlue.xaml │ │ │ └── Microsoft.Windows.Controls.Theming.ShinyRed.xaml │ ├── UpgradeLog.XML │ └── _UpgradeReport_Files │ │ ├── UpgradeReport.css │ │ ├── UpgradeReport.xslt │ │ ├── UpgradeReport_Minus.gif │ │ └── UpgradeReport_Plus.gif ├── ExpandTreeViewWPF │ ├── App.xaml │ ├── App.xaml.cs │ ├── DataSource.cs │ ├── DispatcherHelper.cs │ ├── ExpandTreeViewWPF.5.0.resharper.user │ ├── ExpandTreeViewWPF.csproj │ ├── ExpandTreeViewWPF.sln │ ├── ExpandTreeViewWPF.suo │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Window1.xaml │ └── Window1.xaml.cs ├── Images │ └── 49ExpandTreeViewPart3.PNG └── README.md ├── 51-UIVirtualization └── README.md ├── 52-DataVirtualization ├── DataVirtualization.pdf ├── README.md ├── VirtualizationSilverlight │ ├── VirtualizationSilverlight.sln │ ├── VirtualizationSilverlight.suo │ └── VirtualizationSilverlight │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Paul │ │ ├── AsyncVirtualizingCollection.cs │ │ ├── DemoCustomerProvider.cs │ │ ├── IItemsProvider.cs │ │ ├── PaulsCustomer.cs │ │ └── VirtualizingCollection.cs │ │ ├── Properties │ │ ├── AppManifest.xml │ │ └── AssemblyInfo.cs │ │ ├── VirtualizationSilverlight.csproj │ │ └── VirtualizationSilverlight.csproj.user └── VirtualizationWPF │ ├── VirtualizationWPF.sln │ ├── VirtualizationWPF.suo │ ├── VirtualizationWPF │ ├── App.xaml │ ├── App.xaml.cs │ ├── InstanceCounter.cs │ ├── Page1.xaml │ ├── Page1.xaml.cs │ ├── Paul │ │ ├── AsyncVirtualizingCollection.cs │ │ ├── DemoCustomerProvider.cs │ │ ├── IItemsProvider.cs │ │ ├── PaulsCustomer.cs │ │ └── VirtualizingCollection.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ ├── Settings.settings │ │ └── app.manifest │ ├── Vincent │ │ ├── DataRefBase.cs │ │ ├── VincentsCustomer.cs │ │ ├── VirtualList.cs │ │ ├── VirtualListBase.cs │ │ └── VirtualListCollectionView.cs │ ├── VirtualizationWPF.csproj │ └── VirtualizationWPF_TemporaryKey.pfx │ └── WPF.Themes │ ├── ExpressionDark │ └── Theme.xaml │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── ThemeManager.cs │ └── WPF.Themes.csproj ├── 54-PieChartWithLabels ├── Images │ ├── LabeledPieChartArcMidpoint.png │ ├── LabeledPieChartArcMidpoint1.png │ ├── LabeledPieChartArcMidpoint2.png │ ├── LabeledPieChartAuto.png │ ├── LabeledPieChartAuto1.png │ ├── LabeledPieChartAuto2.png │ ├── LabeledPieChartBasic.png │ ├── LabeledPieChartConnected.png │ ├── LabeledPieChartConnected1.png │ ├── LabeledPieChartConnected2.png │ ├── LabeledPieChartDataTemplate.png │ └── LabeledPieChartModes.design ├── PieChartWithLabels - WPF │ ├── CustomControls │ │ ├── Converters.cs │ │ ├── CustomControls.csproj │ │ ├── LabeledPieChart.cs │ │ ├── PieChartHelper.cs │ │ ├── PieChartLabel.cs │ │ ├── PieChartLabelArea.cs │ │ ├── PieLabelBehavior.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Themes │ │ │ └── Generic.xaml │ │ └── TreeHelper.cs │ ├── PieChartWithLabels.5.0.resharper.user │ ├── PieChartWithLabels.sln │ ├── PieChartWithLabels.suo │ └── PieChartWithLabels │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Page1.xaml │ │ ├── Page1.xaml.cs │ │ ├── PieChartWithLabels.csproj │ │ ├── PieChartWithLabels_TemporaryKey.pfx │ │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ ├── Settings.settings │ │ └── app.manifest └── README.md ├── 55-PieChartWithLabelsSilverlight ├── Images │ ├── LabeledPieChartArcMidpoint.png │ ├── LabeledPieChartArcMidpoint1.png │ ├── LabeledPieChartArcMidpoint2.png │ ├── LabeledPieChartAuto.png │ ├── LabeledPieChartAuto1.png │ ├── LabeledPieChartAuto2.png │ ├── LabeledPieChartBasic.png │ ├── LabeledPieChartConnected.png │ ├── LabeledPieChartConnected1.png │ ├── LabeledPieChartConnected2.png │ └── LabeledPieChartDataTemplate.png └── README.md ├── 56-PieChartWithLabelsSilverlight ├── Images │ └── 56PieChartWithLabelsSilverlight.PNG ├── PieChartWithLabelsSL │ └── PieChartWithLabels - Silverlight │ │ ├── CustomControls │ │ ├── Converters.cs │ │ ├── CustomControls.csproj │ │ ├── CustomControls.csproj.user │ │ ├── FormattedRatioConverter.cs │ │ ├── LabeledPieChart.cs │ │ ├── PieChartHelper.cs │ │ ├── PieChartLabel.cs │ │ ├── PieChartLabelArea.cs │ │ ├── PieLabelBehavior.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Themes │ │ │ └── Generic.xaml │ │ ├── TreeHelper.cs │ │ └── Vector.cs │ │ ├── PieChartWithLabels.5.0.resharper.user │ │ ├── PieChartWithLabels.sln │ │ ├── PieChartWithLabels.suo │ │ └── PieChartWithLabels │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── PieChartWithLabels.csproj │ │ ├── PieChartWithLabels.csproj.user │ │ └── Properties │ │ ├── AppManifest.xml │ │ └── AssemblyInfo.cs └── README.md ├── 57-DataVirtualization ├── DataVirtualization - WPF │ ├── DataVirtualization.sln │ ├── DataVirtualization.suo │ └── DataVirtualization │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AsyncVirtualizingCollection.cs │ │ ├── Customer.cs │ │ ├── DataPage.cs │ │ ├── DataVirtualization.csproj │ │ ├── DataWrapper.cs │ │ ├── DemoCustomerProvider.cs │ │ ├── DynamicAsyncVirtualizingCollection.cs │ │ ├── IItemsProvider.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── VirtualizingCollection.cs │ │ ├── Window1.xaml │ │ └── Window1.xaml.cs └── README.md ├── 58-MultipleStyles ├── Images │ └── MultipleStyles.png ├── MultipleStyles │ ├── App.xaml │ ├── App.xaml.cs │ ├── MultiStyleExtension.cs │ ├── MultipleStyles.csproj │ ├── MultipleStyles.sln │ ├── MultipleStyles.suo │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── StyleExtensionMethods.cs │ ├── Window1.xaml │ └── Window1.xaml.cs └── README.md ├── 59-WPFCollectionViewSource ├── Images │ └── WPFCollectionViewSource.png ├── README.md └── WPFCollectionViewSource │ ├── WPFCollectionViewSource.sln │ ├── WPFCollectionViewSource.suo │ └── WPFCollectionViewSource │ ├── App.xaml │ ├── App.xaml.cs │ ├── DataSource.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── WPFCollectionViewSource.csproj │ ├── Window1.xaml │ └── Window1.xaml.cs ├── 60-SLCollectionViewSource ├── Images │ └── 60SLCollectionViewSource.PNG ├── README.md ├── SLCollectionViewSource.xap ├── SLCollectionViewSource │ ├── SLCollectionViewSource.sln │ ├── SLCollectionViewSource.suo │ └── SLCollectionViewSource │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── DataSource.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties │ │ ├── AppManifest.xml │ │ └── AssemblyInfo.cs │ │ ├── SLCollectionViewSource.csproj │ │ └── SLCollectionViewSource.csproj.user └── TestPage.html ├── 61-OredevComputerWeekly ├── Images │ ├── ComputerWeeklyAwards.bmp │ └── Oredev2009.gif └── README.md ├── 62-DataVirtualizationFiltering ├── DVFilter │ ├── DVFilter.sln │ ├── DVFilter.suo │ ├── DVFilter │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Converter.cs │ │ ├── CustomerProvider.cs │ │ ├── Customers.dbml │ │ ├── Customers.dbml.layout │ │ ├── Customers.designer.cs │ │ ├── DVFilter.csproj │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ └── app.config │ ├── DataVirtualization │ │ ├── AsyncVirtualizingCollection.cs │ │ ├── DataPage.cs │ │ ├── DataVirtualization.csproj │ │ ├── DataWrapper.cs │ │ ├── IItemsProvider.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── VirtualizingCollection.cs │ └── ReusableControls │ │ ├── DateRangePicker.xaml │ │ ├── DateRangePicker.xaml.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ └── ReusableControls.csproj ├── Images │ └── DVFiltering.png ├── InitializeDatabase │ ├── InitializeDatabase.sln │ ├── InitializeDatabase.suo │ └── InitializeDatabase │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Database.cs │ │ ├── DispatcherHelper.cs │ │ ├── ExtensionMethods.cs │ │ ├── FirstNames.txt │ │ ├── InitializeDatabase.csproj │ │ ├── LastNames.txt │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ └── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings └── README.md ├── 64-DataVirtualizationFilteringSorting ├── DVFilterSort │ ├── DVFilterSort.sln │ ├── DVFilterSort.suo │ ├── DVFilterSort │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Converter.cs │ │ ├── CustomerProvider.cs │ │ ├── Customers.dbml │ │ ├── Customers.dbml.layout │ │ ├── Customers.designer.cs │ │ ├── CustomersDataSet.Designer.cs │ │ ├── CustomersDataSet.xsc │ │ ├── CustomersDataSet.xsd │ │ ├── CustomersDataSet.xss │ │ ├── DVFilterSort.csproj │ │ ├── DataGridHelper.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ └── app.config │ ├── DataVirtualization │ │ ├── AsyncVirtualizingCollection.cs │ │ ├── DataPage.cs │ │ ├── DataVirtualization.csproj │ │ ├── DataWrapper.cs │ │ ├── IItemsProvider.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── VirtualizingCollection.cs │ └── ReusableControls │ │ ├── DateRangePicker.xaml │ │ ├── DateRangePicker.xaml.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ └── ReusableControls.csproj ├── Images │ └── DVFilteringSorting.png └── README.md ├── 66-SortingHierarchy ├── Images │ └── 66SortingHierarchy.PNG ├── README.md ├── SortingHierarchy - Silverlight │ ├── SortingHierarchy.Web │ │ ├── ClientBin │ │ │ └── SortingHierarchy.xap │ │ ├── Default.aspx │ │ ├── Default.aspx.cs │ │ ├── Default.aspx.designer.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Silverlight.js │ │ ├── SortingHierarchy.Web.csproj │ │ ├── SortingHierarchy.Web.csproj.user │ │ ├── SortingHierarchyTestPage.aspx │ │ ├── SortingHierarchyTestPage.html │ │ └── Web.config │ └── SortingHierarchy │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Attempt4View.xaml │ │ ├── Attempt4View.xaml.cs │ │ ├── DataSource │ │ ├── City.cs │ │ ├── County.cs │ │ ├── DataSource.cs │ │ └── State.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Properties │ │ ├── AppManifest.xml │ │ └── AssemblyInfo.cs │ │ ├── SolutionView.xaml │ │ ├── SolutionView.xaml.cs │ │ ├── SortingHierarchy.5.0.resharper.user │ │ ├── SortingHierarchy.csproj │ │ ├── SortingHierarchy.csproj.user │ │ ├── SortingHierarchy.sln │ │ └── SortingHierarchy.suo └── SortingHierarchy - WPF │ └── SortingHierarchy │ ├── SortingHierarchy.5.0.resharper.user │ ├── SortingHierarchy.sln │ ├── SortingHierarchy.suo │ └── SortingHierarchy │ ├── App.xaml │ ├── App.xaml.cs │ ├── Attempt1View.xaml │ ├── Attempt1View.xaml.cs │ ├── Attempt2View.xaml │ ├── Attempt2View.xaml.cs │ ├── Attempt3View.xaml │ ├── Attempt3View.xaml.cs │ ├── Attempt4View.xaml │ ├── Attempt4View.xaml.cs │ ├── DataSource │ ├── City.cs │ ├── County.cs │ ├── DataSource.cs │ └── State.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── SolutionView.xaml │ ├── SolutionView.xaml.cs │ ├── SortingHierarchy.csproj │ ├── Window1.xaml │ └── Window1.xaml.cs ├── 67-PieChartWithLabelsUpdates ├── Images │ └── 67PieChartWithLabels.PNG ├── PieChartWithLabels - Silverlight │ ├── CustomControls │ │ ├── Converters.cs │ │ ├── CustomControls.csproj │ │ ├── CustomControls.csproj.user │ │ ├── FormattedRatioConverter.cs │ │ ├── LabeledPieChart.cs │ │ ├── LabeledPieSeries.cs │ │ ├── PieChartHelper.cs │ │ ├── PieChartLabel.cs │ │ ├── PieChartLabelArea.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Themes │ │ │ └── Generic.xaml │ │ ├── TreeHelper.cs │ │ └── Vector.cs │ ├── PieChartWithLabels.sln │ ├── PieChartWithLabels.suo │ └── PieChartWithLabels │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── PieChartWithLabels.csproj │ │ ├── PieChartWithLabels.csproj.user │ │ └── Properties │ │ ├── AppManifest.xml │ │ └── AssemblyInfo.cs ├── PieChartWithLabels - WPF │ ├── Controls │ │ ├── Controls.csproj │ │ ├── Converters.cs │ │ ├── LabeledPieChart.cs │ │ ├── LabeledPieSeries.cs │ │ ├── PieChartHelper.cs │ │ ├── PieChartLabel.cs │ │ ├── PieChartLabelArea.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── Themes │ │ │ └── Generic.xaml │ │ └── TreeHelper.cs │ └── PieChartWithLabels │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── PieChartWithLabels.5.0.resharper.user │ │ ├── PieChartWithLabels.csproj │ │ ├── PieChartWithLabels.sln │ │ ├── PieChartWithLabels.suo │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── Window1.xaml │ │ └── Window1.xaml.cs ├── PieChartWithLabels.xap ├── README.md └── TestPage.html ├── 69-BindRadioButtonsToEnumsPart1 ├── BindRadioButtonsToEnums1 │ ├── BindRadioButtonsToEnums.sln │ ├── BindRadioButtonsToEnums.v11.suo │ └── BindRadioButtonsToEnums │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ ├── Logo.png │ │ ├── SmallLogo.png │ │ ├── SplashScreen.png │ │ └── StoreLogo.png │ │ ├── BindRadioButtonsToEnums.csproj │ │ ├── BindRadioButtonsToEnums_TemporaryKey.pfx │ │ ├── Common │ │ ├── BindableBase.cs │ │ └── StandardStyles.xaml │ │ ├── Helpers │ │ └── DelegateCommand.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Models │ │ └── TransportationMode.cs │ │ ├── Package.appxmanifest │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Styles │ │ └── ControlStyles.xaml │ │ ├── ViewModels │ │ └── JourneyViewModel1.cs │ │ ├── bin │ │ └── Debug │ │ │ ├── App.xaml │ │ │ ├── AppX │ │ │ ├── App.xaml │ │ │ ├── AppxManifest.xml │ │ │ ├── Assets │ │ │ │ ├── Logo.png │ │ │ │ ├── SmallLogo.png │ │ │ │ ├── SplashScreen.png │ │ │ │ ├── StoreLogo.png │ │ │ │ └── Thumbs.db │ │ │ ├── BindRadioButtonsToEnums.exe │ │ │ ├── BindRadioButtonsToEnums.pdb │ │ │ ├── Common │ │ │ │ └── StandardStyles.xaml │ │ │ ├── MainPage.xaml │ │ │ ├── Styles │ │ │ │ └── ControlStyles.xaml │ │ │ ├── resources.pri │ │ │ └── vs.appxrecipe │ │ │ ├── AppxManifest.xml │ │ │ ├── BasicPage1.xaml │ │ │ ├── BindRadioButtonsToEnums.build.appxrecipe │ │ │ ├── BindRadioButtonsToEnums.exe │ │ │ ├── BindRadioButtonsToEnums.pdb │ │ │ ├── Common │ │ │ └── StandardStyles.xaml │ │ │ ├── ControlStyles.xaml │ │ │ ├── MainPage.xaml │ │ │ ├── Styles │ │ │ └── ControlStyles.xaml │ │ │ └── resources.pri │ │ └── obj │ │ └── Debug │ │ ├── App.g.cs │ │ ├── App.g.i.cs │ │ ├── App.xaml │ │ ├── BindRadioButtonsToEnums.csproj.FileListAbsolute.txt │ │ ├── BindRadioButtonsToEnums.exe │ │ ├── BindRadioButtonsToEnums.pdb │ │ ├── BlankPage1.g.cs │ │ ├── BlankPage1.g.i.cs │ │ ├── Common │ │ ├── StandardStyles.g.cs │ │ ├── StandardStyles.g.i.cs │ │ └── StandardStyles.xaml │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── LanguageQualifiers.txt │ │ ├── LanguageQualifiers.txt.intermediate │ │ ├── MainPage.g.cs │ │ ├── MainPage.g.i.cs │ │ ├── MainPage.xaml │ │ ├── ProjectArchitectures.txt │ │ ├── Styles │ │ ├── ControlStyles.g.cs │ │ ├── ControlStyles.g.i.cs │ │ └── ControlStyles.xaml │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ ├── XamlTypeInfo.g.cs │ │ ├── XamlTypeInfo.g.cs.backup │ │ ├── intermediatexaml │ │ ├── BindRadioButtonsToEnums.exe │ │ └── BindRadioButtonsToEnums.pdb │ │ ├── layout.resfiles │ │ ├── layout.resfiles.intermediate │ │ ├── pri.resfiles │ │ ├── pri.resfiles.intermediate │ │ ├── priconfig.xml │ │ ├── priconfig.xml.intermediate │ │ ├── resources.resfiles │ │ └── resources.resfiles.intermediate ├── Images │ └── BindRadioButtonsToEnums1.png └── README.md ├── 70-BindRadioButtonsToEnumsPart2 ├── BindRadioButtonsToEnums2 │ ├── BindRadioButtonsToEnums.sln │ ├── BindRadioButtonsToEnums.v11.suo │ └── BindRadioButtonsToEnums │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ ├── Logo.png │ │ ├── SmallLogo.png │ │ ├── SplashScreen.png │ │ └── StoreLogo.png │ │ ├── BindRadioButtonsToEnums.csproj │ │ ├── BindRadioButtonsToEnums_TemporaryKey.pfx │ │ ├── Common │ │ ├── BindableBase.cs │ │ └── StandardStyles.xaml │ │ ├── Helpers │ │ └── DelegateCommand.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Models │ │ └── TransportationMode.cs │ │ ├── Package.appxmanifest │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Styles │ │ └── ControlStyles.xaml │ │ ├── ViewModels │ │ ├── JourneyViewModel1.cs │ │ └── JourneyViewModel2.cs │ │ ├── bin │ │ └── Debug │ │ │ ├── App.xaml │ │ │ ├── AppX │ │ │ ├── App.xaml │ │ │ ├── AppxManifest.xml │ │ │ ├── Assets │ │ │ │ ├── Logo.png │ │ │ │ ├── SmallLogo.png │ │ │ │ ├── SplashScreen.png │ │ │ │ └── StoreLogo.png │ │ │ ├── BindRadioButtonsToEnums.exe │ │ │ ├── BindRadioButtonsToEnums.pdb │ │ │ ├── Common │ │ │ │ └── StandardStyles.xaml │ │ │ ├── MainPage.xaml │ │ │ ├── Styles │ │ │ │ └── ControlStyles.xaml │ │ │ ├── resources.pri │ │ │ └── vs.appxrecipe │ │ │ ├── AppxManifest.xml │ │ │ ├── BasicPage1.xaml │ │ │ ├── BindRadioButtonsToEnums.build.appxrecipe │ │ │ ├── BindRadioButtonsToEnums.exe │ │ │ ├── BindRadioButtonsToEnums.pdb │ │ │ ├── Common │ │ │ └── StandardStyles.xaml │ │ │ ├── ControlStyles.xaml │ │ │ ├── MainPage.xaml │ │ │ ├── Styles │ │ │ └── ControlStyles.xaml │ │ │ └── resources.pri │ │ └── obj │ │ └── Debug │ │ ├── App.g.cs │ │ ├── App.g.i.cs │ │ ├── App.xaml │ │ ├── BindRadioButtonsToEnums.csproj.FileListAbsolute.txt │ │ ├── BindRadioButtonsToEnums.exe │ │ ├── BindRadioButtonsToEnums.pdb │ │ ├── BlankPage1.g.cs │ │ ├── BlankPage1.g.i.cs │ │ ├── Common │ │ ├── StandardStyles.g.cs │ │ ├── StandardStyles.g.i.cs │ │ └── StandardStyles.xaml │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── LanguageQualifiers.txt │ │ ├── LanguageQualifiers.txt.intermediate │ │ ├── MainPage.g.cs │ │ ├── MainPage.g.i.cs │ │ ├── MainPage.xaml │ │ ├── ProjectArchitectures.txt │ │ ├── Styles │ │ ├── ControlStyles.g.cs │ │ ├── ControlStyles.g.i.cs │ │ └── ControlStyles.xaml │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ ├── XamlTypeInfo.g.cs │ │ ├── XamlTypeInfo.g.cs.backup │ │ ├── intermediatexaml │ │ ├── BindRadioButtonsToEnums.exe │ │ └── BindRadioButtonsToEnums.pdb │ │ ├── layout.resfiles │ │ ├── layout.resfiles.intermediate │ │ ├── pri.resfiles │ │ ├── pri.resfiles.intermediate │ │ ├── priconfig.xml │ │ ├── priconfig.xml.intermediate │ │ ├── resources.resfiles │ │ └── resources.resfiles.intermediate ├── Images │ └── BindRadioButtonsToEnums2.png └── README.md ├── 71-BindRadioButtonsToEnumsPart3 ├── BindRadioButtonsToEnums3 │ ├── BindRadioButtonsToEnums.sln │ ├── BindRadioButtonsToEnums.v11.suo │ └── BindRadioButtonsToEnums │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ ├── Logo.png │ │ ├── SmallLogo.png │ │ ├── SplashScreen.png │ │ └── StoreLogo.png │ │ ├── BindRadioButtonsToEnums.csproj │ │ ├── BindRadioButtonsToEnums_TemporaryKey.pfx │ │ ├── Common │ │ ├── BindableBase.cs │ │ └── StandardStyles.xaml │ │ ├── Converters │ │ ├── EnumToBooleanConverter.cs │ │ └── TransportationModeToBooleanConverter.cs │ │ ├── Helpers │ │ └── DelegateCommand.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Models │ │ └── TransportationMode.cs │ │ ├── Package.appxmanifest │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Styles │ │ └── ControlStyles.xaml │ │ ├── ViewModels │ │ ├── JourneyViewModel1.cs │ │ ├── JourneyViewModel2.cs │ │ └── JourneyViewModel3.cs │ │ ├── bin │ │ └── Debug │ │ │ ├── App.xaml │ │ │ ├── AppX │ │ │ ├── App.xaml │ │ │ ├── AppxManifest.xml │ │ │ ├── Assets │ │ │ │ ├── Logo.png │ │ │ │ ├── SmallLogo.png │ │ │ │ ├── SplashScreen.png │ │ │ │ └── StoreLogo.png │ │ │ ├── BindRadioButtonsToEnums.exe │ │ │ ├── BindRadioButtonsToEnums.pdb │ │ │ ├── Common │ │ │ │ └── StandardStyles.xaml │ │ │ ├── MainPage.xaml │ │ │ ├── Styles │ │ │ │ └── ControlStyles.xaml │ │ │ ├── resources.pri │ │ │ └── vs.appxrecipe │ │ │ ├── AppxManifest.xml │ │ │ ├── BasicPage1.xaml │ │ │ ├── BindRadioButtonsToEnums.build.appxrecipe │ │ │ ├── BindRadioButtonsToEnums.exe │ │ │ ├── BindRadioButtonsToEnums.pdb │ │ │ ├── Common │ │ │ └── StandardStyles.xaml │ │ │ ├── ControlStyles.xaml │ │ │ ├── MainPage.xaml │ │ │ ├── Styles │ │ │ └── ControlStyles.xaml │ │ │ └── resources.pri │ │ └── obj │ │ └── Debug │ │ ├── App.g.cs │ │ ├── App.g.i.cs │ │ ├── App.xaml │ │ ├── BindRadioButtonsToEnums.csproj.FileListAbsolute.txt │ │ ├── BindRadioButtonsToEnums.exe │ │ ├── BindRadioButtonsToEnums.pdb │ │ ├── BlankPage1.g.cs │ │ ├── BlankPage1.g.i.cs │ │ ├── Common │ │ ├── StandardStyles.g.cs │ │ ├── StandardStyles.g.i.cs │ │ └── StandardStyles.xaml │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── LanguageQualifiers.txt │ │ ├── LanguageQualifiers.txt.intermediate │ │ ├── MainPage.g.cs │ │ ├── MainPage.g.i.cs │ │ ├── MainPage.xaml │ │ ├── ProjectArchitectures.txt │ │ ├── Styles │ │ ├── ControlStyles.g.cs │ │ ├── ControlStyles.g.i.cs │ │ └── ControlStyles.xaml │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ ├── XamlTypeInfo.g.cs │ │ ├── XamlTypeInfo.g.cs.backup │ │ ├── intermediatexaml │ │ ├── BindRadioButtonsToEnums.exe │ │ └── BindRadioButtonsToEnums.pdb │ │ ├── layout.resfiles │ │ ├── layout.resfiles.intermediate │ │ ├── pri.resfiles │ │ ├── pri.resfiles.intermediate │ │ ├── priconfig.xml │ │ ├── priconfig.xml.intermediate │ │ ├── resources.resfiles │ │ └── resources.resfiles.intermediate ├── Images │ └── BindRadioButtonsToEnums3.png └── README.md ├── 72-BindRadioButtonsToEnumsPart4 ├── BindRadioButtonsToEnums4 │ ├── BindRadioButtonsToEnums.sln │ ├── BindRadioButtonsToEnums.v11.suo │ └── BindRadioButtonsToEnums │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ ├── Logo.png │ │ ├── SmallLogo.png │ │ ├── SplashScreen.png │ │ └── StoreLogo.png │ │ ├── BindRadioButtonsToEnums.csproj │ │ ├── BindRadioButtonsToEnums_TemporaryKey.pfx │ │ ├── Common │ │ ├── BindableBase.cs │ │ └── StandardStyles.xaml │ │ ├── Converters │ │ ├── EnumToBooleanConverter.cs │ │ └── TransportationModeToBooleanConverter.cs │ │ ├── Helpers │ │ ├── BindableEnum.cs │ │ └── DelegateCommand.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Models │ │ └── TransportationMode.cs │ │ ├── Package.appxmanifest │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Styles │ │ └── ControlStyles.xaml │ │ ├── ViewModels │ │ ├── JourneyViewModel1.cs │ │ ├── JourneyViewModel2.cs │ │ ├── JourneyViewModel3.cs │ │ └── JourneyViewModel4.cs │ │ ├── bin │ │ └── Debug │ │ │ ├── App.xaml │ │ │ ├── AppX │ │ │ ├── App.xaml │ │ │ ├── AppxManifest.xml │ │ │ ├── Assets │ │ │ │ ├── Logo.png │ │ │ │ ├── SmallLogo.png │ │ │ │ ├── SplashScreen.png │ │ │ │ └── StoreLogo.png │ │ │ ├── BindRadioButtonsToEnums.exe │ │ │ ├── BindRadioButtonsToEnums.pdb │ │ │ ├── Common │ │ │ │ └── StandardStyles.xaml │ │ │ ├── MainPage.xaml │ │ │ ├── Styles │ │ │ │ └── ControlStyles.xaml │ │ │ ├── resources.pri │ │ │ └── vs.appxrecipe │ │ │ ├── AppxManifest.xml │ │ │ ├── BasicPage1.xaml │ │ │ ├── BindRadioButtonsToEnums.build.appxrecipe │ │ │ ├── BindRadioButtonsToEnums.exe │ │ │ ├── BindRadioButtonsToEnums.pdb │ │ │ ├── Common │ │ │ └── StandardStyles.xaml │ │ │ ├── ControlStyles.xaml │ │ │ ├── MainPage.xaml │ │ │ ├── Styles │ │ │ └── ControlStyles.xaml │ │ │ └── resources.pri │ │ └── obj │ │ └── Debug │ │ ├── App.g.cs │ │ ├── App.g.i.cs │ │ ├── App.xaml │ │ ├── BindRadioButtonsToEnums.csproj.FileListAbsolute.txt │ │ ├── BindRadioButtonsToEnums.exe │ │ ├── BindRadioButtonsToEnums.pdb │ │ ├── BlankPage1.g.cs │ │ ├── BlankPage1.g.i.cs │ │ ├── Common │ │ ├── StandardStyles.g.cs │ │ ├── StandardStyles.g.i.cs │ │ └── StandardStyles.xaml │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── LanguageQualifiers.txt │ │ ├── LanguageQualifiers.txt.intermediate │ │ ├── MainPage.g.cs │ │ ├── MainPage.g.i.cs │ │ ├── MainPage.xaml │ │ ├── ProjectArchitectures.txt │ │ ├── Styles │ │ ├── ControlStyles.g.cs │ │ ├── ControlStyles.g.i.cs │ │ └── ControlStyles.xaml │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ ├── XamlTypeInfo.g.cs │ │ ├── XamlTypeInfo.g.cs.backup │ │ ├── intermediatexaml │ │ ├── BindRadioButtonsToEnums.exe │ │ └── BindRadioButtonsToEnums.pdb │ │ ├── layout.resfiles │ │ ├── layout.resfiles.intermediate │ │ ├── pri.resfiles │ │ ├── pri.resfiles.intermediate │ │ ├── priconfig.xml │ │ ├── priconfig.xml.intermediate │ │ ├── resources.resfiles │ │ └── resources.resfiles.intermediate ├── Images │ └── BindRadioButtonsToEnums4.png └── README.md ├── 73-BindRadioButtonsToEnumsPart5 └── README.md ├── 74-PositioningDataBoundItems ├── Images │ └── PlanetsListBox.png ├── PlanetsListBox │ ├── PlanetsListBox.sln │ ├── PlanetsListBox.v11.suo │ └── PlanetsListBox │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ ├── Logo.png │ │ ├── SmallLogo.png │ │ ├── SplashScreen.png │ │ ├── StoreLogo.png │ │ └── Thumbs.db │ │ ├── Common │ │ └── StandardStyles.xaml │ │ ├── ConvertOrbit.cs │ │ ├── Images │ │ ├── 2moons_2.gif │ │ ├── earglobe.gif │ │ ├── jupglobe.gif │ │ ├── marglobe.gif │ │ ├── merglobe.gif │ │ ├── nepglobe.gif │ │ ├── sun.jpg │ │ ├── uraglobe.gif │ │ └── venglobe.gif │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── PlanetsListBox.csproj │ │ ├── PlanetsListBox_TemporaryKey.pfx │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── SolarSystem.cs │ │ ├── SolarSystemObject.cs │ │ ├── bin │ │ └── Debug │ │ │ ├── App.xaml │ │ │ ├── AppX │ │ │ ├── App.xaml │ │ │ ├── AppxManifest.xml │ │ │ ├── Assets │ │ │ │ ├── Logo.png │ │ │ │ ├── SmallLogo.png │ │ │ │ ├── SplashScreen.png │ │ │ │ ├── StoreLogo.png │ │ │ │ └── Thumbs.db │ │ │ ├── Common │ │ │ │ └── StandardStyles.xaml │ │ │ ├── Images │ │ │ │ ├── 2moons_2.gif │ │ │ │ ├── earglobe.gif │ │ │ │ ├── jupglobe.gif │ │ │ │ ├── marglobe.gif │ │ │ │ ├── merglobe.gif │ │ │ │ ├── nepglobe.gif │ │ │ │ ├── sun.jpg │ │ │ │ ├── uraglobe.gif │ │ │ │ └── venglobe.gif │ │ │ ├── MainPage.xaml │ │ │ ├── PlanetsListBox.exe │ │ │ ├── PlanetsListBox.pdb │ │ │ ├── microsoft.system.package.metadata │ │ │ │ └── S-1-5-21-3114216089-2179139252-1363765194-1001.pckgdep │ │ │ ├── resources.pri │ │ │ └── vs.appxrecipe │ │ │ ├── AppxManifest.xml │ │ │ ├── Common │ │ │ └── StandardStyles.xaml │ │ │ ├── MainPage.xaml │ │ │ ├── PlanetsListBox.build.appxrecipe │ │ │ ├── PlanetsListBox.exe │ │ │ ├── PlanetsListBox.pdb │ │ │ └── resources.pri │ │ └── obj │ │ └── Debug │ │ ├── App.g.cs │ │ ├── App.g.i.cs │ │ ├── App.xaml │ │ ├── Common │ │ ├── StandardStyles.g.cs │ │ ├── StandardStyles.g.i.cs │ │ └── StandardStyles.xaml │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── LanguageQualifiers.txt │ │ ├── LanguageQualifiers.txt.intermediate │ │ ├── MainPage.g.cs │ │ ├── MainPage.g.i.cs │ │ ├── MainPage.xaml │ │ ├── PlanetsListBox.csproj.FileListAbsolute.txt │ │ ├── PlanetsListBox.exe │ │ ├── PlanetsListBox.pdb │ │ ├── ProjectArchitectures.txt │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ ├── XamlTypeInfo.g.cs │ │ ├── XamlTypeInfo.g.cs.backup │ │ ├── intermediatexaml │ │ ├── PlanetsListBox.exe │ │ └── PlanetsListBox.pdb │ │ ├── layout.resfiles │ │ ├── layout.resfiles.intermediate │ │ ├── pri.resfiles │ │ ├── pri.resfiles.intermediate │ │ ├── priconfig.xml │ │ ├── priconfig.xml.intermediate │ │ ├── resources.resfiles │ │ └── resources.resfiles.intermediate └── README.md ├── 75-SimultaneousEnableDisable ├── README.md ├── WPFSimultaneousEnableDisable │ ├── WpfSimultaneousEnableDisable.sln │ ├── WpfSimultaneousEnableDisable.v11.suo │ └── WpfSimultaneousEnableDisable │ │ ├── App.config │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── DelegateCommand.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── ViewModel.cs │ │ ├── WpfSimultaneousEnableDisable.csproj │ │ ├── bin │ │ └── Debug │ │ │ ├── WpfSimultaneousEnableDisable.exe │ │ │ ├── WpfSimultaneousEnableDisable.exe.config │ │ │ ├── WpfSimultaneousEnableDisable.pdb │ │ │ ├── WpfSimultaneousEnableDisable.vshost.exe │ │ │ ├── WpfSimultaneousEnableDisable.vshost.exe.config │ │ │ └── WpfSimultaneousEnableDisable.vshost.exe.manifest │ │ └── obj │ │ └── Debug │ │ ├── App.g.cs │ │ ├── App.g.i.cs │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── MainWindow.baml │ │ ├── MainWindow.g.cs │ │ ├── MainWindow.g.i.cs │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ ├── WpfSimultaneousEnableDisable.Properties.Resources.resources │ │ ├── WpfSimultaneousEnableDisable.csproj.FileListAbsolute.txt │ │ ├── WpfSimultaneousEnableDisable.csproj.GenerateResource.Cache │ │ ├── WpfSimultaneousEnableDisable.csprojResolveAssemblyReference.cache │ │ ├── WpfSimultaneousEnableDisable.exe │ │ ├── WpfSimultaneousEnableDisable.g.resources │ │ ├── WpfSimultaneousEnableDisable.pdb │ │ ├── WpfSimultaneousEnableDisable_MarkupCompile.cache │ │ └── WpfSimultaneousEnableDisable_MarkupCompile.i.cache └── Win8SimultaneousEnableDisable │ ├── Win8SimultaneousEnableDisable.sln │ ├── Win8SimultaneousEnableDisable.v11.suo │ └── Win8SimultaneousEnableDisable │ ├── App.xaml │ ├── App.xaml.cs │ ├── Assets │ ├── Logo.png │ ├── SmallLogo.png │ ├── SplashScreen.png │ └── StoreLogo.png │ ├── Common │ └── StandardStyles.xaml │ ├── DelegateCommand.cs │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ └── AssemblyInfo.cs │ ├── ViewModel.cs │ ├── Win8SimultaneousEnableDisable.csproj │ ├── Win8SimultaneousEnableDisable_TemporaryKey.pfx │ ├── bin │ └── Debug │ │ ├── App.xaml │ │ ├── AppX │ │ ├── App.xaml │ │ ├── AppxManifest.xml │ │ ├── Assets │ │ │ ├── Logo.png │ │ │ ├── SmallLogo.png │ │ │ ├── SplashScreen.png │ │ │ └── StoreLogo.png │ │ ├── Common │ │ │ └── StandardStyles.xaml │ │ ├── MainPage.xaml │ │ ├── Win8SimultaneousEnableDisable.exe │ │ ├── Win8SimultaneousEnableDisable.pdb │ │ ├── resources.pri │ │ └── vs.appxrecipe │ │ ├── AppxManifest.xml │ │ ├── BasicOptions.xaml │ │ ├── Common │ │ └── StandardStyles.xaml │ │ ├── ExtraOptions.xaml │ │ ├── MainPage.xaml │ │ ├── RightSideControls.xaml │ │ ├── Win8SimultaneousEnableDisable.build.appxrecipe │ │ ├── Win8SimultaneousEnableDisable.exe │ │ ├── Win8SimultaneousEnableDisable.pdb │ │ └── resources.pri │ └── obj │ └── Debug │ ├── App.g.cs │ ├── App.g.i.cs │ ├── App.xaml │ ├── Common │ ├── StandardStyles.g.cs │ ├── StandardStyles.g.i.cs │ └── StandardStyles.xaml │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── LanguageQualifiers.txt │ ├── LanguageQualifiers.txt.intermediate │ ├── MainPage.g.cs │ ├── MainPage.g.i.cs │ ├── MainPage.xaml │ ├── ProjectArchitectures.txt │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ ├── Win8SimultaneousEnableDisable.csproj.FileListAbsolute.txt │ ├── Win8SimultaneousEnableDisable.exe │ ├── Win8SimultaneousEnableDisable.pdb │ ├── XamlTypeInfo.g.cs │ ├── intermediatexaml │ ├── Win8SimultaneousEnableDisable.exe │ └── Win8SimultaneousEnableDisable.pdb │ ├── layout.resfiles │ ├── layout.resfiles.intermediate │ ├── pri.resfiles │ ├── pri.resfiles.intermediate │ ├── priconfig.xml │ ├── priconfig.xml.intermediate │ ├── resources.resfiles │ └── resources.resfiles.intermediate ├── 76-FocusWatcher ├── FocusWatcher.cs ├── Images │ └── FocusWatcher.png └── README.md ├── 77-CaptureWatcher ├── CaptureWatcher.cs ├── CaptureWatcherSample │ ├── CaptureWatcherSample.sln │ ├── CaptureWatcherSample.v11.suo │ └── CaptureWatcherSample │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ ├── Logo.png │ │ ├── SmallLogo.png │ │ ├── SplashScreen.png │ │ └── StoreLogo.png │ │ ├── CaptureWatcher.cs │ │ ├── CaptureWatcherSample.csproj │ │ ├── CaptureWatcherSample.csproj.user │ │ ├── CaptureWatcherSample_TemporaryKey.pfx │ │ ├── Common │ │ └── StandardStyles.xaml │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── TreeHelper.cs │ │ ├── bin │ │ └── Debug │ │ │ ├── App.xaml │ │ │ ├── AppX │ │ │ ├── App.xaml │ │ │ ├── AppxManifest.xml │ │ │ ├── Assets │ │ │ │ ├── Logo.png │ │ │ │ ├── SmallLogo.png │ │ │ │ ├── SplashScreen.png │ │ │ │ └── StoreLogo.png │ │ │ ├── CaptureWatcherSample.exe │ │ │ ├── CaptureWatcherSample.pdb │ │ │ ├── Common │ │ │ │ └── StandardStyles.xaml │ │ │ ├── MainPage.xaml │ │ │ ├── resources.pri │ │ │ └── vs.appxrecipe │ │ │ ├── AppxManifest.xml │ │ │ ├── CaptureWatcherSample.build.appxrecipe │ │ │ ├── CaptureWatcherSample.exe │ │ │ ├── CaptureWatcherSample.pdb │ │ │ ├── Common │ │ │ └── StandardStyles.xaml │ │ │ ├── MainPage.xaml │ │ │ └── resources.pri │ │ └── obj │ │ └── Debug │ │ ├── App.g.cs │ │ ├── App.g.i.cs │ │ ├── App.xaml │ │ ├── CaptureWatcherSample.csproj.FileListAbsolute.txt │ │ ├── CaptureWatcherSample.exe │ │ ├── CaptureWatcherSample.pdb │ │ ├── Common │ │ ├── StandardStyles.g.cs │ │ ├── StandardStyles.g.i.cs │ │ └── StandardStyles.xaml │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── LanguageQualifiers.txt │ │ ├── LanguageQualifiers.txt.intermediate │ │ ├── MainPage.g.cs │ │ ├── MainPage.g.i.cs │ │ ├── MainPage.xaml │ │ ├── ProjectArchitectures.txt │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs │ │ ├── XamlTypeInfo.g.cs │ │ ├── XamlTypeInfo.g.cs.backup │ │ ├── intermediatexaml │ │ ├── CaptureWatcherSample.exe │ │ └── CaptureWatcherSample.pdb │ │ ├── layout.resfiles │ │ ├── pri.resfiles │ │ ├── priconfig.xml │ │ └── resources.resfiles ├── Images │ └── 77CaptureWatcher.png ├── README.md └── TreeHelper.cs ├── 78-BetterBindableBase ├── BetterBindableBaseSample │ ├── BetterBindableBaseSample.sln │ ├── BetterBindableBaseSample.v11.suo │ └── BetterBindableBaseSample │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ ├── Logo.png │ │ ├── SmallLogo.png │ │ ├── SplashScreen.png │ │ └── StoreLogo.png │ │ ├── BetterBindableBase.cs │ │ ├── BetterBindableBaseSample.csproj │ │ ├── BetterBindableBaseSample.csproj.user │ │ ├── BetterBindableBaseSample_TemporaryKey.pfx │ │ ├── BooleanConverter.cs │ │ ├── Common │ │ ├── BindableBase.cs │ │ ├── BooleanNegationConverter.cs │ │ ├── BooleanToVisibilityConverter.cs │ │ ├── LayoutAwarePage.cs │ │ ├── ReadMe.txt │ │ ├── RichTextColumns.cs │ │ ├── StandardStyles.xaml │ │ └── SuspensionManager.cs │ │ ├── DelegateCommand.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── ViewModel.cs ├── Images │ └── 78BetterBindableBase.png └── README.md ├── 79-BooleanConverters ├── BooleanConverterSample │ ├── BooleanConverterSample.sln │ ├── BooleanConverterSample.v11.suo │ └── BooleanConverterSample │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ ├── Logo.png │ │ ├── SmallLogo.png │ │ ├── SplashScreen.png │ │ └── StoreLogo.png │ │ ├── BooleanConverterSample.csproj │ │ ├── BooleanConverterSample.csproj.user │ │ ├── BooleanConverterSample_TemporaryKey.pfx │ │ ├── BooleanConverters.cs │ │ ├── Common │ │ └── StandardStyles.xaml │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ └── Properties │ │ └── AssemblyInfo.cs ├── Images │ └── 79BooleanConverters.png └── README.md ├── LICENSE └── README.md /01-DataContext/DataContextSample/DataContextSample.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/01-DataContext/DataContextSample/DataContextSample.suo -------------------------------------------------------------------------------- /01-DataContext/DataContextSample/DataContextSample/DataContextSample.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 8.0.50215 4 | 5 | -------------------------------------------------------------------------------- /01-DataContext/DataContextSample/DataContextSample/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /01-DataContext/Images/DataContext.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/01-DataContext/Images/DataContext.PNG -------------------------------------------------------------------------------- /02-EmptyBinding/EmptyBinding/EmptyBinding.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/02-EmptyBinding/EmptyBinding/EmptyBinding.suo -------------------------------------------------------------------------------- /02-EmptyBinding/EmptyBinding/EmptyBinding/EmptyBinding.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 8.0.50215 4 | 5 | -------------------------------------------------------------------------------- /02-EmptyBinding/EmptyBinding/EmptyBinding/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /02-EmptyBinding/Images/EmptyBinding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/02-EmptyBinding/Images/EmptyBinding.png -------------------------------------------------------------------------------- /03-GetListBoxItem/GetListBoxItem - Silverlight3/GetListBoxItem/GetListBoxItem.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/03-GetListBoxItem/GetListBoxItem - Silverlight3/GetListBoxItem/GetListBoxItem.suo -------------------------------------------------------------------------------- /03-GetListBoxItem/GetListBoxItem - VS2008/GetListBoxItem/GetListBoxItem.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/03-GetListBoxItem/GetListBoxItem - VS2008/GetListBoxItem/GetListBoxItem.suo -------------------------------------------------------------------------------- /03-GetListBoxItem/GetListBoxItem - VS2008/GetListBoxItem/GetListBoxItem/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /03-GetListBoxItem/GetListBoxItem/GetListBoxItem.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/03-GetListBoxItem/GetListBoxItem/GetListBoxItem.suo -------------------------------------------------------------------------------- /03-GetListBoxItem/GetListBoxItem/GetListBoxItem/GetListBoxItem.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 8.0.50215 4 | 5 | -------------------------------------------------------------------------------- /03-GetListBoxItem/GetListBoxItem/GetListBoxItem/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /03-GetListBoxItem/Images/GetListBoxItem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/03-GetListBoxItem/Images/GetListBoxItem.png -------------------------------------------------------------------------------- /04-BindToComboBox/BindToComboBox/BindToComboBox.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/04-BindToComboBox/BindToComboBox/BindToComboBox.suo -------------------------------------------------------------------------------- /04-BindToComboBox/BindToComboBox/BindToComboBox/BindToComboBox.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 8.0.50215 4 | 5 | -------------------------------------------------------------------------------- /04-BindToComboBox/BindToComboBox/BindToComboBox/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /04-BindToComboBox/Images/BindToComboBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/04-BindToComboBox/Images/BindToComboBox.png -------------------------------------------------------------------------------- /05-DisplayMemberPath/DisplayMemberPathSample - Orcas Beta 2/DisplayMemberPathSample.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 8.0.50215 4 | 5 | -------------------------------------------------------------------------------- /05-DisplayMemberPath/DisplayMemberPathSample - Orcas Beta 2/DisplayMemberPathSample.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/05-DisplayMemberPath/DisplayMemberPathSample - Orcas Beta 2/DisplayMemberPathSample.suo -------------------------------------------------------------------------------- /05-DisplayMemberPath/DisplayMemberPathSample - Orcas Beta 2/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /05-DisplayMemberPath/DisplayMemberPathSample/DisplayMemberPathSample.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/05-DisplayMemberPath/DisplayMemberPathSample/DisplayMemberPathSample.suo -------------------------------------------------------------------------------- /05-DisplayMemberPath/DisplayMemberPathSample/DisplayMemberPathSample/DisplayMemberPathSample.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 8.0.50215 4 | 5 | -------------------------------------------------------------------------------- /05-DisplayMemberPath/DisplayMemberPathSample/DisplayMemberPathSample/DisplayMemberPathSample.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/05-DisplayMemberPath/DisplayMemberPathSample/DisplayMemberPathSample/DisplayMemberPathSample.suo -------------------------------------------------------------------------------- /05-DisplayMemberPath/DisplayMemberPathSample/DisplayMemberPathSample/DisplayMemberPathSample/DisplayMemberPathSample.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 8.0.50215 4 | 5 | -------------------------------------------------------------------------------- /05-DisplayMemberPath/DisplayMemberPathSample/DisplayMemberPathSample/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /05-DisplayMemberPath/Images/DisplayMemberPathSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/05-DisplayMemberPath/Images/DisplayMemberPathSample.png -------------------------------------------------------------------------------- /06-SelectedValue/Images/SelectedValueSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/06-SelectedValue/Images/SelectedValueSample.png -------------------------------------------------------------------------------- /06-SelectedValue/SelectedValueSample/SelectedValueSample.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/06-SelectedValue/SelectedValueSample/SelectedValueSample.suo -------------------------------------------------------------------------------- /06-SelectedValue/SelectedValueSample/SelectedValueSample/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /06-SelectedValue/SelectedValueSample/SelectedValueSample/SelectedValueSample.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 8.0.50215 4 | 5 | -------------------------------------------------------------------------------- /07-ChangePanelItemsControl/ChangePanelItemsControl/ChangePanelItemsControl.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/07-ChangePanelItemsControl/ChangePanelItemsControl/ChangePanelItemsControl.suo -------------------------------------------------------------------------------- /07-ChangePanelItemsControl/ChangePanelItemsControl/ChangePanelItemsControl/ChangePanelItemsControl.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 8.0.50215 4 | 5 | -------------------------------------------------------------------------------- /07-ChangePanelItemsControl/ChangePanelItemsControl/ChangePanelItemsControl/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /07-ChangePanelItemsControl/Images/ChangePanelItemsControl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/07-ChangePanelItemsControl/Images/ChangePanelItemsControl.png -------------------------------------------------------------------------------- /08-BarGraph/BarGraph/BarGraph.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/08-BarGraph/BarGraph/BarGraph.suo -------------------------------------------------------------------------------- /08-BarGraph/BarGraph/BarGraph/BarGraph.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 8.0.50215 4 | 5 | -------------------------------------------------------------------------------- /08-BarGraph/Images/8BarGraph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/08-BarGraph/Images/8BarGraph.png -------------------------------------------------------------------------------- /09-CollectionViewSourceSample/CollectionViewSourceSample/CollectionViewSourceSample.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/09-CollectionViewSourceSample/CollectionViewSourceSample/CollectionViewSourceSample.suo -------------------------------------------------------------------------------- /09-CollectionViewSourceSample/CollectionViewSourceSample/CollectionViewSourceSample/CollectionViewSourceSample.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 8.0.50215 4 | 5 | -------------------------------------------------------------------------------- /09-CollectionViewSourceSample/CollectionViewSourceSample/CollectionViewSourceSample/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /09-CollectionViewSourceSample/Images/9CollectionViewSourceSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/09-CollectionViewSourceSample/Images/9CollectionViewSourceSample.png -------------------------------------------------------------------------------- /10-MasterDetail/Images/10MasterDetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/10-MasterDetail/Images/10MasterDetail.png -------------------------------------------------------------------------------- /10-MasterDetail/MasterDetail/2moons_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/10-MasterDetail/MasterDetail/2moons_2.gif -------------------------------------------------------------------------------- /10-MasterDetail/MasterDetail/MasterDetail.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 8.0.50215 4 | 5 | -------------------------------------------------------------------------------- /10-MasterDetail/MasterDetail/MasterDetail.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/10-MasterDetail/MasterDetail/MasterDetail.suo -------------------------------------------------------------------------------- /10-MasterDetail/MasterDetail/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /10-MasterDetail/MasterDetail/earglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/10-MasterDetail/MasterDetail/earglobe.gif -------------------------------------------------------------------------------- /10-MasterDetail/MasterDetail/jupglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/10-MasterDetail/MasterDetail/jupglobe.gif -------------------------------------------------------------------------------- /10-MasterDetail/MasterDetail/marglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/10-MasterDetail/MasterDetail/marglobe.gif -------------------------------------------------------------------------------- /10-MasterDetail/MasterDetail/merglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/10-MasterDetail/MasterDetail/merglobe.gif -------------------------------------------------------------------------------- /10-MasterDetail/MasterDetail/nepglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/10-MasterDetail/MasterDetail/nepglobe.gif -------------------------------------------------------------------------------- /10-MasterDetail/MasterDetail/plutoch_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/10-MasterDetail/MasterDetail/plutoch_2.gif -------------------------------------------------------------------------------- /10-MasterDetail/MasterDetail/uraglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/10-MasterDetail/MasterDetail/uraglobe.gif -------------------------------------------------------------------------------- /10-MasterDetail/MasterDetail/venglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/10-MasterDetail/MasterDetail/venglobe.gif -------------------------------------------------------------------------------- /11-MasterDetailThreeLevels/Images/11MasterDetailThreeLevels.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/11-MasterDetailThreeLevels/Images/11MasterDetailThreeLevels.png -------------------------------------------------------------------------------- /11-MasterDetailThreeLevels/MasterDetailThreeLevel - .NET 3.5/MasterDetailThreeLevels/MasterDetailThreeLevels.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/11-MasterDetailThreeLevels/MasterDetailThreeLevel - .NET 3.5/MasterDetailThreeLevels/MasterDetailThreeLevels.suo -------------------------------------------------------------------------------- /11-MasterDetailThreeLevels/MasterDetailThreeLevel - .NET 3.5/MasterDetailThreeLevels/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /11-MasterDetailThreeLevels/MasterDetailThreeLevels/MasterDetailThreeLevels.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/11-MasterDetailThreeLevels/MasterDetailThreeLevels/MasterDetailThreeLevels.suo -------------------------------------------------------------------------------- /11-MasterDetailThreeLevels/MasterDetailThreeLevels/MasterDetailThreeLevels/MasterDetailThreeLevels.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 8.0.50215 4 | 5 | -------------------------------------------------------------------------------- /11-MasterDetailThreeLevels/MasterDetailThreeLevels/MasterDetailThreeLevels/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /11-MasterDetailThreeLevels/MasterDetailThreeLevelsXml/MasterDetailThreeLevelsXml.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/11-MasterDetailThreeLevels/MasterDetailThreeLevelsXml/MasterDetailThreeLevelsXml.suo -------------------------------------------------------------------------------- /11-MasterDetailThreeLevels/MasterDetailThreeLevelsXml/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /12-DataBoundDialogBox/DataBoundDialogBox - 3.5 SP1/DataBoundDialogBox/DataBoundDialogBox.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/12-DataBoundDialogBox/DataBoundDialogBox - 3.5 SP1/DataBoundDialogBox/DataBoundDialogBox.suo -------------------------------------------------------------------------------- /12-DataBoundDialogBox/DataBoundDialogBox/DataBoundDialogBox.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/12-DataBoundDialogBox/DataBoundDialogBox/DataBoundDialogBox.suo -------------------------------------------------------------------------------- /12-DataBoundDialogBox/DataBoundDialogBox/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /12-DataBoundDialogBox/Images/DataBoundDialogBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/12-DataBoundDialogBox/Images/DataBoundDialogBox.png -------------------------------------------------------------------------------- /13-TemplatingItems/Images/13TemplatingItems.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/13-TemplatingItems/Images/13TemplatingItems.png -------------------------------------------------------------------------------- /13-TemplatingItems/TemplatingItems/TemplatingItems.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/13-TemplatingItems/TemplatingItems/TemplatingItems.suo -------------------------------------------------------------------------------- /13-TemplatingItems/TemplatingItems/TemplatingItems/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /13-TemplatingItems/TemplatingItems/TemplatingItems/TemplatingItems.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 8.0.50215 4 | 5 | -------------------------------------------------------------------------------- /14-SortingGroups/Images/14SortingGroups.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/14-SortingGroups/Images/14SortingGroups.png -------------------------------------------------------------------------------- /14-SortingGroups/SortingGroups - Orcas Beta 2/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /14-SortingGroups/SortingGroups - Orcas Beta 2/SortingGroups.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/14-SortingGroups/SortingGroups - Orcas Beta 2/SortingGroups.suo -------------------------------------------------------------------------------- /14-SortingGroups/SortingGroups/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /14-SortingGroups/SortingGroups/SortingGroups.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/14-SortingGroups/SortingGroups/SortingGroups.suo -------------------------------------------------------------------------------- /15-GroupingTreeView/15GroupingTreeView - Orcas Beta 2/GroupingTreeView.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/15-GroupingTreeView/15GroupingTreeView - Orcas Beta 2/GroupingTreeView.suo -------------------------------------------------------------------------------- /15-GroupingTreeView/15GroupingTreeView - Orcas Beta 2/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /15-GroupingTreeView/15GroupingTreeView/GroupingTreeView.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/15-GroupingTreeView/15GroupingTreeView/GroupingTreeView.suo -------------------------------------------------------------------------------- /15-GroupingTreeView/15GroupingTreeView/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /15-GroupingTreeView/Images/15GroupingTreeView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/15-GroupingTreeView/Images/15GroupingTreeView.png -------------------------------------------------------------------------------- /16-GroupByType/GroupByType/GroupByType.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/16-GroupByType/GroupByType/GroupByType.suo -------------------------------------------------------------------------------- /16-GroupByType/GroupByType/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /16-GroupByType/Images/16GroupByType.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/16-GroupByType/Images/16GroupByType.png -------------------------------------------------------------------------------- /17-BoundListView/BoundListView - Orcas Beta 2/2moons_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/17-BoundListView/BoundListView - Orcas Beta 2/2moons_2.gif -------------------------------------------------------------------------------- /17-BoundListView/BoundListView - Orcas Beta 2/BoundListView.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/17-BoundListView/BoundListView - Orcas Beta 2/BoundListView.suo -------------------------------------------------------------------------------- /17-BoundListView/BoundListView - Orcas Beta 2/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /17-BoundListView/BoundListView - Orcas Beta 2/earglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/17-BoundListView/BoundListView - Orcas Beta 2/earglobe.gif -------------------------------------------------------------------------------- /17-BoundListView/BoundListView - Orcas Beta 2/jupglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/17-BoundListView/BoundListView - Orcas Beta 2/jupglobe.gif -------------------------------------------------------------------------------- /17-BoundListView/BoundListView - Orcas Beta 2/marglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/17-BoundListView/BoundListView - Orcas Beta 2/marglobe.gif -------------------------------------------------------------------------------- /17-BoundListView/BoundListView - Orcas Beta 2/merglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/17-BoundListView/BoundListView - Orcas Beta 2/merglobe.gif -------------------------------------------------------------------------------- /17-BoundListView/BoundListView - Orcas Beta 2/nepglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/17-BoundListView/BoundListView - Orcas Beta 2/nepglobe.gif -------------------------------------------------------------------------------- /17-BoundListView/BoundListView - Orcas Beta 2/planetx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/17-BoundListView/BoundListView - Orcas Beta 2/planetx.jpg -------------------------------------------------------------------------------- /17-BoundListView/BoundListView - Orcas Beta 2/plutoch_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/17-BoundListView/BoundListView - Orcas Beta 2/plutoch_2.gif -------------------------------------------------------------------------------- /17-BoundListView/BoundListView - Orcas Beta 2/uraglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/17-BoundListView/BoundListView - Orcas Beta 2/uraglobe.gif -------------------------------------------------------------------------------- /17-BoundListView/BoundListView - Orcas Beta 2/venglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/17-BoundListView/BoundListView - Orcas Beta 2/venglobe.gif -------------------------------------------------------------------------------- /17-BoundListView/BoundListView/2moons_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/17-BoundListView/BoundListView/2moons_2.gif -------------------------------------------------------------------------------- /17-BoundListView/BoundListView/BoundListView.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/17-BoundListView/BoundListView/BoundListView.suo -------------------------------------------------------------------------------- /17-BoundListView/BoundListView/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /17-BoundListView/BoundListView/earglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/17-BoundListView/BoundListView/earglobe.gif -------------------------------------------------------------------------------- /17-BoundListView/BoundListView/jupglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/17-BoundListView/BoundListView/jupglobe.gif -------------------------------------------------------------------------------- /17-BoundListView/BoundListView/marglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/17-BoundListView/BoundListView/marglobe.gif -------------------------------------------------------------------------------- /17-BoundListView/BoundListView/merglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/17-BoundListView/BoundListView/merglobe.gif -------------------------------------------------------------------------------- /17-BoundListView/BoundListView/nepglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/17-BoundListView/BoundListView/nepglobe.gif -------------------------------------------------------------------------------- /17-BoundListView/BoundListView/planetx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/17-BoundListView/BoundListView/planetx.jpg -------------------------------------------------------------------------------- /17-BoundListView/BoundListView/plutoch_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/17-BoundListView/BoundListView/plutoch_2.gif -------------------------------------------------------------------------------- /17-BoundListView/BoundListView/uraglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/17-BoundListView/BoundListView/uraglobe.gif -------------------------------------------------------------------------------- /17-BoundListView/BoundListView/venglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/17-BoundListView/BoundListView/venglobe.gif -------------------------------------------------------------------------------- /17-BoundListView/Images/BoundListView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/17-BoundListView/Images/BoundListView.png -------------------------------------------------------------------------------- /18-ThreeLevelMasterDetailADO/Images/ThreeLevelMasterDetailADO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/18-ThreeLevelMasterDetailADO/Images/ThreeLevelMasterDetailADO.png -------------------------------------------------------------------------------- /18-ThreeLevelMasterDetailADO/ThreeLevelMasterDetailADO - 3.5 RTM/ThreeLevelMasterDetailADO/SkiMountains.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/18-ThreeLevelMasterDetailADO/ThreeLevelMasterDetailADO - 3.5 RTM/ThreeLevelMasterDetailADO/SkiMountains.mdb -------------------------------------------------------------------------------- /18-ThreeLevelMasterDetailADO/ThreeLevelMasterDetailADO/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /18-ThreeLevelMasterDetailADO/ThreeLevelMasterDetailADO/SkiMountains.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/18-ThreeLevelMasterDetailADO/ThreeLevelMasterDetailADO/SkiMountains.mdb -------------------------------------------------------------------------------- /18-ThreeLevelMasterDetailADO/ThreeLevelMasterDetailADO/ThreeLevelMasterDetailADO.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/18-ThreeLevelMasterDetailADO/ThreeLevelMasterDetailADO/ThreeLevelMasterDetailADO.suo -------------------------------------------------------------------------------- /19-ObjectDataProviderSample/Images/19ObjectDataProviderSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/19-ObjectDataProviderSample/Images/19ObjectDataProviderSample.png -------------------------------------------------------------------------------- /19-ObjectDataProviderSample/ObjectDataProviderSample/ObjectDataProviderSample.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/19-ObjectDataProviderSample/ObjectDataProviderSample/ObjectDataProviderSample.suo -------------------------------------------------------------------------------- /19-ObjectDataProviderSample/ObjectDataProviderSample/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /20-InsertingSeparators/Images/20InsertingSeparators.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/20-InsertingSeparators/Images/20InsertingSeparators.png -------------------------------------------------------------------------------- /20-InsertingSeparators/InsertingSeparators - Orcas Beta 2/InsertingSeparators.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/20-InsertingSeparators/InsertingSeparators - Orcas Beta 2/InsertingSeparators.suo -------------------------------------------------------------------------------- /20-InsertingSeparators/InsertingSeparators - Orcas Beta 2/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /20-InsertingSeparators/InsertingSeparators/InsertingSeparators.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/20-InsertingSeparators/InsertingSeparators/InsertingSeparators.suo -------------------------------------------------------------------------------- /20-InsertingSeparators/InsertingSeparators/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /21-CustomSorting/CustomSorting/CustomSorting.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/21-CustomSorting/CustomSorting/CustomSorting.suo -------------------------------------------------------------------------------- /21-CustomSorting/CustomSorting/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /21-CustomSorting/Images/21CustomSorting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/21-CustomSorting/Images/21CustomSorting.png -------------------------------------------------------------------------------- /24-AsynchronousBinding/AsynchronousBinding/AsynchronousBinding.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/24-AsynchronousBinding/AsynchronousBinding/AsynchronousBinding.suo -------------------------------------------------------------------------------- /24-AsynchronousBinding/AsynchronousBinding/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /24-AsynchronousBinding/Images/24AsynchronousBinding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/24-AsynchronousBinding/Images/24AsynchronousBinding.png -------------------------------------------------------------------------------- /25-BindToEnum/BindToEnum/BindToEnum.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/25-BindToEnum/BindToEnum/BindToEnum.suo -------------------------------------------------------------------------------- /25-BindToEnum/BindToEnum/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /25-BindToEnum/Images/25BindToEnum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/25-BindToEnum/Images/25BindToEnum.png -------------------------------------------------------------------------------- /26-DataTriggerSample/DataTriggerSample/DataTriggerSample.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/26-DataTriggerSample/DataTriggerSample/DataTriggerSample.suo -------------------------------------------------------------------------------- /26-DataTriggerSample/DataTriggerSample/Pictures/TechEd 004.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/26-DataTriggerSample/DataTriggerSample/Pictures/TechEd 004.jpg -------------------------------------------------------------------------------- /26-DataTriggerSample/DataTriggerSample/Pictures/TechEd 022.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/26-DataTriggerSample/DataTriggerSample/Pictures/TechEd 022.jpg -------------------------------------------------------------------------------- /26-DataTriggerSample/DataTriggerSample/Pictures/TechEd 029.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/26-DataTriggerSample/DataTriggerSample/Pictures/TechEd 029.jpg -------------------------------------------------------------------------------- /26-DataTriggerSample/DataTriggerSample/Pictures/TechEd 030.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/26-DataTriggerSample/DataTriggerSample/Pictures/TechEd 030.jpg -------------------------------------------------------------------------------- /26-DataTriggerSample/DataTriggerSample/Pictures/TechEd 051.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/26-DataTriggerSample/DataTriggerSample/Pictures/TechEd 051.jpg -------------------------------------------------------------------------------- /26-DataTriggerSample/DataTriggerSample/Pictures/TechEd 061.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/26-DataTriggerSample/DataTriggerSample/Pictures/TechEd 061.jpg -------------------------------------------------------------------------------- /26-DataTriggerSample/DataTriggerSample/Pictures/TechEd 066.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/26-DataTriggerSample/DataTriggerSample/Pictures/TechEd 066.jpg -------------------------------------------------------------------------------- /26-DataTriggerSample/DataTriggerSample/Pictures/TechEd 074.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/26-DataTriggerSample/DataTriggerSample/Pictures/TechEd 074.jpg -------------------------------------------------------------------------------- /26-DataTriggerSample/DataTriggerSample/Pictures/TechEd 075.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/26-DataTriggerSample/DataTriggerSample/Pictures/TechEd 075.jpg -------------------------------------------------------------------------------- /26-DataTriggerSample/DataTriggerSample/Pictures/TechEd 077.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/26-DataTriggerSample/DataTriggerSample/Pictures/TechEd 077.jpg -------------------------------------------------------------------------------- /26-DataTriggerSample/DataTriggerSample/Pictures/TechEd 082.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/26-DataTriggerSample/DataTriggerSample/Pictures/TechEd 082.jpg -------------------------------------------------------------------------------- /26-DataTriggerSample/DataTriggerSample/Pictures/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/26-DataTriggerSample/DataTriggerSample/Pictures/Thumbs.db -------------------------------------------------------------------------------- /26-DataTriggerSample/DataTriggerSample/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /26-DataTriggerSample/Images/26DataTriggerSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/26-DataTriggerSample/Images/26DataTriggerSample.png -------------------------------------------------------------------------------- /27-ConvertXaml/ConvertXaml/ConvertXaml/ConvertXaml.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/27-ConvertXaml/ConvertXaml/ConvertXaml/ConvertXaml.suo -------------------------------------------------------------------------------- /27-ConvertXaml/ConvertXaml/ConvertXaml/ConvertXaml/ConvertXaml.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 8.0.50215 4 | 5 | -------------------------------------------------------------------------------- /27-ConvertXaml/ConvertXaml/ConvertXaml/ConvertXaml/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /28-FilterSample/FilterSample/FilterSample.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/28-FilterSample/FilterSample/FilterSample.suo -------------------------------------------------------------------------------- /28-FilterSample/FilterSample/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /28-FilterSample/Images/28FilterSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/28-FilterSample/Images/28FilterSample.png -------------------------------------------------------------------------------- /29-MultipleFilters/Images/29MultipleFilters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/29-MultipleFilters/Images/29MultipleFilters.png -------------------------------------------------------------------------------- /29-MultipleFilters/MultipleFilters/MultipleFilters.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/29-MultipleFilters/MultipleFilters/MultipleFilters.suo -------------------------------------------------------------------------------- /29-MultipleFilters/MultipleFilters/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /30-MultiBindingConverter/Images/30MultiBindingConverter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/30-MultiBindingConverter/Images/30MultiBindingConverter.png -------------------------------------------------------------------------------- /30-MultiBindingConverter/MultiBindingConverter/MultiBindingConverter.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/30-MultiBindingConverter/MultiBindingConverter/MultiBindingConverter.suo -------------------------------------------------------------------------------- /30-MultiBindingConverter/MultiBindingConverter/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /31-ChangesMultithreading/ChangesMultithreading/ChangesMultithreading.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/31-ChangesMultithreading/ChangesMultithreading/ChangesMultithreading.suo -------------------------------------------------------------------------------- /31-ChangesMultithreading/ChangesMultithreading/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /31-ChangesMultithreading/Images/31ChangesMultithreading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/31-ChangesMultithreading/Images/31ChangesMultithreading.png -------------------------------------------------------------------------------- /32-PolygonBinding/Images/32PolygonBinding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/32-PolygonBinding/Images/32PolygonBinding.png -------------------------------------------------------------------------------- /32-PolygonBinding/PolygonBinding/PolygonBinding.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/32-PolygonBinding/PolygonBinding/PolygonBinding.suo -------------------------------------------------------------------------------- /32-PolygonBinding/PolygonBinding/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /33-PolygonBinding2/Images/33PolygonBinding2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/33-PolygonBinding2/Images/33PolygonBinding2.png -------------------------------------------------------------------------------- /33-PolygonBinding2/PolygonBinding/PolygonBinding.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/33-PolygonBinding2/PolygonBinding/PolygonBinding.suo -------------------------------------------------------------------------------- /33-PolygonBinding2/PolygonBinding/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /34-PolygonBinding3/Images/TechEdBarcelona.GIF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/34-PolygonBinding3/Images/TechEdBarcelona.GIF -------------------------------------------------------------------------------- /34-PolygonBinding3/PolygonBinding3/PolygonBinding.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/34-PolygonBinding3/PolygonBinding3/PolygonBinding.suo -------------------------------------------------------------------------------- /34-PolygonBinding3/PolygonBinding3/PolygonBinding/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /35-CommonQuestions/CommonQuestions/CommonQuestions.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/35-CommonQuestions/CommonQuestions/CommonQuestions.suo -------------------------------------------------------------------------------- /35-CommonQuestions/CommonQuestions/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /36-ADOIndependentView/ADOIndependentView/ADOIndependentView.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/36-ADOIndependentView/ADOIndependentView/ADOIndependentView.suo -------------------------------------------------------------------------------- /36-ADOIndependentView/ADOIndependentView/IndiaSacredRivers.mdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/36-ADOIndependentView/ADOIndependentView/IndiaSacredRivers.mdb -------------------------------------------------------------------------------- /36-ADOIndependentView/ADOIndependentView/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /36-ADOIndependentView/Images/36ADOIndependentView.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/36-ADOIndependentView/Images/36ADOIndependentView.png -------------------------------------------------------------------------------- /37-PlanetsListBox/DataBindingPresenter/Application.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/37-PlanetsListBox/DataBindingPresenter/Application.ico -------------------------------------------------------------------------------- /37-PlanetsListBox/DataBindingPresenter/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | // 2 | // This file was auto-generated by a tool. Do not modify. 3 | // 4 | using System.Resources; 5 | 6 | [assembly: NeutralResourcesLanguageAttribute("en-US" , UltimateResourceFallbackLocation.MainAssembly)] 7 | -------------------------------------------------------------------------------- /37-PlanetsListBox/DataBindingPresenter/Images/2moons_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/37-PlanetsListBox/DataBindingPresenter/Images/2moons_2.gif -------------------------------------------------------------------------------- /37-PlanetsListBox/DataBindingPresenter/Images/Bea.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/37-PlanetsListBox/DataBindingPresenter/Images/Bea.jpg -------------------------------------------------------------------------------- /37-PlanetsListBox/DataBindingPresenter/Images/Kevin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/37-PlanetsListBox/DataBindingPresenter/Images/Kevin.jpg -------------------------------------------------------------------------------- /37-PlanetsListBox/DataBindingPresenter/Images/earglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/37-PlanetsListBox/DataBindingPresenter/Images/earglobe.gif -------------------------------------------------------------------------------- /37-PlanetsListBox/DataBindingPresenter/Images/jupglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/37-PlanetsListBox/DataBindingPresenter/Images/jupglobe.gif -------------------------------------------------------------------------------- /37-PlanetsListBox/DataBindingPresenter/Images/marglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/37-PlanetsListBox/DataBindingPresenter/Images/marglobe.gif -------------------------------------------------------------------------------- /37-PlanetsListBox/DataBindingPresenter/Images/merglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/37-PlanetsListBox/DataBindingPresenter/Images/merglobe.gif -------------------------------------------------------------------------------- /37-PlanetsListBox/DataBindingPresenter/Images/nepglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/37-PlanetsListBox/DataBindingPresenter/Images/nepglobe.gif -------------------------------------------------------------------------------- /37-PlanetsListBox/DataBindingPresenter/Images/planetx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/37-PlanetsListBox/DataBindingPresenter/Images/planetx.jpg -------------------------------------------------------------------------------- /37-PlanetsListBox/DataBindingPresenter/Images/plutoch_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/37-PlanetsListBox/DataBindingPresenter/Images/plutoch_2.gif -------------------------------------------------------------------------------- /37-PlanetsListBox/DataBindingPresenter/Images/screenShotBlend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/37-PlanetsListBox/DataBindingPresenter/Images/screenShotBlend.png -------------------------------------------------------------------------------- /37-PlanetsListBox/DataBindingPresenter/Images/sun.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/37-PlanetsListBox/DataBindingPresenter/Images/sun.jpg -------------------------------------------------------------------------------- /37-PlanetsListBox/DataBindingPresenter/Images/uraglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/37-PlanetsListBox/DataBindingPresenter/Images/uraglobe.gif -------------------------------------------------------------------------------- /37-PlanetsListBox/DataBindingPresenter/Images/venglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/37-PlanetsListBox/DataBindingPresenter/Images/venglobe.gif -------------------------------------------------------------------------------- /37-PlanetsListBox/DataBindingPresenter/Presenter.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/37-PlanetsListBox/DataBindingPresenter/Presenter.suo -------------------------------------------------------------------------------- /37-PlanetsListBox/Images/37PlanetsListBox1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/37-PlanetsListBox/Images/37PlanetsListBox1.PNG -------------------------------------------------------------------------------- /37-PlanetsListBox/Images/37PlanetsListBox2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/37-PlanetsListBox/Images/37PlanetsListBox2.PNG -------------------------------------------------------------------------------- /37-PlanetsListBox/PlanetsListBox/Images/2moons_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/37-PlanetsListBox/PlanetsListBox/Images/2moons_2.gif -------------------------------------------------------------------------------- /37-PlanetsListBox/PlanetsListBox/Images/earglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/37-PlanetsListBox/PlanetsListBox/Images/earglobe.gif -------------------------------------------------------------------------------- /37-PlanetsListBox/PlanetsListBox/Images/jupglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/37-PlanetsListBox/PlanetsListBox/Images/jupglobe.gif -------------------------------------------------------------------------------- /37-PlanetsListBox/PlanetsListBox/Images/marglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/37-PlanetsListBox/PlanetsListBox/Images/marglobe.gif -------------------------------------------------------------------------------- /37-PlanetsListBox/PlanetsListBox/Images/merglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/37-PlanetsListBox/PlanetsListBox/Images/merglobe.gif -------------------------------------------------------------------------------- /37-PlanetsListBox/PlanetsListBox/Images/nepglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/37-PlanetsListBox/PlanetsListBox/Images/nepglobe.gif -------------------------------------------------------------------------------- /37-PlanetsListBox/PlanetsListBox/Images/planetx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/37-PlanetsListBox/PlanetsListBox/Images/planetx.jpg -------------------------------------------------------------------------------- /37-PlanetsListBox/PlanetsListBox/Images/plutoch_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/37-PlanetsListBox/PlanetsListBox/Images/plutoch_2.gif -------------------------------------------------------------------------------- /37-PlanetsListBox/PlanetsListBox/Images/sun.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/37-PlanetsListBox/PlanetsListBox/Images/sun.jpg -------------------------------------------------------------------------------- /37-PlanetsListBox/PlanetsListBox/Images/uraglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/37-PlanetsListBox/PlanetsListBox/Images/uraglobe.gif -------------------------------------------------------------------------------- /37-PlanetsListBox/PlanetsListBox/Images/venglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/37-PlanetsListBox/PlanetsListBox/Images/venglobe.gif -------------------------------------------------------------------------------- /37-PlanetsListBox/PlanetsListBox/PlanetsListBox.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/37-PlanetsListBox/PlanetsListBox/PlanetsListBox.suo -------------------------------------------------------------------------------- /37-PlanetsListBox/PlanetsListBox/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /38-UpdateExplicit/38UpdateExplicit - Orcas Beta 2/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /38-UpdateExplicit/38UpdateExplicit - Orcas Beta 2/UpdateExplicit.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/38-UpdateExplicit/38UpdateExplicit - Orcas Beta 2/UpdateExplicit.suo -------------------------------------------------------------------------------- /38-UpdateExplicit/38UpdateExplicit/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /38-UpdateExplicit/38UpdateExplicit/UpdateExplicit.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/38-UpdateExplicit/38UpdateExplicit/UpdateExplicit.suo -------------------------------------------------------------------------------- /38-UpdateExplicit/Images/38UpdateExplicit.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/38-UpdateExplicit/Images/38UpdateExplicit.PNG -------------------------------------------------------------------------------- /38-UpdateExplicit/Images/38mix.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/38-UpdateExplicit/Images/38mix.bmp -------------------------------------------------------------------------------- /39-TreeViewPerformancePart1/Images/39TreeViewPerformance11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/39-TreeViewPerformancePart1/Images/39TreeViewPerformance11.png -------------------------------------------------------------------------------- /39-TreeViewPerformancePart1/Images/39TreeViewPerformance12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/39-TreeViewPerformancePart1/Images/39TreeViewPerformance12.png -------------------------------------------------------------------------------- /39-TreeViewPerformancePart1/Images/39TreeViewPerformance13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/39-TreeViewPerformancePart1/Images/39TreeViewPerformance13.png -------------------------------------------------------------------------------- /39-TreeViewPerformancePart1/TreeViewPerformance1/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /39-TreeViewPerformancePart1/TreeViewPerformance1/TreeViewPerformance.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/39-TreeViewPerformancePart1/TreeViewPerformance1/TreeViewPerformance.suo -------------------------------------------------------------------------------- /40-TreeViewPerformancePart2/Images/40TreeViewPerformance21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/40-TreeViewPerformancePart2/Images/40TreeViewPerformance21.png -------------------------------------------------------------------------------- /40-TreeViewPerformancePart2/Images/40TreeViewPerformance22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/40-TreeViewPerformancePart2/Images/40TreeViewPerformance22.png -------------------------------------------------------------------------------- /40-TreeViewPerformancePart2/TreeViewPerformance/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /40-TreeViewPerformancePart2/TreeViewPerformance/TreeViewPerformance.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/40-TreeViewPerformancePart2/TreeViewPerformance/TreeViewPerformance.suo -------------------------------------------------------------------------------- /41-TreeViewPerformancePart3/Images/TreeViewPerformance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/41-TreeViewPerformancePart3/Images/TreeViewPerformance.png -------------------------------------------------------------------------------- /41-TreeViewPerformancePart3/TreeViewPerformance/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /41-TreeViewPerformancePart3/TreeViewPerformance/TreeViewPerformance.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/41-TreeViewPerformancePart3/TreeViewPerformance/TreeViewPerformance.suo -------------------------------------------------------------------------------- /42-WPFPresenter/Images/42WPFPresenter.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/42-WPFPresenter/Images/42WPFPresenter.jpg -------------------------------------------------------------------------------- /42-WPFPresenter/WPFPresenter/02Slide.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /42-WPFPresenter/WPFPresenter/03Slide.xaml: -------------------------------------------------------------------------------- 1 |  5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /42-WPFPresenter/WPFPresenter/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /42-WPFPresenter/WPFPresenter/WPFPresenter.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/42-WPFPresenter/WPFPresenter/WPFPresenter.suo -------------------------------------------------------------------------------- /43-BindToXLinq/BindToXLinq/BindToXLinq.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/43-BindToXLinq/BindToXLinq/BindToXLinq.suo -------------------------------------------------------------------------------- /43-BindToXLinq/BindToXLinq/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /43-BindToXLinq/Images/43BindToLinq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/43-BindToXLinq/Images/43BindToLinq.png -------------------------------------------------------------------------------- /44-XLinqXMLMasterDetail/Images/44XLinqXMLMasterDetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/44-XLinqXMLMasterDetail/Images/44XLinqXMLMasterDetail.png -------------------------------------------------------------------------------- /44-XLinqXMLMasterDetail/XLinqXMLMasterDetail/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /44-XLinqXMLMasterDetail/XLinqXMLMasterDetail/XLinqXMLMasterDetail.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/44-XLinqXMLMasterDetail/XLinqXMLMasterDetail/XLinqXMLMasterDetail.suo -------------------------------------------------------------------------------- /45-DebuggingDataBinding/DebuggingDataBinding/DebuggingDataBinding.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/45-DebuggingDataBinding/DebuggingDataBinding/DebuggingDataBinding.suo -------------------------------------------------------------------------------- /45-DebuggingDataBinding/DebuggingDataBinding/Images/sun.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/45-DebuggingDataBinding/DebuggingDataBinding/Images/sun.jpg -------------------------------------------------------------------------------- /45-DebuggingDataBinding/DebuggingDataBinding/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /46-DragDropListBox/DragDropListBox/DragDropListBox.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/46-DragDropListBox/DragDropListBox/DragDropListBox.suo -------------------------------------------------------------------------------- /46-DragDropListBox/DragDropListBox/Images/2moons_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/46-DragDropListBox/DragDropListBox/Images/2moons_2.gif -------------------------------------------------------------------------------- /46-DragDropListBox/DragDropListBox/Images/earglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/46-DragDropListBox/DragDropListBox/Images/earglobe.gif -------------------------------------------------------------------------------- /46-DragDropListBox/DragDropListBox/Images/jupglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/46-DragDropListBox/DragDropListBox/Images/jupglobe.gif -------------------------------------------------------------------------------- /46-DragDropListBox/DragDropListBox/Images/marglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/46-DragDropListBox/DragDropListBox/Images/marglobe.gif -------------------------------------------------------------------------------- /46-DragDropListBox/DragDropListBox/Images/merglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/46-DragDropListBox/DragDropListBox/Images/merglobe.gif -------------------------------------------------------------------------------- /46-DragDropListBox/DragDropListBox/Images/nepglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/46-DragDropListBox/DragDropListBox/Images/nepglobe.gif -------------------------------------------------------------------------------- /46-DragDropListBox/DragDropListBox/Images/planetx.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/46-DragDropListBox/DragDropListBox/Images/planetx.jpg -------------------------------------------------------------------------------- /46-DragDropListBox/DragDropListBox/Images/plutoch_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/46-DragDropListBox/DragDropListBox/Images/plutoch_2.gif -------------------------------------------------------------------------------- /46-DragDropListBox/DragDropListBox/Images/sun.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/46-DragDropListBox/DragDropListBox/Images/sun.jpg -------------------------------------------------------------------------------- /46-DragDropListBox/DragDropListBox/Images/uraglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/46-DragDropListBox/DragDropListBox/Images/uraglobe.gif -------------------------------------------------------------------------------- /46-DragDropListBox/DragDropListBox/Images/venglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/46-DragDropListBox/DragDropListBox/Images/venglobe.gif -------------------------------------------------------------------------------- /46-DragDropListBox/DragDropListBox/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /46-DragDropListBox/Images/46DraggedAdorner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/46-DragDropListBox/Images/46DraggedAdorner.png -------------------------------------------------------------------------------- /46-DragDropListBox/Images/46InsertionAdorner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/46-DragDropListBox/Images/46InsertionAdorner.png -------------------------------------------------------------------------------- /46-DragDropListBox/OriginalScreenshots/46DraggedAdorner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/46-DragDropListBox/OriginalScreenshots/46DraggedAdorner.png -------------------------------------------------------------------------------- /46-DragDropListBox/OriginalScreenshots/46InsertionAdorner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/46-DragDropListBox/OriginalScreenshots/46InsertionAdorner.png -------------------------------------------------------------------------------- /47-ExpandTreeViewPart1/ExpandTreeViewSilverlight/ExpandTreeViewSilverlight.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/47-ExpandTreeViewPart1/ExpandTreeViewSilverlight/ExpandTreeViewSilverlight.suo -------------------------------------------------------------------------------- /47-ExpandTreeViewPart1/ExpandTreeViewSilverlight/Properties/AppManifest.xml: -------------------------------------------------------------------------------- 1 |  4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /47-ExpandTreeViewPart1/ExpandTreeViewSilverlight/SilverlightToolkit/Microsoft.Windows.Controls.DataVisualization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/47-ExpandTreeViewPart1/ExpandTreeViewSilverlight/SilverlightToolkit/Microsoft.Windows.Controls.DataVisualization.dll -------------------------------------------------------------------------------- /47-ExpandTreeViewPart1/ExpandTreeViewSilverlight/SilverlightToolkit/Microsoft.Windows.Controls.Input.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/47-ExpandTreeViewPart1/ExpandTreeViewSilverlight/SilverlightToolkit/Microsoft.Windows.Controls.Input.dll -------------------------------------------------------------------------------- /47-ExpandTreeViewPart1/ExpandTreeViewSilverlight/SilverlightToolkit/Microsoft.Windows.Controls.Theming.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/47-ExpandTreeViewPart1/ExpandTreeViewSilverlight/SilverlightToolkit/Microsoft.Windows.Controls.Theming.dll -------------------------------------------------------------------------------- /47-ExpandTreeViewPart1/ExpandTreeViewSilverlight/SilverlightToolkit/Microsoft.Windows.Controls.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/47-ExpandTreeViewPart1/ExpandTreeViewSilverlight/SilverlightToolkit/Microsoft.Windows.Controls.dll -------------------------------------------------------------------------------- /47-ExpandTreeViewPart1/ExpandTreeViewWPF - VS 2010/ExpandTreeViewWPF.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/47-ExpandTreeViewPart1/ExpandTreeViewWPF - VS 2010/ExpandTreeViewWPF.suo -------------------------------------------------------------------------------- /47-ExpandTreeViewPart1/ExpandTreeViewWPF - VS 2010/ExpandTreeViewWPF_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/47-ExpandTreeViewPart1/ExpandTreeViewWPF - VS 2010/ExpandTreeViewWPF_TemporaryKey.pfx -------------------------------------------------------------------------------- /47-ExpandTreeViewPart1/ExpandTreeViewWPF - VS 2010/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /47-ExpandTreeViewPart1/ExpandTreeViewWPF - VS 2010/_UpgradeReport_Files/UpgradeReport_Minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/47-ExpandTreeViewPart1/ExpandTreeViewWPF - VS 2010/_UpgradeReport_Files/UpgradeReport_Minus.gif -------------------------------------------------------------------------------- /47-ExpandTreeViewPart1/ExpandTreeViewWPF - VS 2010/_UpgradeReport_Files/UpgradeReport_Plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/47-ExpandTreeViewPart1/ExpandTreeViewWPF - VS 2010/_UpgradeReport_Files/UpgradeReport_Plus.gif -------------------------------------------------------------------------------- /47-ExpandTreeViewPart1/ExpandTreeViewWPF/ExpandTreeViewWPF.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/47-ExpandTreeViewPart1/ExpandTreeViewWPF/ExpandTreeViewWPF.suo -------------------------------------------------------------------------------- /47-ExpandTreeViewPart1/ExpandTreeViewWPF/ExpandTreeViewWPF_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/47-ExpandTreeViewPart1/ExpandTreeViewWPF/ExpandTreeViewWPF_TemporaryKey.pfx -------------------------------------------------------------------------------- /47-ExpandTreeViewPart1/ExpandTreeViewWPF/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /47-ExpandTreeViewPart1/Images/47ExpandTreeViewPart1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/47-ExpandTreeViewPart1/Images/47ExpandTreeViewPart1.PNG -------------------------------------------------------------------------------- /47-ExpandTreeViewPart1/Images/47ExpandTreeViewSilverlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/47-ExpandTreeViewPart1/Images/47ExpandTreeViewSilverlight.png -------------------------------------------------------------------------------- /48-ExpandTreeViewPart2/ExpandTreeViewSilverlight/ExpandTreeViewSilverlight.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/48-ExpandTreeViewPart2/ExpandTreeViewSilverlight/ExpandTreeViewSilverlight.suo -------------------------------------------------------------------------------- /48-ExpandTreeViewPart2/ExpandTreeViewSilverlight/Properties/AppManifest.xml: -------------------------------------------------------------------------------- 1 |  4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /48-ExpandTreeViewPart2/ExpandTreeViewSilverlight/SilverlightToolkit/Microsoft.Windows.Controls.DataVisualization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/48-ExpandTreeViewPart2/ExpandTreeViewSilverlight/SilverlightToolkit/Microsoft.Windows.Controls.DataVisualization.dll -------------------------------------------------------------------------------- /48-ExpandTreeViewPart2/ExpandTreeViewSilverlight/SilverlightToolkit/Microsoft.Windows.Controls.Input.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/48-ExpandTreeViewPart2/ExpandTreeViewSilverlight/SilverlightToolkit/Microsoft.Windows.Controls.Input.dll -------------------------------------------------------------------------------- /48-ExpandTreeViewPart2/ExpandTreeViewSilverlight/SilverlightToolkit/Microsoft.Windows.Controls.Theming.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/48-ExpandTreeViewPart2/ExpandTreeViewSilverlight/SilverlightToolkit/Microsoft.Windows.Controls.Theming.dll -------------------------------------------------------------------------------- /48-ExpandTreeViewPart2/ExpandTreeViewSilverlight/SilverlightToolkit/Microsoft.Windows.Controls.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/48-ExpandTreeViewPart2/ExpandTreeViewSilverlight/SilverlightToolkit/Microsoft.Windows.Controls.dll -------------------------------------------------------------------------------- /48-ExpandTreeViewPart2/ExpandTreeViewWPF/ExpandTreeViewWPF.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/48-ExpandTreeViewPart2/ExpandTreeViewWPF/ExpandTreeViewWPF.suo -------------------------------------------------------------------------------- /48-ExpandTreeViewPart2/ExpandTreeViewWPF/ExpandTreeViewWPF_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/48-ExpandTreeViewPart2/ExpandTreeViewWPF/ExpandTreeViewWPF_TemporaryKey.pfx -------------------------------------------------------------------------------- /48-ExpandTreeViewPart2/ExpandTreeViewWPF/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /48-ExpandTreeViewPart2/Images/48ExpandTreeViewPart2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/48-ExpandTreeViewPart2/Images/48ExpandTreeViewPart2.PNG -------------------------------------------------------------------------------- /48-ExpandTreeViewPart2/Images/Oredev.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/48-ExpandTreeViewPart2/Images/Oredev.jpg -------------------------------------------------------------------------------- /49-ExpandTreeViewPart3/ExpandTreeViewSilverlight/ExpandTreeViewSilverlight.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/49-ExpandTreeViewPart3/ExpandTreeViewSilverlight/ExpandTreeViewSilverlight.suo -------------------------------------------------------------------------------- /49-ExpandTreeViewPart3/ExpandTreeViewSilverlight/Properties/AppManifest.xml: -------------------------------------------------------------------------------- 1 |  4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /49-ExpandTreeViewPart3/ExpandTreeViewSilverlight/SilverlightToolkit/Microsoft.Windows.Controls.DataVisualization.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/49-ExpandTreeViewPart3/ExpandTreeViewSilverlight/SilverlightToolkit/Microsoft.Windows.Controls.DataVisualization.dll -------------------------------------------------------------------------------- /49-ExpandTreeViewPart3/ExpandTreeViewSilverlight/SilverlightToolkit/Microsoft.Windows.Controls.Input.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/49-ExpandTreeViewPart3/ExpandTreeViewSilverlight/SilverlightToolkit/Microsoft.Windows.Controls.Input.dll -------------------------------------------------------------------------------- /49-ExpandTreeViewPart3/ExpandTreeViewSilverlight/SilverlightToolkit/Microsoft.Windows.Controls.Theming.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/49-ExpandTreeViewPart3/ExpandTreeViewSilverlight/SilverlightToolkit/Microsoft.Windows.Controls.Theming.dll -------------------------------------------------------------------------------- /49-ExpandTreeViewPart3/ExpandTreeViewSilverlight/SilverlightToolkit/Microsoft.Windows.Controls.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/49-ExpandTreeViewPart3/ExpandTreeViewSilverlight/SilverlightToolkit/Microsoft.Windows.Controls.dll -------------------------------------------------------------------------------- /49-ExpandTreeViewPart3/ExpandTreeViewSilverlight/_UpgradeReport_Files/UpgradeReport_Minus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/49-ExpandTreeViewPart3/ExpandTreeViewSilverlight/_UpgradeReport_Files/UpgradeReport_Minus.gif -------------------------------------------------------------------------------- /49-ExpandTreeViewPart3/ExpandTreeViewSilverlight/_UpgradeReport_Files/UpgradeReport_Plus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/49-ExpandTreeViewPart3/ExpandTreeViewSilverlight/_UpgradeReport_Files/UpgradeReport_Plus.gif -------------------------------------------------------------------------------- /49-ExpandTreeViewPart3/ExpandTreeViewWPF/ExpandTreeViewWPF.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/49-ExpandTreeViewPart3/ExpandTreeViewWPF/ExpandTreeViewWPF.suo -------------------------------------------------------------------------------- /49-ExpandTreeViewPart3/ExpandTreeViewWPF/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /49-ExpandTreeViewPart3/Images/49ExpandTreeViewPart3.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/49-ExpandTreeViewPart3/Images/49ExpandTreeViewPart3.PNG -------------------------------------------------------------------------------- /52-DataVirtualization/DataVirtualization.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/52-DataVirtualization/DataVirtualization.pdf -------------------------------------------------------------------------------- /52-DataVirtualization/VirtualizationSilverlight/VirtualizationSilverlight.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/52-DataVirtualization/VirtualizationSilverlight/VirtualizationSilverlight.suo -------------------------------------------------------------------------------- /52-DataVirtualization/VirtualizationSilverlight/VirtualizationSilverlight/Properties/AppManifest.xml: -------------------------------------------------------------------------------- 1 |  4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /52-DataVirtualization/VirtualizationWPF/VirtualizationWPF.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/52-DataVirtualization/VirtualizationWPF/VirtualizationWPF.suo -------------------------------------------------------------------------------- /52-DataVirtualization/VirtualizationWPF/VirtualizationWPF/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /52-DataVirtualization/VirtualizationWPF/VirtualizationWPF/VirtualizationWPF_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/52-DataVirtualization/VirtualizationWPF/VirtualizationWPF/VirtualizationWPF_TemporaryKey.pfx -------------------------------------------------------------------------------- /52-DataVirtualization/VirtualizationWPF/WPF.Themes/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /54-PieChartWithLabels/Images/LabeledPieChartArcMidpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/54-PieChartWithLabels/Images/LabeledPieChartArcMidpoint.png -------------------------------------------------------------------------------- /54-PieChartWithLabels/Images/LabeledPieChartArcMidpoint1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/54-PieChartWithLabels/Images/LabeledPieChartArcMidpoint1.png -------------------------------------------------------------------------------- /54-PieChartWithLabels/Images/LabeledPieChartArcMidpoint2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/54-PieChartWithLabels/Images/LabeledPieChartArcMidpoint2.png -------------------------------------------------------------------------------- /54-PieChartWithLabels/Images/LabeledPieChartAuto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/54-PieChartWithLabels/Images/LabeledPieChartAuto.png -------------------------------------------------------------------------------- /54-PieChartWithLabels/Images/LabeledPieChartAuto1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/54-PieChartWithLabels/Images/LabeledPieChartAuto1.png -------------------------------------------------------------------------------- /54-PieChartWithLabels/Images/LabeledPieChartAuto2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/54-PieChartWithLabels/Images/LabeledPieChartAuto2.png -------------------------------------------------------------------------------- /54-PieChartWithLabels/Images/LabeledPieChartBasic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/54-PieChartWithLabels/Images/LabeledPieChartBasic.png -------------------------------------------------------------------------------- /54-PieChartWithLabels/Images/LabeledPieChartConnected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/54-PieChartWithLabels/Images/LabeledPieChartConnected.png -------------------------------------------------------------------------------- /54-PieChartWithLabels/Images/LabeledPieChartConnected1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/54-PieChartWithLabels/Images/LabeledPieChartConnected1.png -------------------------------------------------------------------------------- /54-PieChartWithLabels/Images/LabeledPieChartConnected2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/54-PieChartWithLabels/Images/LabeledPieChartConnected2.png -------------------------------------------------------------------------------- /54-PieChartWithLabels/Images/LabeledPieChartDataTemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/54-PieChartWithLabels/Images/LabeledPieChartDataTemplate.png -------------------------------------------------------------------------------- /54-PieChartWithLabels/Images/LabeledPieChartModes.design: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/54-PieChartWithLabels/Images/LabeledPieChartModes.design -------------------------------------------------------------------------------- /54-PieChartWithLabels/PieChartWithLabels - WPF/CustomControls/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /54-PieChartWithLabels/PieChartWithLabels - WPF/PieChartWithLabels.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/54-PieChartWithLabels/PieChartWithLabels - WPF/PieChartWithLabels.suo -------------------------------------------------------------------------------- /54-PieChartWithLabels/PieChartWithLabels - WPF/PieChartWithLabels/PieChartWithLabels_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/54-PieChartWithLabels/PieChartWithLabels - WPF/PieChartWithLabels/PieChartWithLabels_TemporaryKey.pfx -------------------------------------------------------------------------------- /54-PieChartWithLabels/PieChartWithLabels - WPF/PieChartWithLabels/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /55-PieChartWithLabelsSilverlight/Images/LabeledPieChartArcMidpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/55-PieChartWithLabelsSilverlight/Images/LabeledPieChartArcMidpoint.png -------------------------------------------------------------------------------- /55-PieChartWithLabelsSilverlight/Images/LabeledPieChartArcMidpoint1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/55-PieChartWithLabelsSilverlight/Images/LabeledPieChartArcMidpoint1.png -------------------------------------------------------------------------------- /55-PieChartWithLabelsSilverlight/Images/LabeledPieChartArcMidpoint2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/55-PieChartWithLabelsSilverlight/Images/LabeledPieChartArcMidpoint2.png -------------------------------------------------------------------------------- /55-PieChartWithLabelsSilverlight/Images/LabeledPieChartAuto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/55-PieChartWithLabelsSilverlight/Images/LabeledPieChartAuto.png -------------------------------------------------------------------------------- /55-PieChartWithLabelsSilverlight/Images/LabeledPieChartAuto1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/55-PieChartWithLabelsSilverlight/Images/LabeledPieChartAuto1.png -------------------------------------------------------------------------------- /55-PieChartWithLabelsSilverlight/Images/LabeledPieChartAuto2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/55-PieChartWithLabelsSilverlight/Images/LabeledPieChartAuto2.png -------------------------------------------------------------------------------- /55-PieChartWithLabelsSilverlight/Images/LabeledPieChartBasic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/55-PieChartWithLabelsSilverlight/Images/LabeledPieChartBasic.png -------------------------------------------------------------------------------- /55-PieChartWithLabelsSilverlight/Images/LabeledPieChartConnected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/55-PieChartWithLabelsSilverlight/Images/LabeledPieChartConnected.png -------------------------------------------------------------------------------- /55-PieChartWithLabelsSilverlight/Images/LabeledPieChartConnected1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/55-PieChartWithLabelsSilverlight/Images/LabeledPieChartConnected1.png -------------------------------------------------------------------------------- /55-PieChartWithLabelsSilverlight/Images/LabeledPieChartConnected2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/55-PieChartWithLabelsSilverlight/Images/LabeledPieChartConnected2.png -------------------------------------------------------------------------------- /55-PieChartWithLabelsSilverlight/Images/LabeledPieChartDataTemplate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/55-PieChartWithLabelsSilverlight/Images/LabeledPieChartDataTemplate.png -------------------------------------------------------------------------------- /56-PieChartWithLabelsSilverlight/Images/56PieChartWithLabelsSilverlight.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/56-PieChartWithLabelsSilverlight/Images/56PieChartWithLabelsSilverlight.PNG -------------------------------------------------------------------------------- /56-PieChartWithLabelsSilverlight/PieChartWithLabelsSL/PieChartWithLabels - Silverlight/PieChartWithLabels.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/56-PieChartWithLabelsSilverlight/PieChartWithLabelsSL/PieChartWithLabels - Silverlight/PieChartWithLabels.suo -------------------------------------------------------------------------------- /57-DataVirtualization/DataVirtualization - WPF/DataVirtualization.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/57-DataVirtualization/DataVirtualization - WPF/DataVirtualization.suo -------------------------------------------------------------------------------- /57-DataVirtualization/DataVirtualization - WPF/DataVirtualization/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /58-MultipleStyles/Images/MultipleStyles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/58-MultipleStyles/Images/MultipleStyles.png -------------------------------------------------------------------------------- /58-MultipleStyles/MultipleStyles/MultipleStyles.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/58-MultipleStyles/MultipleStyles/MultipleStyles.suo -------------------------------------------------------------------------------- /58-MultipleStyles/MultipleStyles/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /59-WPFCollectionViewSource/Images/WPFCollectionViewSource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/59-WPFCollectionViewSource/Images/WPFCollectionViewSource.png -------------------------------------------------------------------------------- /59-WPFCollectionViewSource/WPFCollectionViewSource/WPFCollectionViewSource.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/59-WPFCollectionViewSource/WPFCollectionViewSource/WPFCollectionViewSource.suo -------------------------------------------------------------------------------- /59-WPFCollectionViewSource/WPFCollectionViewSource/WPFCollectionViewSource/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /60-SLCollectionViewSource/Images/60SLCollectionViewSource.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/60-SLCollectionViewSource/Images/60SLCollectionViewSource.PNG -------------------------------------------------------------------------------- /60-SLCollectionViewSource/SLCollectionViewSource.xap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/60-SLCollectionViewSource/SLCollectionViewSource.xap -------------------------------------------------------------------------------- /60-SLCollectionViewSource/SLCollectionViewSource/SLCollectionViewSource.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/60-SLCollectionViewSource/SLCollectionViewSource/SLCollectionViewSource.suo -------------------------------------------------------------------------------- /60-SLCollectionViewSource/SLCollectionViewSource/SLCollectionViewSource/Properties/AppManifest.xml: -------------------------------------------------------------------------------- 1 |  4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /61-OredevComputerWeekly/Images/ComputerWeeklyAwards.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/61-OredevComputerWeekly/Images/ComputerWeeklyAwards.bmp -------------------------------------------------------------------------------- /61-OredevComputerWeekly/Images/Oredev2009.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/61-OredevComputerWeekly/Images/Oredev2009.gif -------------------------------------------------------------------------------- /62-DataVirtualizationFiltering/DVFilter/DVFilter.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/62-DataVirtualizationFiltering/DVFilter/DVFilter.suo -------------------------------------------------------------------------------- /62-DataVirtualizationFiltering/DVFilter/ReusableControls/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /62-DataVirtualizationFiltering/Images/DVFiltering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/62-DataVirtualizationFiltering/Images/DVFiltering.png -------------------------------------------------------------------------------- /62-DataVirtualizationFiltering/InitializeDatabase/InitializeDatabase.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/62-DataVirtualizationFiltering/InitializeDatabase/InitializeDatabase.suo -------------------------------------------------------------------------------- /62-DataVirtualizationFiltering/InitializeDatabase/InitializeDatabase/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /64-DataVirtualizationFilteringSorting/DVFilterSort/DVFilterSort.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/64-DataVirtualizationFilteringSorting/DVFilterSort/DVFilterSort.suo -------------------------------------------------------------------------------- /64-DataVirtualizationFilteringSorting/DVFilterSort/DVFilterSort/CustomersDataSet.xsc: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /64-DataVirtualizationFilteringSorting/DVFilterSort/DVFilterSort/CustomersDataSet.xss: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /64-DataVirtualizationFilteringSorting/DVFilterSort/ReusableControls/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /64-DataVirtualizationFilteringSorting/Images/DVFilteringSorting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/64-DataVirtualizationFilteringSorting/Images/DVFilteringSorting.png -------------------------------------------------------------------------------- /66-SortingHierarchy/Images/66SortingHierarchy.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/66-SortingHierarchy/Images/66SortingHierarchy.PNG -------------------------------------------------------------------------------- /66-SortingHierarchy/SortingHierarchy - Silverlight/SortingHierarchy.Web/ClientBin/SortingHierarchy.xap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/66-SortingHierarchy/SortingHierarchy - Silverlight/SortingHierarchy.Web/ClientBin/SortingHierarchy.xap -------------------------------------------------------------------------------- /66-SortingHierarchy/SortingHierarchy - Silverlight/SortingHierarchy/Properties/AppManifest.xml: -------------------------------------------------------------------------------- 1 |  4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /66-SortingHierarchy/SortingHierarchy - Silverlight/SortingHierarchy/SortingHierarchy.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/66-SortingHierarchy/SortingHierarchy - Silverlight/SortingHierarchy/SortingHierarchy.suo -------------------------------------------------------------------------------- /66-SortingHierarchy/SortingHierarchy - WPF/SortingHierarchy/SortingHierarchy.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/66-SortingHierarchy/SortingHierarchy - WPF/SortingHierarchy/SortingHierarchy.suo -------------------------------------------------------------------------------- /66-SortingHierarchy/SortingHierarchy - WPF/SortingHierarchy/SortingHierarchy/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /67-PieChartWithLabelsUpdates/Images/67PieChartWithLabels.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/67-PieChartWithLabelsUpdates/Images/67PieChartWithLabels.PNG -------------------------------------------------------------------------------- /67-PieChartWithLabelsUpdates/PieChartWithLabels - Silverlight/PieChartWithLabels.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/67-PieChartWithLabelsUpdates/PieChartWithLabels - Silverlight/PieChartWithLabels.suo -------------------------------------------------------------------------------- /67-PieChartWithLabelsUpdates/PieChartWithLabels - WPF/Controls/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /67-PieChartWithLabelsUpdates/PieChartWithLabels - WPF/PieChartWithLabels/PieChartWithLabels.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/67-PieChartWithLabelsUpdates/PieChartWithLabels - WPF/PieChartWithLabels/PieChartWithLabels.suo -------------------------------------------------------------------------------- /67-PieChartWithLabelsUpdates/PieChartWithLabels - WPF/PieChartWithLabels/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /67-PieChartWithLabelsUpdates/PieChartWithLabels.xap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/67-PieChartWithLabelsUpdates/PieChartWithLabels.xap -------------------------------------------------------------------------------- /69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums.v11.suo -------------------------------------------------------------------------------- /69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums/Assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums/Assets/Logo.png -------------------------------------------------------------------------------- /69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums/Assets/SmallLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums/Assets/SmallLogo.png -------------------------------------------------------------------------------- /69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums/Assets/SplashScreen.png -------------------------------------------------------------------------------- /69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums/Assets/StoreLogo.png -------------------------------------------------------------------------------- /69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums/bin/Debug/AppX/Assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums/bin/Debug/AppX/Assets/Logo.png -------------------------------------------------------------------------------- /69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums/bin/Debug/AppX/Assets/SmallLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums/bin/Debug/AppX/Assets/SmallLogo.png -------------------------------------------------------------------------------- /69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums/bin/Debug/AppX/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums/bin/Debug/AppX/Assets/SplashScreen.png -------------------------------------------------------------------------------- /69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums/bin/Debug/AppX/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums/bin/Debug/AppX/Assets/StoreLogo.png -------------------------------------------------------------------------------- /69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums/bin/Debug/AppX/Assets/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums/bin/Debug/AppX/Assets/Thumbs.db -------------------------------------------------------------------------------- /69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums/bin/Debug/AppX/resources.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums/bin/Debug/AppX/resources.pri -------------------------------------------------------------------------------- /69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums/bin/Debug/BindRadioButtonsToEnums.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums/bin/Debug/BindRadioButtonsToEnums.exe -------------------------------------------------------------------------------- /69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums/bin/Debug/BindRadioButtonsToEnums.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums/bin/Debug/BindRadioButtonsToEnums.pdb -------------------------------------------------------------------------------- /69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums/bin/Debug/resources.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums/bin/Debug/resources.pri -------------------------------------------------------------------------------- /69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums/obj/Debug/BindRadioButtonsToEnums.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums/obj/Debug/BindRadioButtonsToEnums.exe -------------------------------------------------------------------------------- /69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums/obj/Debug/BindRadioButtonsToEnums.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums/obj/Debug/BindRadioButtonsToEnums.pdb -------------------------------------------------------------------------------- /69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums/obj/Debug/BlankPage1.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums/obj/Debug/BlankPage1.g.cs -------------------------------------------------------------------------------- /69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums/obj/Debug/Common/StandardStyles.g.cs: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums/obj/Debug/Common/StandardStyles.g.i.cs: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums/obj/Debug/LanguageQualifiers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums/obj/Debug/LanguageQualifiers.txt -------------------------------------------------------------------------------- /69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums/obj/Debug/ProjectArchitectures.txt: -------------------------------------------------------------------------------- 1 | C:\Work\BlogExperiments\BindRadioButtonsToEnums1\BindRadioButtonsToEnums\BindRadioButtonsToEnums.csproj;neutral 2 | -------------------------------------------------------------------------------- /69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums/obj/Debug/Styles/ControlStyles.g.cs: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums/obj/Debug/Styles/ControlStyles.g.i.cs: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums/obj/Debug/layout.resfiles: -------------------------------------------------------------------------------- 1 | Assets\Logo.png 2 | Assets\SmallLogo.png 3 | Assets\SplashScreen.png 4 | Assets\StoreLogo.png 5 | App.xaml 6 | Common\StandardStyles.xaml 7 | MainPage.xaml 8 | Styles\ControlStyles.xaml 9 | -------------------------------------------------------------------------------- /69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums/obj/Debug/layout.resfiles.intermediate: -------------------------------------------------------------------------------- 1 | Assets\Logo.png 2 | Assets\SmallLogo.png 3 | Assets\SplashScreen.png 4 | Assets\StoreLogo.png 5 | App.xaml 6 | Common\StandardStyles.xaml 7 | MainPage.xaml 8 | Styles\ControlStyles.xaml 9 | -------------------------------------------------------------------------------- /69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums/obj/Debug/pri.resfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums/obj/Debug/pri.resfiles -------------------------------------------------------------------------------- /69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums/obj/Debug/pri.resfiles.intermediate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums/obj/Debug/pri.resfiles.intermediate -------------------------------------------------------------------------------- /69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums/obj/Debug/resources.resfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/69-BindRadioButtonsToEnumsPart1/BindRadioButtonsToEnums1/BindRadioButtonsToEnums/obj/Debug/resources.resfiles -------------------------------------------------------------------------------- /69-BindRadioButtonsToEnumsPart1/Images/BindRadioButtonsToEnums1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/69-BindRadioButtonsToEnumsPart1/Images/BindRadioButtonsToEnums1.png -------------------------------------------------------------------------------- /70-BindRadioButtonsToEnumsPart2/BindRadioButtonsToEnums2/BindRadioButtonsToEnums.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/70-BindRadioButtonsToEnumsPart2/BindRadioButtonsToEnums2/BindRadioButtonsToEnums.v11.suo -------------------------------------------------------------------------------- /70-BindRadioButtonsToEnumsPart2/BindRadioButtonsToEnums2/BindRadioButtonsToEnums/Assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/70-BindRadioButtonsToEnumsPart2/BindRadioButtonsToEnums2/BindRadioButtonsToEnums/Assets/Logo.png -------------------------------------------------------------------------------- /70-BindRadioButtonsToEnumsPart2/BindRadioButtonsToEnums2/BindRadioButtonsToEnums/Assets/SmallLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/70-BindRadioButtonsToEnumsPart2/BindRadioButtonsToEnums2/BindRadioButtonsToEnums/Assets/SmallLogo.png -------------------------------------------------------------------------------- /70-BindRadioButtonsToEnumsPart2/BindRadioButtonsToEnums2/BindRadioButtonsToEnums/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/70-BindRadioButtonsToEnumsPart2/BindRadioButtonsToEnums2/BindRadioButtonsToEnums/Assets/SplashScreen.png -------------------------------------------------------------------------------- /70-BindRadioButtonsToEnumsPart2/BindRadioButtonsToEnums2/BindRadioButtonsToEnums/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/70-BindRadioButtonsToEnumsPart2/BindRadioButtonsToEnums2/BindRadioButtonsToEnums/Assets/StoreLogo.png -------------------------------------------------------------------------------- /70-BindRadioButtonsToEnumsPart2/BindRadioButtonsToEnums2/BindRadioButtonsToEnums/bin/Debug/AppX/Assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/70-BindRadioButtonsToEnumsPart2/BindRadioButtonsToEnums2/BindRadioButtonsToEnums/bin/Debug/AppX/Assets/Logo.png -------------------------------------------------------------------------------- /70-BindRadioButtonsToEnumsPart2/BindRadioButtonsToEnums2/BindRadioButtonsToEnums/bin/Debug/AppX/Assets/SmallLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/70-BindRadioButtonsToEnumsPart2/BindRadioButtonsToEnums2/BindRadioButtonsToEnums/bin/Debug/AppX/Assets/SmallLogo.png -------------------------------------------------------------------------------- /70-BindRadioButtonsToEnumsPart2/BindRadioButtonsToEnums2/BindRadioButtonsToEnums/bin/Debug/AppX/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/70-BindRadioButtonsToEnumsPart2/BindRadioButtonsToEnums2/BindRadioButtonsToEnums/bin/Debug/AppX/Assets/SplashScreen.png -------------------------------------------------------------------------------- /70-BindRadioButtonsToEnumsPart2/BindRadioButtonsToEnums2/BindRadioButtonsToEnums/bin/Debug/AppX/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/70-BindRadioButtonsToEnumsPart2/BindRadioButtonsToEnums2/BindRadioButtonsToEnums/bin/Debug/AppX/Assets/StoreLogo.png -------------------------------------------------------------------------------- /70-BindRadioButtonsToEnumsPart2/BindRadioButtonsToEnums2/BindRadioButtonsToEnums/bin/Debug/AppX/resources.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/70-BindRadioButtonsToEnumsPart2/BindRadioButtonsToEnums2/BindRadioButtonsToEnums/bin/Debug/AppX/resources.pri -------------------------------------------------------------------------------- /70-BindRadioButtonsToEnumsPart2/BindRadioButtonsToEnums2/BindRadioButtonsToEnums/bin/Debug/BindRadioButtonsToEnums.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/70-BindRadioButtonsToEnumsPart2/BindRadioButtonsToEnums2/BindRadioButtonsToEnums/bin/Debug/BindRadioButtonsToEnums.exe -------------------------------------------------------------------------------- /70-BindRadioButtonsToEnumsPart2/BindRadioButtonsToEnums2/BindRadioButtonsToEnums/bin/Debug/BindRadioButtonsToEnums.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/70-BindRadioButtonsToEnumsPart2/BindRadioButtonsToEnums2/BindRadioButtonsToEnums/bin/Debug/BindRadioButtonsToEnums.pdb -------------------------------------------------------------------------------- /70-BindRadioButtonsToEnumsPart2/BindRadioButtonsToEnums2/BindRadioButtonsToEnums/bin/Debug/resources.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/70-BindRadioButtonsToEnumsPart2/BindRadioButtonsToEnums2/BindRadioButtonsToEnums/bin/Debug/resources.pri -------------------------------------------------------------------------------- /70-BindRadioButtonsToEnumsPart2/BindRadioButtonsToEnums2/BindRadioButtonsToEnums/obj/Debug/BindRadioButtonsToEnums.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/70-BindRadioButtonsToEnumsPart2/BindRadioButtonsToEnums2/BindRadioButtonsToEnums/obj/Debug/BindRadioButtonsToEnums.exe -------------------------------------------------------------------------------- /70-BindRadioButtonsToEnumsPart2/BindRadioButtonsToEnums2/BindRadioButtonsToEnums/obj/Debug/BindRadioButtonsToEnums.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/70-BindRadioButtonsToEnumsPart2/BindRadioButtonsToEnums2/BindRadioButtonsToEnums/obj/Debug/BindRadioButtonsToEnums.pdb -------------------------------------------------------------------------------- /70-BindRadioButtonsToEnumsPart2/BindRadioButtonsToEnums2/BindRadioButtonsToEnums/obj/Debug/BlankPage1.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/70-BindRadioButtonsToEnumsPart2/BindRadioButtonsToEnums2/BindRadioButtonsToEnums/obj/Debug/BlankPage1.g.cs -------------------------------------------------------------------------------- /70-BindRadioButtonsToEnumsPart2/BindRadioButtonsToEnums2/BindRadioButtonsToEnums/obj/Debug/Common/StandardStyles.g.cs: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /70-BindRadioButtonsToEnumsPart2/BindRadioButtonsToEnums2/BindRadioButtonsToEnums/obj/Debug/Common/StandardStyles.g.i.cs: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /70-BindRadioButtonsToEnumsPart2/BindRadioButtonsToEnums2/BindRadioButtonsToEnums/obj/Debug/LanguageQualifiers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/70-BindRadioButtonsToEnumsPart2/BindRadioButtonsToEnums2/BindRadioButtonsToEnums/obj/Debug/LanguageQualifiers.txt -------------------------------------------------------------------------------- /70-BindRadioButtonsToEnumsPart2/BindRadioButtonsToEnums2/BindRadioButtonsToEnums/obj/Debug/ProjectArchitectures.txt: -------------------------------------------------------------------------------- 1 | C:\Work\BlogExperiments\BindRadioButtonsToEnums2\BindRadioButtonsToEnums\BindRadioButtonsToEnums.csproj;neutral 2 | -------------------------------------------------------------------------------- /70-BindRadioButtonsToEnumsPart2/BindRadioButtonsToEnums2/BindRadioButtonsToEnums/obj/Debug/Styles/ControlStyles.g.cs: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /70-BindRadioButtonsToEnumsPart2/BindRadioButtonsToEnums2/BindRadioButtonsToEnums/obj/Debug/Styles/ControlStyles.g.i.cs: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /70-BindRadioButtonsToEnumsPart2/BindRadioButtonsToEnums2/BindRadioButtonsToEnums/obj/Debug/layout.resfiles: -------------------------------------------------------------------------------- 1 | Assets\Logo.png 2 | Assets\SmallLogo.png 3 | Assets\SplashScreen.png 4 | Assets\StoreLogo.png 5 | App.xaml 6 | Common\StandardStyles.xaml 7 | MainPage.xaml 8 | Styles\ControlStyles.xaml 9 | -------------------------------------------------------------------------------- /70-BindRadioButtonsToEnumsPart2/BindRadioButtonsToEnums2/BindRadioButtonsToEnums/obj/Debug/layout.resfiles.intermediate: -------------------------------------------------------------------------------- 1 | Assets\Logo.png 2 | Assets\SmallLogo.png 3 | Assets\SplashScreen.png 4 | Assets\StoreLogo.png 5 | App.xaml 6 | Common\StandardStyles.xaml 7 | MainPage.xaml 8 | Styles\ControlStyles.xaml 9 | -------------------------------------------------------------------------------- /70-BindRadioButtonsToEnumsPart2/BindRadioButtonsToEnums2/BindRadioButtonsToEnums/obj/Debug/pri.resfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/70-BindRadioButtonsToEnumsPart2/BindRadioButtonsToEnums2/BindRadioButtonsToEnums/obj/Debug/pri.resfiles -------------------------------------------------------------------------------- /70-BindRadioButtonsToEnumsPart2/BindRadioButtonsToEnums2/BindRadioButtonsToEnums/obj/Debug/pri.resfiles.intermediate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/70-BindRadioButtonsToEnumsPart2/BindRadioButtonsToEnums2/BindRadioButtonsToEnums/obj/Debug/pri.resfiles.intermediate -------------------------------------------------------------------------------- /70-BindRadioButtonsToEnumsPart2/BindRadioButtonsToEnums2/BindRadioButtonsToEnums/obj/Debug/resources.resfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/70-BindRadioButtonsToEnumsPart2/BindRadioButtonsToEnums2/BindRadioButtonsToEnums/obj/Debug/resources.resfiles -------------------------------------------------------------------------------- /70-BindRadioButtonsToEnumsPart2/Images/BindRadioButtonsToEnums2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/70-BindRadioButtonsToEnumsPart2/Images/BindRadioButtonsToEnums2.png -------------------------------------------------------------------------------- /71-BindRadioButtonsToEnumsPart3/BindRadioButtonsToEnums3/BindRadioButtonsToEnums.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/71-BindRadioButtonsToEnumsPart3/BindRadioButtonsToEnums3/BindRadioButtonsToEnums.v11.suo -------------------------------------------------------------------------------- /71-BindRadioButtonsToEnumsPart3/BindRadioButtonsToEnums3/BindRadioButtonsToEnums/Assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/71-BindRadioButtonsToEnumsPart3/BindRadioButtonsToEnums3/BindRadioButtonsToEnums/Assets/Logo.png -------------------------------------------------------------------------------- /71-BindRadioButtonsToEnumsPart3/BindRadioButtonsToEnums3/BindRadioButtonsToEnums/Assets/SmallLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/71-BindRadioButtonsToEnumsPart3/BindRadioButtonsToEnums3/BindRadioButtonsToEnums/Assets/SmallLogo.png -------------------------------------------------------------------------------- /71-BindRadioButtonsToEnumsPart3/BindRadioButtonsToEnums3/BindRadioButtonsToEnums/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/71-BindRadioButtonsToEnumsPart3/BindRadioButtonsToEnums3/BindRadioButtonsToEnums/Assets/SplashScreen.png -------------------------------------------------------------------------------- /71-BindRadioButtonsToEnumsPart3/BindRadioButtonsToEnums3/BindRadioButtonsToEnums/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/71-BindRadioButtonsToEnumsPart3/BindRadioButtonsToEnums3/BindRadioButtonsToEnums/Assets/StoreLogo.png -------------------------------------------------------------------------------- /71-BindRadioButtonsToEnumsPart3/BindRadioButtonsToEnums3/BindRadioButtonsToEnums/bin/Debug/AppX/Assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/71-BindRadioButtonsToEnumsPart3/BindRadioButtonsToEnums3/BindRadioButtonsToEnums/bin/Debug/AppX/Assets/Logo.png -------------------------------------------------------------------------------- /71-BindRadioButtonsToEnumsPart3/BindRadioButtonsToEnums3/BindRadioButtonsToEnums/bin/Debug/AppX/Assets/SmallLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/71-BindRadioButtonsToEnumsPart3/BindRadioButtonsToEnums3/BindRadioButtonsToEnums/bin/Debug/AppX/Assets/SmallLogo.png -------------------------------------------------------------------------------- /71-BindRadioButtonsToEnumsPart3/BindRadioButtonsToEnums3/BindRadioButtonsToEnums/bin/Debug/AppX/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/71-BindRadioButtonsToEnumsPart3/BindRadioButtonsToEnums3/BindRadioButtonsToEnums/bin/Debug/AppX/Assets/SplashScreen.png -------------------------------------------------------------------------------- /71-BindRadioButtonsToEnumsPart3/BindRadioButtonsToEnums3/BindRadioButtonsToEnums/bin/Debug/AppX/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/71-BindRadioButtonsToEnumsPart3/BindRadioButtonsToEnums3/BindRadioButtonsToEnums/bin/Debug/AppX/Assets/StoreLogo.png -------------------------------------------------------------------------------- /71-BindRadioButtonsToEnumsPart3/BindRadioButtonsToEnums3/BindRadioButtonsToEnums/bin/Debug/AppX/resources.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/71-BindRadioButtonsToEnumsPart3/BindRadioButtonsToEnums3/BindRadioButtonsToEnums/bin/Debug/AppX/resources.pri -------------------------------------------------------------------------------- /71-BindRadioButtonsToEnumsPart3/BindRadioButtonsToEnums3/BindRadioButtonsToEnums/bin/Debug/BindRadioButtonsToEnums.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/71-BindRadioButtonsToEnumsPart3/BindRadioButtonsToEnums3/BindRadioButtonsToEnums/bin/Debug/BindRadioButtonsToEnums.exe -------------------------------------------------------------------------------- /71-BindRadioButtonsToEnumsPart3/BindRadioButtonsToEnums3/BindRadioButtonsToEnums/bin/Debug/BindRadioButtonsToEnums.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/71-BindRadioButtonsToEnumsPart3/BindRadioButtonsToEnums3/BindRadioButtonsToEnums/bin/Debug/BindRadioButtonsToEnums.pdb -------------------------------------------------------------------------------- /71-BindRadioButtonsToEnumsPart3/BindRadioButtonsToEnums3/BindRadioButtonsToEnums/bin/Debug/resources.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/71-BindRadioButtonsToEnumsPart3/BindRadioButtonsToEnums3/BindRadioButtonsToEnums/bin/Debug/resources.pri -------------------------------------------------------------------------------- /71-BindRadioButtonsToEnumsPart3/BindRadioButtonsToEnums3/BindRadioButtonsToEnums/obj/Debug/BindRadioButtonsToEnums.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/71-BindRadioButtonsToEnumsPart3/BindRadioButtonsToEnums3/BindRadioButtonsToEnums/obj/Debug/BindRadioButtonsToEnums.exe -------------------------------------------------------------------------------- /71-BindRadioButtonsToEnumsPart3/BindRadioButtonsToEnums3/BindRadioButtonsToEnums/obj/Debug/BindRadioButtonsToEnums.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/71-BindRadioButtonsToEnumsPart3/BindRadioButtonsToEnums3/BindRadioButtonsToEnums/obj/Debug/BindRadioButtonsToEnums.pdb -------------------------------------------------------------------------------- /71-BindRadioButtonsToEnumsPart3/BindRadioButtonsToEnums3/BindRadioButtonsToEnums/obj/Debug/BlankPage1.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/71-BindRadioButtonsToEnumsPart3/BindRadioButtonsToEnums3/BindRadioButtonsToEnums/obj/Debug/BlankPage1.g.cs -------------------------------------------------------------------------------- /71-BindRadioButtonsToEnumsPart3/BindRadioButtonsToEnums3/BindRadioButtonsToEnums/obj/Debug/Common/StandardStyles.g.cs: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /71-BindRadioButtonsToEnumsPart3/BindRadioButtonsToEnums3/BindRadioButtonsToEnums/obj/Debug/Common/StandardStyles.g.i.cs: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /71-BindRadioButtonsToEnumsPart3/BindRadioButtonsToEnums3/BindRadioButtonsToEnums/obj/Debug/LanguageQualifiers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/71-BindRadioButtonsToEnumsPart3/BindRadioButtonsToEnums3/BindRadioButtonsToEnums/obj/Debug/LanguageQualifiers.txt -------------------------------------------------------------------------------- /71-BindRadioButtonsToEnumsPart3/BindRadioButtonsToEnums3/BindRadioButtonsToEnums/obj/Debug/ProjectArchitectures.txt: -------------------------------------------------------------------------------- 1 | C:\Work\BlogExperiments\BindRadioButtonsToEnums3\BindRadioButtonsToEnums\BindRadioButtonsToEnums.csproj;neutral 2 | -------------------------------------------------------------------------------- /71-BindRadioButtonsToEnumsPart3/BindRadioButtonsToEnums3/BindRadioButtonsToEnums/obj/Debug/Styles/ControlStyles.g.cs: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /71-BindRadioButtonsToEnumsPart3/BindRadioButtonsToEnums3/BindRadioButtonsToEnums/obj/Debug/Styles/ControlStyles.g.i.cs: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /71-BindRadioButtonsToEnumsPart3/BindRadioButtonsToEnums3/BindRadioButtonsToEnums/obj/Debug/layout.resfiles: -------------------------------------------------------------------------------- 1 | Assets\Logo.png 2 | Assets\SmallLogo.png 3 | Assets\SplashScreen.png 4 | Assets\StoreLogo.png 5 | App.xaml 6 | Common\StandardStyles.xaml 7 | MainPage.xaml 8 | Styles\ControlStyles.xaml 9 | -------------------------------------------------------------------------------- /71-BindRadioButtonsToEnumsPart3/BindRadioButtonsToEnums3/BindRadioButtonsToEnums/obj/Debug/layout.resfiles.intermediate: -------------------------------------------------------------------------------- 1 | Assets\Logo.png 2 | Assets\SmallLogo.png 3 | Assets\SplashScreen.png 4 | Assets\StoreLogo.png 5 | App.xaml 6 | Common\StandardStyles.xaml 7 | MainPage.xaml 8 | Styles\ControlStyles.xaml 9 | -------------------------------------------------------------------------------- /71-BindRadioButtonsToEnumsPart3/BindRadioButtonsToEnums3/BindRadioButtonsToEnums/obj/Debug/pri.resfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/71-BindRadioButtonsToEnumsPart3/BindRadioButtonsToEnums3/BindRadioButtonsToEnums/obj/Debug/pri.resfiles -------------------------------------------------------------------------------- /71-BindRadioButtonsToEnumsPart3/BindRadioButtonsToEnums3/BindRadioButtonsToEnums/obj/Debug/pri.resfiles.intermediate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/71-BindRadioButtonsToEnumsPart3/BindRadioButtonsToEnums3/BindRadioButtonsToEnums/obj/Debug/pri.resfiles.intermediate -------------------------------------------------------------------------------- /71-BindRadioButtonsToEnumsPart3/BindRadioButtonsToEnums3/BindRadioButtonsToEnums/obj/Debug/resources.resfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/71-BindRadioButtonsToEnumsPart3/BindRadioButtonsToEnums3/BindRadioButtonsToEnums/obj/Debug/resources.resfiles -------------------------------------------------------------------------------- /71-BindRadioButtonsToEnumsPart3/Images/BindRadioButtonsToEnums3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/71-BindRadioButtonsToEnumsPart3/Images/BindRadioButtonsToEnums3.png -------------------------------------------------------------------------------- /72-BindRadioButtonsToEnumsPart4/BindRadioButtonsToEnums4/BindRadioButtonsToEnums.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/72-BindRadioButtonsToEnumsPart4/BindRadioButtonsToEnums4/BindRadioButtonsToEnums.v11.suo -------------------------------------------------------------------------------- /72-BindRadioButtonsToEnumsPart4/BindRadioButtonsToEnums4/BindRadioButtonsToEnums/Assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/72-BindRadioButtonsToEnumsPart4/BindRadioButtonsToEnums4/BindRadioButtonsToEnums/Assets/Logo.png -------------------------------------------------------------------------------- /72-BindRadioButtonsToEnumsPart4/BindRadioButtonsToEnums4/BindRadioButtonsToEnums/Assets/SmallLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/72-BindRadioButtonsToEnumsPart4/BindRadioButtonsToEnums4/BindRadioButtonsToEnums/Assets/SmallLogo.png -------------------------------------------------------------------------------- /72-BindRadioButtonsToEnumsPart4/BindRadioButtonsToEnums4/BindRadioButtonsToEnums/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/72-BindRadioButtonsToEnumsPart4/BindRadioButtonsToEnums4/BindRadioButtonsToEnums/Assets/SplashScreen.png -------------------------------------------------------------------------------- /72-BindRadioButtonsToEnumsPart4/BindRadioButtonsToEnums4/BindRadioButtonsToEnums/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/72-BindRadioButtonsToEnumsPart4/BindRadioButtonsToEnums4/BindRadioButtonsToEnums/Assets/StoreLogo.png -------------------------------------------------------------------------------- /72-BindRadioButtonsToEnumsPart4/BindRadioButtonsToEnums4/BindRadioButtonsToEnums/bin/Debug/AppX/Assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/72-BindRadioButtonsToEnumsPart4/BindRadioButtonsToEnums4/BindRadioButtonsToEnums/bin/Debug/AppX/Assets/Logo.png -------------------------------------------------------------------------------- /72-BindRadioButtonsToEnumsPart4/BindRadioButtonsToEnums4/BindRadioButtonsToEnums/bin/Debug/AppX/Assets/SmallLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/72-BindRadioButtonsToEnumsPart4/BindRadioButtonsToEnums4/BindRadioButtonsToEnums/bin/Debug/AppX/Assets/SmallLogo.png -------------------------------------------------------------------------------- /72-BindRadioButtonsToEnumsPart4/BindRadioButtonsToEnums4/BindRadioButtonsToEnums/bin/Debug/AppX/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/72-BindRadioButtonsToEnumsPart4/BindRadioButtonsToEnums4/BindRadioButtonsToEnums/bin/Debug/AppX/Assets/SplashScreen.png -------------------------------------------------------------------------------- /72-BindRadioButtonsToEnumsPart4/BindRadioButtonsToEnums4/BindRadioButtonsToEnums/bin/Debug/AppX/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/72-BindRadioButtonsToEnumsPart4/BindRadioButtonsToEnums4/BindRadioButtonsToEnums/bin/Debug/AppX/Assets/StoreLogo.png -------------------------------------------------------------------------------- /72-BindRadioButtonsToEnumsPart4/BindRadioButtonsToEnums4/BindRadioButtonsToEnums/bin/Debug/AppX/resources.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/72-BindRadioButtonsToEnumsPart4/BindRadioButtonsToEnums4/BindRadioButtonsToEnums/bin/Debug/AppX/resources.pri -------------------------------------------------------------------------------- /72-BindRadioButtonsToEnumsPart4/BindRadioButtonsToEnums4/BindRadioButtonsToEnums/bin/Debug/BindRadioButtonsToEnums.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/72-BindRadioButtonsToEnumsPart4/BindRadioButtonsToEnums4/BindRadioButtonsToEnums/bin/Debug/BindRadioButtonsToEnums.exe -------------------------------------------------------------------------------- /72-BindRadioButtonsToEnumsPart4/BindRadioButtonsToEnums4/BindRadioButtonsToEnums/bin/Debug/resources.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/72-BindRadioButtonsToEnumsPart4/BindRadioButtonsToEnums4/BindRadioButtonsToEnums/bin/Debug/resources.pri -------------------------------------------------------------------------------- /72-BindRadioButtonsToEnumsPart4/BindRadioButtonsToEnums4/BindRadioButtonsToEnums/obj/Debug/BlankPage1.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/72-BindRadioButtonsToEnumsPart4/BindRadioButtonsToEnums4/BindRadioButtonsToEnums/obj/Debug/BlankPage1.g.cs -------------------------------------------------------------------------------- /72-BindRadioButtonsToEnumsPart4/BindRadioButtonsToEnums4/BindRadioButtonsToEnums/obj/Debug/Common/StandardStyles.g.cs: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /72-BindRadioButtonsToEnumsPart4/BindRadioButtonsToEnums4/BindRadioButtonsToEnums/obj/Debug/Common/StandardStyles.g.i.cs: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /72-BindRadioButtonsToEnumsPart4/BindRadioButtonsToEnums4/BindRadioButtonsToEnums/obj/Debug/LanguageQualifiers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/72-BindRadioButtonsToEnumsPart4/BindRadioButtonsToEnums4/BindRadioButtonsToEnums/obj/Debug/LanguageQualifiers.txt -------------------------------------------------------------------------------- /72-BindRadioButtonsToEnumsPart4/BindRadioButtonsToEnums4/BindRadioButtonsToEnums/obj/Debug/ProjectArchitectures.txt: -------------------------------------------------------------------------------- 1 | C:\Work\BlogExperiments\BindRadioButtonsToEnums4\BindRadioButtonsToEnums\BindRadioButtonsToEnums.csproj;neutral 2 | -------------------------------------------------------------------------------- /72-BindRadioButtonsToEnumsPart4/BindRadioButtonsToEnums4/BindRadioButtonsToEnums/obj/Debug/Styles/ControlStyles.g.cs: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /72-BindRadioButtonsToEnumsPart4/BindRadioButtonsToEnums4/BindRadioButtonsToEnums/obj/Debug/Styles/ControlStyles.g.i.cs: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /72-BindRadioButtonsToEnumsPart4/BindRadioButtonsToEnums4/BindRadioButtonsToEnums/obj/Debug/layout.resfiles: -------------------------------------------------------------------------------- 1 | Assets\Logo.png 2 | Assets\SmallLogo.png 3 | Assets\SplashScreen.png 4 | Assets\StoreLogo.png 5 | App.xaml 6 | Common\StandardStyles.xaml 7 | MainPage.xaml 8 | Styles\ControlStyles.xaml 9 | -------------------------------------------------------------------------------- /72-BindRadioButtonsToEnumsPart4/BindRadioButtonsToEnums4/BindRadioButtonsToEnums/obj/Debug/layout.resfiles.intermediate: -------------------------------------------------------------------------------- 1 | Assets\Logo.png 2 | Assets\SmallLogo.png 3 | Assets\SplashScreen.png 4 | Assets\StoreLogo.png 5 | App.xaml 6 | Common\StandardStyles.xaml 7 | MainPage.xaml 8 | Styles\ControlStyles.xaml 9 | -------------------------------------------------------------------------------- /72-BindRadioButtonsToEnumsPart4/BindRadioButtonsToEnums4/BindRadioButtonsToEnums/obj/Debug/pri.resfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/72-BindRadioButtonsToEnumsPart4/BindRadioButtonsToEnums4/BindRadioButtonsToEnums/obj/Debug/pri.resfiles -------------------------------------------------------------------------------- /72-BindRadioButtonsToEnumsPart4/BindRadioButtonsToEnums4/BindRadioButtonsToEnums/obj/Debug/pri.resfiles.intermediate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/72-BindRadioButtonsToEnumsPart4/BindRadioButtonsToEnums4/BindRadioButtonsToEnums/obj/Debug/pri.resfiles.intermediate -------------------------------------------------------------------------------- /72-BindRadioButtonsToEnumsPart4/BindRadioButtonsToEnums4/BindRadioButtonsToEnums/obj/Debug/resources.resfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/72-BindRadioButtonsToEnumsPart4/BindRadioButtonsToEnums4/BindRadioButtonsToEnums/obj/Debug/resources.resfiles -------------------------------------------------------------------------------- /72-BindRadioButtonsToEnumsPart4/Images/BindRadioButtonsToEnums4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/72-BindRadioButtonsToEnumsPart4/Images/BindRadioButtonsToEnums4.png -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/Images/PlanetsListBox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/74-PositioningDataBoundItems/Images/PlanetsListBox.png -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox.v11.suo -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/Assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/Assets/Logo.png -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/Assets/SmallLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/Assets/SmallLogo.png -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/Assets/SplashScreen.png -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/Assets/StoreLogo.png -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/Assets/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/Assets/Thumbs.db -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/Images/2moons_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/Images/2moons_2.gif -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/Images/earglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/Images/earglobe.gif -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/Images/jupglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/Images/jupglobe.gif -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/Images/marglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/Images/marglobe.gif -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/Images/merglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/Images/merglobe.gif -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/Images/nepglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/Images/nepglobe.gif -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/Images/sun.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/Images/sun.jpg -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/Images/uraglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/Images/uraglobe.gif -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/Images/venglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/Images/venglobe.gif -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/PlanetsListBox_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/PlanetsListBox_TemporaryKey.pfx -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/bin/Debug/AppX/Assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/bin/Debug/AppX/Assets/Logo.png -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/bin/Debug/AppX/Assets/SmallLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/bin/Debug/AppX/Assets/SmallLogo.png -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/bin/Debug/AppX/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/bin/Debug/AppX/Assets/SplashScreen.png -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/bin/Debug/AppX/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/bin/Debug/AppX/Assets/StoreLogo.png -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/bin/Debug/AppX/Assets/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/bin/Debug/AppX/Assets/Thumbs.db -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/bin/Debug/AppX/Images/2moons_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/bin/Debug/AppX/Images/2moons_2.gif -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/bin/Debug/AppX/Images/earglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/bin/Debug/AppX/Images/earglobe.gif -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/bin/Debug/AppX/Images/jupglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/bin/Debug/AppX/Images/jupglobe.gif -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/bin/Debug/AppX/Images/marglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/bin/Debug/AppX/Images/marglobe.gif -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/bin/Debug/AppX/Images/merglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/bin/Debug/AppX/Images/merglobe.gif -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/bin/Debug/AppX/Images/nepglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/bin/Debug/AppX/Images/nepglobe.gif -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/bin/Debug/AppX/Images/sun.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/bin/Debug/AppX/Images/sun.jpg -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/bin/Debug/AppX/Images/uraglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/bin/Debug/AppX/Images/uraglobe.gif -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/bin/Debug/AppX/Images/venglobe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/bin/Debug/AppX/Images/venglobe.gif -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/bin/Debug/AppX/PlanetsListBox.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/bin/Debug/AppX/PlanetsListBox.exe -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/bin/Debug/AppX/PlanetsListBox.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/bin/Debug/AppX/PlanetsListBox.pdb -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/bin/Debug/AppX/resources.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/bin/Debug/AppX/resources.pri -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/bin/Debug/PlanetsListBox.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/bin/Debug/PlanetsListBox.exe -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/bin/Debug/PlanetsListBox.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/bin/Debug/PlanetsListBox.pdb -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/bin/Debug/resources.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/bin/Debug/resources.pri -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/obj/Debug/Common/StandardStyles.g.cs: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/obj/Debug/Common/StandardStyles.g.i.cs: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/obj/Debug/LanguageQualifiers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/obj/Debug/LanguageQualifiers.txt -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/obj/Debug/LanguageQualifiers.txt.intermediate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/obj/Debug/LanguageQualifiers.txt.intermediate -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/obj/Debug/PlanetsListBox.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/obj/Debug/PlanetsListBox.exe -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/obj/Debug/PlanetsListBox.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/obj/Debug/PlanetsListBox.pdb -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/obj/Debug/ProjectArchitectures.txt: -------------------------------------------------------------------------------- 1 | C:\Work\Web Sites\Blog development\BlogPosts\74PositioningListBoxItems\PlanetsListBox\PlanetsListBox\PlanetsListBox.csproj;neutral 2 | -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/obj/Debug/intermediatexaml/PlanetsListBox.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/obj/Debug/intermediatexaml/PlanetsListBox.exe -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/obj/Debug/intermediatexaml/PlanetsListBox.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/obj/Debug/intermediatexaml/PlanetsListBox.pdb -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/obj/Debug/pri.resfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/obj/Debug/pri.resfiles -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/obj/Debug/pri.resfiles.intermediate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/obj/Debug/pri.resfiles.intermediate -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/obj/Debug/resources.resfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/obj/Debug/resources.resfiles -------------------------------------------------------------------------------- /74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/obj/Debug/resources.resfiles.intermediate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/74-PositioningDataBoundItems/PlanetsListBox/PlanetsListBox/obj/Debug/resources.resfiles.intermediate -------------------------------------------------------------------------------- /75-SimultaneousEnableDisable/WPFSimultaneousEnableDisable/WpfSimultaneousEnableDisable.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/75-SimultaneousEnableDisable/WPFSimultaneousEnableDisable/WpfSimultaneousEnableDisable.v11.suo -------------------------------------------------------------------------------- /75-SimultaneousEnableDisable/WPFSimultaneousEnableDisable/WpfSimultaneousEnableDisable/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /75-SimultaneousEnableDisable/WPFSimultaneousEnableDisable/WpfSimultaneousEnableDisable/obj/Debug/MainWindow.baml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/75-SimultaneousEnableDisable/WPFSimultaneousEnableDisable/WpfSimultaneousEnableDisable/obj/Debug/MainWindow.baml -------------------------------------------------------------------------------- /75-SimultaneousEnableDisable/Win8SimultaneousEnableDisable/Win8SimultaneousEnableDisable.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/75-SimultaneousEnableDisable/Win8SimultaneousEnableDisable/Win8SimultaneousEnableDisable.v11.suo -------------------------------------------------------------------------------- /75-SimultaneousEnableDisable/Win8SimultaneousEnableDisable/Win8SimultaneousEnableDisable/Assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/75-SimultaneousEnableDisable/Win8SimultaneousEnableDisable/Win8SimultaneousEnableDisable/Assets/Logo.png -------------------------------------------------------------------------------- /75-SimultaneousEnableDisable/Win8SimultaneousEnableDisable/Win8SimultaneousEnableDisable/Assets/SmallLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/75-SimultaneousEnableDisable/Win8SimultaneousEnableDisable/Win8SimultaneousEnableDisable/Assets/SmallLogo.png -------------------------------------------------------------------------------- /75-SimultaneousEnableDisable/Win8SimultaneousEnableDisable/Win8SimultaneousEnableDisable/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/75-SimultaneousEnableDisable/Win8SimultaneousEnableDisable/Win8SimultaneousEnableDisable/Assets/SplashScreen.png -------------------------------------------------------------------------------- /75-SimultaneousEnableDisable/Win8SimultaneousEnableDisable/Win8SimultaneousEnableDisable/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/75-SimultaneousEnableDisable/Win8SimultaneousEnableDisable/Win8SimultaneousEnableDisable/Assets/StoreLogo.png -------------------------------------------------------------------------------- /75-SimultaneousEnableDisable/Win8SimultaneousEnableDisable/Win8SimultaneousEnableDisable/bin/Debug/resources.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/75-SimultaneousEnableDisable/Win8SimultaneousEnableDisable/Win8SimultaneousEnableDisable/bin/Debug/resources.pri -------------------------------------------------------------------------------- /75-SimultaneousEnableDisable/Win8SimultaneousEnableDisable/Win8SimultaneousEnableDisable/obj/Debug/Common/StandardStyles.g.cs: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /75-SimultaneousEnableDisable/Win8SimultaneousEnableDisable/Win8SimultaneousEnableDisable/obj/Debug/Common/StandardStyles.g.i.cs: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /75-SimultaneousEnableDisable/Win8SimultaneousEnableDisable/Win8SimultaneousEnableDisable/obj/Debug/ProjectArchitectures.txt: -------------------------------------------------------------------------------- 1 | C:\Work\Web Sites\Blog development\BlogPosts\75SimultaneousEnableDisable\Win8SimultaneousEnableDisable\Win8SimultaneousEnableDisable\Win8SimultaneousEnableDisable.csproj;neutral 2 | -------------------------------------------------------------------------------- /75-SimultaneousEnableDisable/Win8SimultaneousEnableDisable/Win8SimultaneousEnableDisable/obj/Debug/layout.resfiles: -------------------------------------------------------------------------------- 1 | Assets\Logo.png 2 | Assets\SmallLogo.png 3 | Assets\SplashScreen.png 4 | Assets\StoreLogo.png 5 | App.xaml 6 | Common\StandardStyles.xaml 7 | MainPage.xaml 8 | -------------------------------------------------------------------------------- /75-SimultaneousEnableDisable/Win8SimultaneousEnableDisable/Win8SimultaneousEnableDisable/obj/Debug/layout.resfiles.intermediate: -------------------------------------------------------------------------------- 1 | Assets\Logo.png 2 | Assets\SmallLogo.png 3 | Assets\SplashScreen.png 4 | Assets\StoreLogo.png 5 | App.xaml 6 | Common\StandardStyles.xaml 7 | MainPage.xaml 8 | -------------------------------------------------------------------------------- /75-SimultaneousEnableDisable/Win8SimultaneousEnableDisable/Win8SimultaneousEnableDisable/obj/Debug/pri.resfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/75-SimultaneousEnableDisable/Win8SimultaneousEnableDisable/Win8SimultaneousEnableDisable/obj/Debug/pri.resfiles -------------------------------------------------------------------------------- /76-FocusWatcher/Images/FocusWatcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/76-FocusWatcher/Images/FocusWatcher.png -------------------------------------------------------------------------------- /77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample.v11.suo -------------------------------------------------------------------------------- /77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/Assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/Assets/Logo.png -------------------------------------------------------------------------------- /77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/Assets/SmallLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/Assets/SmallLogo.png -------------------------------------------------------------------------------- /77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/Assets/SplashScreen.png -------------------------------------------------------------------------------- /77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/Assets/StoreLogo.png -------------------------------------------------------------------------------- /77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/CaptureWatcherSample_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/CaptureWatcherSample_TemporaryKey.pfx -------------------------------------------------------------------------------- /77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/bin/Debug/AppX/Assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/bin/Debug/AppX/Assets/Logo.png -------------------------------------------------------------------------------- /77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/bin/Debug/AppX/Assets/SmallLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/bin/Debug/AppX/Assets/SmallLogo.png -------------------------------------------------------------------------------- /77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/bin/Debug/AppX/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/bin/Debug/AppX/Assets/SplashScreen.png -------------------------------------------------------------------------------- /77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/bin/Debug/AppX/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/bin/Debug/AppX/Assets/StoreLogo.png -------------------------------------------------------------------------------- /77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/bin/Debug/AppX/CaptureWatcherSample.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/bin/Debug/AppX/CaptureWatcherSample.exe -------------------------------------------------------------------------------- /77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/bin/Debug/AppX/CaptureWatcherSample.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/bin/Debug/AppX/CaptureWatcherSample.pdb -------------------------------------------------------------------------------- /77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/bin/Debug/AppX/resources.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/bin/Debug/AppX/resources.pri -------------------------------------------------------------------------------- /77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/bin/Debug/CaptureWatcherSample.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/bin/Debug/CaptureWatcherSample.exe -------------------------------------------------------------------------------- /77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/bin/Debug/CaptureWatcherSample.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/bin/Debug/CaptureWatcherSample.pdb -------------------------------------------------------------------------------- /77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/bin/Debug/resources.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/bin/Debug/resources.pri -------------------------------------------------------------------------------- /77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/obj/Debug/CaptureWatcherSample.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/obj/Debug/CaptureWatcherSample.exe -------------------------------------------------------------------------------- /77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/obj/Debug/CaptureWatcherSample.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/obj/Debug/CaptureWatcherSample.pdb -------------------------------------------------------------------------------- /77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/obj/Debug/Common/StandardStyles.g.cs: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/obj/Debug/Common/StandardStyles.g.i.cs: -------------------------------------------------------------------------------- 1 |  2 | -------------------------------------------------------------------------------- /77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/obj/Debug/LanguageQualifiers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/obj/Debug/LanguageQualifiers.txt -------------------------------------------------------------------------------- /77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/obj/Debug/LanguageQualifiers.txt.intermediate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/obj/Debug/LanguageQualifiers.txt.intermediate -------------------------------------------------------------------------------- /77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/obj/Debug/ProjectArchitectures.txt: -------------------------------------------------------------------------------- 1 | C:\Work\Web Sites\Blog development\BlogPosts\77CaptureWatcher\CaptureWatcherSample\CaptureWatcherSample\CaptureWatcherSample.csproj;neutral 2 | -------------------------------------------------------------------------------- /77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/obj/Debug/XamlTypeInfo.g.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/obj/Debug/XamlTypeInfo.g.cs -------------------------------------------------------------------------------- /77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/obj/Debug/intermediatexaml/CaptureWatcherSample.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/obj/Debug/intermediatexaml/CaptureWatcherSample.exe -------------------------------------------------------------------------------- /77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/obj/Debug/intermediatexaml/CaptureWatcherSample.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/obj/Debug/intermediatexaml/CaptureWatcherSample.pdb -------------------------------------------------------------------------------- /77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/obj/Debug/layout.resfiles: -------------------------------------------------------------------------------- 1 | Assets\Logo.png 2 | Assets\SmallLogo.png 3 | Assets\SplashScreen.png 4 | Assets\StoreLogo.png 5 | App.xaml 6 | Common\StandardStyles.xaml 7 | MainPage.xaml 8 | -------------------------------------------------------------------------------- /77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/obj/Debug/pri.resfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/obj/Debug/pri.resfiles -------------------------------------------------------------------------------- /77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/obj/Debug/resources.resfiles: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/77-CaptureWatcher/CaptureWatcherSample/CaptureWatcherSample/obj/Debug/resources.resfiles -------------------------------------------------------------------------------- /77-CaptureWatcher/Images/77CaptureWatcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/77-CaptureWatcher/Images/77CaptureWatcher.png -------------------------------------------------------------------------------- /78-BetterBindableBase/BetterBindableBaseSample/BetterBindableBaseSample.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/78-BetterBindableBase/BetterBindableBaseSample/BetterBindableBaseSample.v11.suo -------------------------------------------------------------------------------- /78-BetterBindableBase/BetterBindableBaseSample/BetterBindableBaseSample/Assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/78-BetterBindableBase/BetterBindableBaseSample/BetterBindableBaseSample/Assets/Logo.png -------------------------------------------------------------------------------- /78-BetterBindableBase/BetterBindableBaseSample/BetterBindableBaseSample/Assets/SmallLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/78-BetterBindableBase/BetterBindableBaseSample/BetterBindableBaseSample/Assets/SmallLogo.png -------------------------------------------------------------------------------- /78-BetterBindableBase/BetterBindableBaseSample/BetterBindableBaseSample/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/78-BetterBindableBase/BetterBindableBaseSample/BetterBindableBaseSample/Assets/SplashScreen.png -------------------------------------------------------------------------------- /78-BetterBindableBase/BetterBindableBaseSample/BetterBindableBaseSample/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/78-BetterBindableBase/BetterBindableBaseSample/BetterBindableBaseSample/Assets/StoreLogo.png -------------------------------------------------------------------------------- /78-BetterBindableBase/BetterBindableBaseSample/BetterBindableBaseSample/BetterBindableBaseSample_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/78-BetterBindableBase/BetterBindableBaseSample/BetterBindableBaseSample/BetterBindableBaseSample_TemporaryKey.pfx -------------------------------------------------------------------------------- /78-BetterBindableBase/Images/78BetterBindableBase.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/78-BetterBindableBase/Images/78BetterBindableBase.png -------------------------------------------------------------------------------- /79-BooleanConverters/BooleanConverterSample/BooleanConverterSample.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/79-BooleanConverters/BooleanConverterSample/BooleanConverterSample.v11.suo -------------------------------------------------------------------------------- /79-BooleanConverters/BooleanConverterSample/BooleanConverterSample/Assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/79-BooleanConverters/BooleanConverterSample/BooleanConverterSample/Assets/Logo.png -------------------------------------------------------------------------------- /79-BooleanConverters/BooleanConverterSample/BooleanConverterSample/Assets/SmallLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/79-BooleanConverters/BooleanConverterSample/BooleanConverterSample/Assets/SmallLogo.png -------------------------------------------------------------------------------- /79-BooleanConverters/BooleanConverterSample/BooleanConverterSample/Assets/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/79-BooleanConverters/BooleanConverterSample/BooleanConverterSample/Assets/SplashScreen.png -------------------------------------------------------------------------------- /79-BooleanConverters/BooleanConverterSample/BooleanConverterSample/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/79-BooleanConverters/BooleanConverterSample/BooleanConverterSample/Assets/StoreLogo.png -------------------------------------------------------------------------------- /79-BooleanConverters/BooleanConverterSample/BooleanConverterSample/BooleanConverterSample_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/79-BooleanConverters/BooleanConverterSample/BooleanConverterSample/BooleanConverterSample_TemporaryKey.pfx -------------------------------------------------------------------------------- /79-BooleanConverters/Images/79BooleanConverters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bstollnitz/old-wpf-blog/f13193afbfeffa22ad3d975c18679307c45a27c7/79-BooleanConverters/Images/79BooleanConverters.png --------------------------------------------------------------------------------