├── .gitattributes ├── .gitignore ├── README.md ├── snippets ├── r# │ └── rxui.DotSettings └── vs │ ├── iv4prop.snippet │ ├── rasprop.snippet │ └── roprop.snippet └── src ├── complete ├── ex1-readonlyproperties │ ├── Ex1.Tests │ │ ├── Ex1.Tests.csproj │ │ ├── PersonViewModelTests.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ ├── Ex1 │ │ ├── Ex1.csproj │ │ ├── PersonViewModel.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ └── ex1-readonlyproperties.sln ├── ex2-reactivecommand-part1 │ ├── Ex2.Tests │ │ ├── Ex2.Tests.csproj │ │ ├── PersonViewModelTests.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ ├── Ex2 │ │ ├── Ex2.csproj │ │ ├── PersonViewModel.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ └── ex2-reactivecommand-part1.sln ├── ex3-reactivecommand-part2 │ ├── Ex3.Tests │ │ ├── Ex3.Tests.csproj │ │ ├── PersonViewModelTests.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ ├── Ex3 │ │ ├── Ex3.csproj │ │ ├── PersonViewModel.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── packages.config │ └── ex3-reactivecommand-part2.sln ├── ex4-bindings-part1 │ ├── Ex4 │ │ ├── App.config │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Ex4.csproj │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── MainWindowModel.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ └── packages.config │ └── ex4-bindings-part1.sln ├── ex5-viewmodel-composition │ ├── Ex5 │ │ ├── App.config │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AppBootstrapper.cs │ │ ├── ControlStyles.ReactiveUI.xaml │ │ ├── Ex5.csproj │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── MainWindowModel.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── TitleBarView.xaml │ │ ├── TitleBarView.xaml.cs │ │ ├── TitleBarViewModel.cs │ │ └── packages.config │ └── ex5-viewmodel-composition.sln ├── ex6-bindings-part2 │ ├── Ex6 │ │ ├── App.config │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AppBootstrapper.cs │ │ ├── ControlStyles.ReactiveUI.xaml │ │ ├── Ex6.csproj │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── MainWindowModel.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ └── packages.config │ └── ex6-bindings-part2.sln ├── ex7-bindings-part3 │ ├── Ex7 │ │ ├── App.config │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AppBootstrapper.cs │ │ ├── ControlStyles.ReactiveUI.xaml │ │ ├── Ex7.csproj │ │ ├── FakeData.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── MainWindowModel.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── TweetView.xaml │ │ ├── TweetView.xaml.cs │ │ ├── TweetViewModel.cs │ │ └── packages.config │ └── ex7-bindings-part3.sln ├── ex8-routing │ ├── Ex8 │ │ ├── App.config │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── AppBootstrapper.cs │ │ ├── Ex8.csproj │ │ ├── MainWindowView.xaml │ │ ├── MainWindowView.xaml.cs │ │ ├── MainWindowViewModel.cs │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ ├── Resources.resx │ │ │ ├── Settings.Designer.cs │ │ │ └── Settings.settings │ │ ├── ViewA.xaml │ │ ├── ViewA.xaml.cs │ │ ├── ViewB.xaml │ │ ├── ViewB.xaml.cs │ │ ├── ViewInstanceCount.cs │ │ ├── ViewModelA.cs │ │ ├── ViewModelB.cs │ │ ├── ViewModelInstanceCount.cs │ │ └── packages.config │ └── ex8-routing.sln └── ex9-derivedlists │ ├── Ex9 │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── Ex9.csproj │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── MainWindowModel.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── TestDataSource.cs │ ├── TestModel.cs │ ├── TestView.xaml │ ├── TestView.xaml.cs │ ├── TestViewModel.cs │ └── packages.config │ └── ex9-derivedlists.sln └── exercises ├── ex1-readonlyproperties ├── Ex1.Tests │ ├── Ex1.Tests.csproj │ ├── PersonViewModelTests.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── Ex1 │ ├── Ex1.csproj │ ├── PersonViewModel.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config └── ex1-readonlyproperties.sln ├── ex2-reactivecommand-part1 ├── Ex2.Tests │ ├── Ex2.Tests.csproj │ ├── PersonViewModelTests.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── Ex2 │ ├── Ex2.csproj │ ├── PersonViewModel.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config └── ex2-reactivecommand-part1.sln ├── ex3-reactivecommand-part2 ├── Ex3.Tests │ ├── Ex3.Tests.csproj │ ├── PersonViewModelTests.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config ├── Ex3 │ ├── Ex3.csproj │ ├── PersonViewModel.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── packages.config └── ex3-reactivecommand-part2.sln ├── ex4-bindings-part1 ├── Ex4 │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── Ex4.csproj │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── MainWindowModel.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── packages.config └── ex4-bindings-part1.sln ├── ex5-viewmodel-composition ├── Ex5 │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppBootstrapper.cs │ ├── ControlStyles.ReactiveUI.xaml │ ├── Ex5.csproj │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── MainWindowModel.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── TitleBarView.xaml │ ├── TitleBarView.xaml.cs │ ├── TitleBarViewModel.cs │ └── packages.config └── ex5-viewmodel-composition.sln ├── ex6-bindings-part2 ├── Ex6 │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppBootstrapper.cs │ ├── ControlStyles.ReactiveUI.xaml │ ├── Ex6.csproj │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── MainWindowModel.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ └── packages.config └── ex6-bindings-part2.sln ├── ex7-bindings-part3 ├── Ex7 │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppBootstrapper.cs │ ├── ControlStyles.ReactiveUI.xaml │ ├── Ex7.csproj │ ├── FakeData.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── MainWindowModel.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── TweetView.xaml │ ├── TweetView.xaml.cs │ ├── TweetViewModel.cs │ └── packages.config └── ex7-bindings-part3.sln ├── ex8-routing ├── Ex8 │ ├── App.config │ ├── App.xaml │ ├── App.xaml.cs │ ├── AppBootstrapper.cs │ ├── Ex8.csproj │ ├── MainWindowView.xaml │ ├── MainWindowView.xaml.cs │ ├── MainWindowViewModel.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── ViewA.xaml │ ├── ViewA.xaml.cs │ ├── ViewB.xaml │ ├── ViewB.xaml.cs │ ├── ViewInstanceCount.cs │ ├── ViewModelA.cs │ ├── ViewModelB.cs │ ├── ViewModelInstanceCount.cs │ └── packages.config └── ex8-routing.sln └── ex9-derivedlists ├── Ex9 ├── App.config ├── App.xaml ├── App.xaml.cs ├── Ex9.csproj ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── MainWindowModel.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── TestDataSource.cs ├── TestModel.cs ├── TestView.xaml ├── TestView.xaml.cs ├── TestViewModel.cs └── packages.config └── ex9-derivedlists.sln /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/README.md -------------------------------------------------------------------------------- /snippets/r#/rxui.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/snippets/r#/rxui.DotSettings -------------------------------------------------------------------------------- /snippets/vs/iv4prop.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/snippets/vs/iv4prop.snippet -------------------------------------------------------------------------------- /snippets/vs/rasprop.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/snippets/vs/rasprop.snippet -------------------------------------------------------------------------------- /snippets/vs/roprop.snippet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/snippets/vs/roprop.snippet -------------------------------------------------------------------------------- /src/complete/ex1-readonlyproperties/Ex1.Tests/Ex1.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex1-readonlyproperties/Ex1.Tests/Ex1.Tests.csproj -------------------------------------------------------------------------------- /src/complete/ex1-readonlyproperties/Ex1.Tests/PersonViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex1-readonlyproperties/Ex1.Tests/PersonViewModelTests.cs -------------------------------------------------------------------------------- /src/complete/ex1-readonlyproperties/Ex1.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex1-readonlyproperties/Ex1.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/complete/ex1-readonlyproperties/Ex1.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex1-readonlyproperties/Ex1.Tests/packages.config -------------------------------------------------------------------------------- /src/complete/ex1-readonlyproperties/Ex1/Ex1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex1-readonlyproperties/Ex1/Ex1.csproj -------------------------------------------------------------------------------- /src/complete/ex1-readonlyproperties/Ex1/PersonViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex1-readonlyproperties/Ex1/PersonViewModel.cs -------------------------------------------------------------------------------- /src/complete/ex1-readonlyproperties/Ex1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex1-readonlyproperties/Ex1/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/complete/ex1-readonlyproperties/Ex1/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex1-readonlyproperties/Ex1/packages.config -------------------------------------------------------------------------------- /src/complete/ex1-readonlyproperties/ex1-readonlyproperties.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex1-readonlyproperties/ex1-readonlyproperties.sln -------------------------------------------------------------------------------- /src/complete/ex2-reactivecommand-part1/Ex2.Tests/Ex2.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex2-reactivecommand-part1/Ex2.Tests/Ex2.Tests.csproj -------------------------------------------------------------------------------- /src/complete/ex2-reactivecommand-part1/Ex2.Tests/PersonViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex2-reactivecommand-part1/Ex2.Tests/PersonViewModelTests.cs -------------------------------------------------------------------------------- /src/complete/ex2-reactivecommand-part1/Ex2.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex2-reactivecommand-part1/Ex2.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/complete/ex2-reactivecommand-part1/Ex2.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex2-reactivecommand-part1/Ex2.Tests/packages.config -------------------------------------------------------------------------------- /src/complete/ex2-reactivecommand-part1/Ex2/Ex2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex2-reactivecommand-part1/Ex2/Ex2.csproj -------------------------------------------------------------------------------- /src/complete/ex2-reactivecommand-part1/Ex2/PersonViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex2-reactivecommand-part1/Ex2/PersonViewModel.cs -------------------------------------------------------------------------------- /src/complete/ex2-reactivecommand-part1/Ex2/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex2-reactivecommand-part1/Ex2/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/complete/ex2-reactivecommand-part1/Ex2/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex2-reactivecommand-part1/Ex2/packages.config -------------------------------------------------------------------------------- /src/complete/ex2-reactivecommand-part1/ex2-reactivecommand-part1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex2-reactivecommand-part1/ex2-reactivecommand-part1.sln -------------------------------------------------------------------------------- /src/complete/ex3-reactivecommand-part2/Ex3.Tests/Ex3.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex3-reactivecommand-part2/Ex3.Tests/Ex3.Tests.csproj -------------------------------------------------------------------------------- /src/complete/ex3-reactivecommand-part2/Ex3.Tests/PersonViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex3-reactivecommand-part2/Ex3.Tests/PersonViewModelTests.cs -------------------------------------------------------------------------------- /src/complete/ex3-reactivecommand-part2/Ex3.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex3-reactivecommand-part2/Ex3.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/complete/ex3-reactivecommand-part2/Ex3.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex3-reactivecommand-part2/Ex3.Tests/packages.config -------------------------------------------------------------------------------- /src/complete/ex3-reactivecommand-part2/Ex3/Ex3.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex3-reactivecommand-part2/Ex3/Ex3.csproj -------------------------------------------------------------------------------- /src/complete/ex3-reactivecommand-part2/Ex3/PersonViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex3-reactivecommand-part2/Ex3/PersonViewModel.cs -------------------------------------------------------------------------------- /src/complete/ex3-reactivecommand-part2/Ex3/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex3-reactivecommand-part2/Ex3/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/complete/ex3-reactivecommand-part2/Ex3/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex3-reactivecommand-part2/Ex3/packages.config -------------------------------------------------------------------------------- /src/complete/ex3-reactivecommand-part2/ex3-reactivecommand-part2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex3-reactivecommand-part2/ex3-reactivecommand-part2.sln -------------------------------------------------------------------------------- /src/complete/ex4-bindings-part1/Ex4/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex4-bindings-part1/Ex4/App.config -------------------------------------------------------------------------------- /src/complete/ex4-bindings-part1/Ex4/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex4-bindings-part1/Ex4/App.xaml -------------------------------------------------------------------------------- /src/complete/ex4-bindings-part1/Ex4/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex4-bindings-part1/Ex4/App.xaml.cs -------------------------------------------------------------------------------- /src/complete/ex4-bindings-part1/Ex4/Ex4.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex4-bindings-part1/Ex4/Ex4.csproj -------------------------------------------------------------------------------- /src/complete/ex4-bindings-part1/Ex4/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex4-bindings-part1/Ex4/MainWindow.xaml -------------------------------------------------------------------------------- /src/complete/ex4-bindings-part1/Ex4/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex4-bindings-part1/Ex4/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/complete/ex4-bindings-part1/Ex4/MainWindowModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex4-bindings-part1/Ex4/MainWindowModel.cs -------------------------------------------------------------------------------- /src/complete/ex4-bindings-part1/Ex4/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex4-bindings-part1/Ex4/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/complete/ex4-bindings-part1/Ex4/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex4-bindings-part1/Ex4/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/complete/ex4-bindings-part1/Ex4/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex4-bindings-part1/Ex4/Properties/Resources.resx -------------------------------------------------------------------------------- /src/complete/ex4-bindings-part1/Ex4/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex4-bindings-part1/Ex4/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/complete/ex4-bindings-part1/Ex4/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex4-bindings-part1/Ex4/Properties/Settings.settings -------------------------------------------------------------------------------- /src/complete/ex4-bindings-part1/Ex4/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex4-bindings-part1/Ex4/packages.config -------------------------------------------------------------------------------- /src/complete/ex4-bindings-part1/ex4-bindings-part1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex4-bindings-part1/ex4-bindings-part1.sln -------------------------------------------------------------------------------- /src/complete/ex5-viewmodel-composition/Ex5/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex5-viewmodel-composition/Ex5/App.config -------------------------------------------------------------------------------- /src/complete/ex5-viewmodel-composition/Ex5/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex5-viewmodel-composition/Ex5/App.xaml -------------------------------------------------------------------------------- /src/complete/ex5-viewmodel-composition/Ex5/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex5-viewmodel-composition/Ex5/App.xaml.cs -------------------------------------------------------------------------------- /src/complete/ex5-viewmodel-composition/Ex5/AppBootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex5-viewmodel-composition/Ex5/AppBootstrapper.cs -------------------------------------------------------------------------------- /src/complete/ex5-viewmodel-composition/Ex5/ControlStyles.ReactiveUI.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex5-viewmodel-composition/Ex5/ControlStyles.ReactiveUI.xaml -------------------------------------------------------------------------------- /src/complete/ex5-viewmodel-composition/Ex5/Ex5.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex5-viewmodel-composition/Ex5/Ex5.csproj -------------------------------------------------------------------------------- /src/complete/ex5-viewmodel-composition/Ex5/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex5-viewmodel-composition/Ex5/MainWindow.xaml -------------------------------------------------------------------------------- /src/complete/ex5-viewmodel-composition/Ex5/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex5-viewmodel-composition/Ex5/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/complete/ex5-viewmodel-composition/Ex5/MainWindowModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex5-viewmodel-composition/Ex5/MainWindowModel.cs -------------------------------------------------------------------------------- /src/complete/ex5-viewmodel-composition/Ex5/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex5-viewmodel-composition/Ex5/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/complete/ex5-viewmodel-composition/Ex5/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex5-viewmodel-composition/Ex5/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/complete/ex5-viewmodel-composition/Ex5/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex5-viewmodel-composition/Ex5/Properties/Resources.resx -------------------------------------------------------------------------------- /src/complete/ex5-viewmodel-composition/Ex5/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex5-viewmodel-composition/Ex5/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/complete/ex5-viewmodel-composition/Ex5/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex5-viewmodel-composition/Ex5/Properties/Settings.settings -------------------------------------------------------------------------------- /src/complete/ex5-viewmodel-composition/Ex5/TitleBarView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex5-viewmodel-composition/Ex5/TitleBarView.xaml -------------------------------------------------------------------------------- /src/complete/ex5-viewmodel-composition/Ex5/TitleBarView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex5-viewmodel-composition/Ex5/TitleBarView.xaml.cs -------------------------------------------------------------------------------- /src/complete/ex5-viewmodel-composition/Ex5/TitleBarViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex5-viewmodel-composition/Ex5/TitleBarViewModel.cs -------------------------------------------------------------------------------- /src/complete/ex5-viewmodel-composition/Ex5/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex5-viewmodel-composition/Ex5/packages.config -------------------------------------------------------------------------------- /src/complete/ex5-viewmodel-composition/ex5-viewmodel-composition.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex5-viewmodel-composition/ex5-viewmodel-composition.sln -------------------------------------------------------------------------------- /src/complete/ex6-bindings-part2/Ex6/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex6-bindings-part2/Ex6/App.config -------------------------------------------------------------------------------- /src/complete/ex6-bindings-part2/Ex6/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex6-bindings-part2/Ex6/App.xaml -------------------------------------------------------------------------------- /src/complete/ex6-bindings-part2/Ex6/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex6-bindings-part2/Ex6/App.xaml.cs -------------------------------------------------------------------------------- /src/complete/ex6-bindings-part2/Ex6/AppBootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex6-bindings-part2/Ex6/AppBootstrapper.cs -------------------------------------------------------------------------------- /src/complete/ex6-bindings-part2/Ex6/ControlStyles.ReactiveUI.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex6-bindings-part2/Ex6/ControlStyles.ReactiveUI.xaml -------------------------------------------------------------------------------- /src/complete/ex6-bindings-part2/Ex6/Ex6.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex6-bindings-part2/Ex6/Ex6.csproj -------------------------------------------------------------------------------- /src/complete/ex6-bindings-part2/Ex6/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex6-bindings-part2/Ex6/MainWindow.xaml -------------------------------------------------------------------------------- /src/complete/ex6-bindings-part2/Ex6/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex6-bindings-part2/Ex6/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/complete/ex6-bindings-part2/Ex6/MainWindowModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex6-bindings-part2/Ex6/MainWindowModel.cs -------------------------------------------------------------------------------- /src/complete/ex6-bindings-part2/Ex6/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex6-bindings-part2/Ex6/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/complete/ex6-bindings-part2/Ex6/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex6-bindings-part2/Ex6/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/complete/ex6-bindings-part2/Ex6/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex6-bindings-part2/Ex6/Properties/Resources.resx -------------------------------------------------------------------------------- /src/complete/ex6-bindings-part2/Ex6/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex6-bindings-part2/Ex6/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/complete/ex6-bindings-part2/Ex6/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex6-bindings-part2/Ex6/Properties/Settings.settings -------------------------------------------------------------------------------- /src/complete/ex6-bindings-part2/Ex6/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex6-bindings-part2/Ex6/packages.config -------------------------------------------------------------------------------- /src/complete/ex6-bindings-part2/ex6-bindings-part2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex6-bindings-part2/ex6-bindings-part2.sln -------------------------------------------------------------------------------- /src/complete/ex7-bindings-part3/Ex7/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex7-bindings-part3/Ex7/App.config -------------------------------------------------------------------------------- /src/complete/ex7-bindings-part3/Ex7/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex7-bindings-part3/Ex7/App.xaml -------------------------------------------------------------------------------- /src/complete/ex7-bindings-part3/Ex7/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex7-bindings-part3/Ex7/App.xaml.cs -------------------------------------------------------------------------------- /src/complete/ex7-bindings-part3/Ex7/AppBootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex7-bindings-part3/Ex7/AppBootstrapper.cs -------------------------------------------------------------------------------- /src/complete/ex7-bindings-part3/Ex7/ControlStyles.ReactiveUI.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex7-bindings-part3/Ex7/ControlStyles.ReactiveUI.xaml -------------------------------------------------------------------------------- /src/complete/ex7-bindings-part3/Ex7/Ex7.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex7-bindings-part3/Ex7/Ex7.csproj -------------------------------------------------------------------------------- /src/complete/ex7-bindings-part3/Ex7/FakeData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex7-bindings-part3/Ex7/FakeData.cs -------------------------------------------------------------------------------- /src/complete/ex7-bindings-part3/Ex7/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex7-bindings-part3/Ex7/MainWindow.xaml -------------------------------------------------------------------------------- /src/complete/ex7-bindings-part3/Ex7/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex7-bindings-part3/Ex7/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/complete/ex7-bindings-part3/Ex7/MainWindowModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex7-bindings-part3/Ex7/MainWindowModel.cs -------------------------------------------------------------------------------- /src/complete/ex7-bindings-part3/Ex7/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex7-bindings-part3/Ex7/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/complete/ex7-bindings-part3/Ex7/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex7-bindings-part3/Ex7/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/complete/ex7-bindings-part3/Ex7/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex7-bindings-part3/Ex7/Properties/Resources.resx -------------------------------------------------------------------------------- /src/complete/ex7-bindings-part3/Ex7/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex7-bindings-part3/Ex7/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/complete/ex7-bindings-part3/Ex7/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex7-bindings-part3/Ex7/Properties/Settings.settings -------------------------------------------------------------------------------- /src/complete/ex7-bindings-part3/Ex7/TweetView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex7-bindings-part3/Ex7/TweetView.xaml -------------------------------------------------------------------------------- /src/complete/ex7-bindings-part3/Ex7/TweetView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex7-bindings-part3/Ex7/TweetView.xaml.cs -------------------------------------------------------------------------------- /src/complete/ex7-bindings-part3/Ex7/TweetViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex7-bindings-part3/Ex7/TweetViewModel.cs -------------------------------------------------------------------------------- /src/complete/ex7-bindings-part3/Ex7/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex7-bindings-part3/Ex7/packages.config -------------------------------------------------------------------------------- /src/complete/ex7-bindings-part3/ex7-bindings-part3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex7-bindings-part3/ex7-bindings-part3.sln -------------------------------------------------------------------------------- /src/complete/ex8-routing/Ex8/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex8-routing/Ex8/App.config -------------------------------------------------------------------------------- /src/complete/ex8-routing/Ex8/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex8-routing/Ex8/App.xaml -------------------------------------------------------------------------------- /src/complete/ex8-routing/Ex8/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex8-routing/Ex8/App.xaml.cs -------------------------------------------------------------------------------- /src/complete/ex8-routing/Ex8/AppBootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex8-routing/Ex8/AppBootstrapper.cs -------------------------------------------------------------------------------- /src/complete/ex8-routing/Ex8/Ex8.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex8-routing/Ex8/Ex8.csproj -------------------------------------------------------------------------------- /src/complete/ex8-routing/Ex8/MainWindowView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex8-routing/Ex8/MainWindowView.xaml -------------------------------------------------------------------------------- /src/complete/ex8-routing/Ex8/MainWindowView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex8-routing/Ex8/MainWindowView.xaml.cs -------------------------------------------------------------------------------- /src/complete/ex8-routing/Ex8/MainWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex8-routing/Ex8/MainWindowViewModel.cs -------------------------------------------------------------------------------- /src/complete/ex8-routing/Ex8/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex8-routing/Ex8/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/complete/ex8-routing/Ex8/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex8-routing/Ex8/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/complete/ex8-routing/Ex8/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex8-routing/Ex8/Properties/Resources.resx -------------------------------------------------------------------------------- /src/complete/ex8-routing/Ex8/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex8-routing/Ex8/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/complete/ex8-routing/Ex8/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex8-routing/Ex8/Properties/Settings.settings -------------------------------------------------------------------------------- /src/complete/ex8-routing/Ex8/ViewA.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex8-routing/Ex8/ViewA.xaml -------------------------------------------------------------------------------- /src/complete/ex8-routing/Ex8/ViewA.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex8-routing/Ex8/ViewA.xaml.cs -------------------------------------------------------------------------------- /src/complete/ex8-routing/Ex8/ViewB.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex8-routing/Ex8/ViewB.xaml -------------------------------------------------------------------------------- /src/complete/ex8-routing/Ex8/ViewB.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex8-routing/Ex8/ViewB.xaml.cs -------------------------------------------------------------------------------- /src/complete/ex8-routing/Ex8/ViewInstanceCount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex8-routing/Ex8/ViewInstanceCount.cs -------------------------------------------------------------------------------- /src/complete/ex8-routing/Ex8/ViewModelA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex8-routing/Ex8/ViewModelA.cs -------------------------------------------------------------------------------- /src/complete/ex8-routing/Ex8/ViewModelB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex8-routing/Ex8/ViewModelB.cs -------------------------------------------------------------------------------- /src/complete/ex8-routing/Ex8/ViewModelInstanceCount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex8-routing/Ex8/ViewModelInstanceCount.cs -------------------------------------------------------------------------------- /src/complete/ex8-routing/Ex8/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex8-routing/Ex8/packages.config -------------------------------------------------------------------------------- /src/complete/ex8-routing/ex8-routing.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex8-routing/ex8-routing.sln -------------------------------------------------------------------------------- /src/complete/ex9-derivedlists/Ex9/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex9-derivedlists/Ex9/App.config -------------------------------------------------------------------------------- /src/complete/ex9-derivedlists/Ex9/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex9-derivedlists/Ex9/App.xaml -------------------------------------------------------------------------------- /src/complete/ex9-derivedlists/Ex9/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex9-derivedlists/Ex9/App.xaml.cs -------------------------------------------------------------------------------- /src/complete/ex9-derivedlists/Ex9/Ex9.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex9-derivedlists/Ex9/Ex9.csproj -------------------------------------------------------------------------------- /src/complete/ex9-derivedlists/Ex9/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex9-derivedlists/Ex9/MainWindow.xaml -------------------------------------------------------------------------------- /src/complete/ex9-derivedlists/Ex9/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex9-derivedlists/Ex9/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/complete/ex9-derivedlists/Ex9/MainWindowModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex9-derivedlists/Ex9/MainWindowModel.cs -------------------------------------------------------------------------------- /src/complete/ex9-derivedlists/Ex9/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex9-derivedlists/Ex9/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/complete/ex9-derivedlists/Ex9/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex9-derivedlists/Ex9/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/complete/ex9-derivedlists/Ex9/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex9-derivedlists/Ex9/Properties/Resources.resx -------------------------------------------------------------------------------- /src/complete/ex9-derivedlists/Ex9/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex9-derivedlists/Ex9/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/complete/ex9-derivedlists/Ex9/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex9-derivedlists/Ex9/Properties/Settings.settings -------------------------------------------------------------------------------- /src/complete/ex9-derivedlists/Ex9/TestDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex9-derivedlists/Ex9/TestDataSource.cs -------------------------------------------------------------------------------- /src/complete/ex9-derivedlists/Ex9/TestModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex9-derivedlists/Ex9/TestModel.cs -------------------------------------------------------------------------------- /src/complete/ex9-derivedlists/Ex9/TestView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex9-derivedlists/Ex9/TestView.xaml -------------------------------------------------------------------------------- /src/complete/ex9-derivedlists/Ex9/TestView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex9-derivedlists/Ex9/TestView.xaml.cs -------------------------------------------------------------------------------- /src/complete/ex9-derivedlists/Ex9/TestViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex9-derivedlists/Ex9/TestViewModel.cs -------------------------------------------------------------------------------- /src/complete/ex9-derivedlists/Ex9/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex9-derivedlists/Ex9/packages.config -------------------------------------------------------------------------------- /src/complete/ex9-derivedlists/ex9-derivedlists.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/complete/ex9-derivedlists/ex9-derivedlists.sln -------------------------------------------------------------------------------- /src/exercises/ex1-readonlyproperties/Ex1.Tests/Ex1.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex1-readonlyproperties/Ex1.Tests/Ex1.Tests.csproj -------------------------------------------------------------------------------- /src/exercises/ex1-readonlyproperties/Ex1.Tests/PersonViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex1-readonlyproperties/Ex1.Tests/PersonViewModelTests.cs -------------------------------------------------------------------------------- /src/exercises/ex1-readonlyproperties/Ex1.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex1-readonlyproperties/Ex1.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/exercises/ex1-readonlyproperties/Ex1.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex1-readonlyproperties/Ex1.Tests/packages.config -------------------------------------------------------------------------------- /src/exercises/ex1-readonlyproperties/Ex1/Ex1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex1-readonlyproperties/Ex1/Ex1.csproj -------------------------------------------------------------------------------- /src/exercises/ex1-readonlyproperties/Ex1/PersonViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex1-readonlyproperties/Ex1/PersonViewModel.cs -------------------------------------------------------------------------------- /src/exercises/ex1-readonlyproperties/Ex1/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex1-readonlyproperties/Ex1/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/exercises/ex1-readonlyproperties/Ex1/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex1-readonlyproperties/Ex1/packages.config -------------------------------------------------------------------------------- /src/exercises/ex1-readonlyproperties/ex1-readonlyproperties.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex1-readonlyproperties/ex1-readonlyproperties.sln -------------------------------------------------------------------------------- /src/exercises/ex2-reactivecommand-part1/Ex2.Tests/Ex2.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex2-reactivecommand-part1/Ex2.Tests/Ex2.Tests.csproj -------------------------------------------------------------------------------- /src/exercises/ex2-reactivecommand-part1/Ex2.Tests/PersonViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex2-reactivecommand-part1/Ex2.Tests/PersonViewModelTests.cs -------------------------------------------------------------------------------- /src/exercises/ex2-reactivecommand-part1/Ex2.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex2-reactivecommand-part1/Ex2.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/exercises/ex2-reactivecommand-part1/Ex2.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex2-reactivecommand-part1/Ex2.Tests/packages.config -------------------------------------------------------------------------------- /src/exercises/ex2-reactivecommand-part1/Ex2/Ex2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex2-reactivecommand-part1/Ex2/Ex2.csproj -------------------------------------------------------------------------------- /src/exercises/ex2-reactivecommand-part1/Ex2/PersonViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex2-reactivecommand-part1/Ex2/PersonViewModel.cs -------------------------------------------------------------------------------- /src/exercises/ex2-reactivecommand-part1/Ex2/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex2-reactivecommand-part1/Ex2/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/exercises/ex2-reactivecommand-part1/Ex2/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex2-reactivecommand-part1/Ex2/packages.config -------------------------------------------------------------------------------- /src/exercises/ex2-reactivecommand-part1/ex2-reactivecommand-part1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex2-reactivecommand-part1/ex2-reactivecommand-part1.sln -------------------------------------------------------------------------------- /src/exercises/ex3-reactivecommand-part2/Ex3.Tests/Ex3.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex3-reactivecommand-part2/Ex3.Tests/Ex3.Tests.csproj -------------------------------------------------------------------------------- /src/exercises/ex3-reactivecommand-part2/Ex3.Tests/PersonViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex3-reactivecommand-part2/Ex3.Tests/PersonViewModelTests.cs -------------------------------------------------------------------------------- /src/exercises/ex3-reactivecommand-part2/Ex3.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex3-reactivecommand-part2/Ex3.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/exercises/ex3-reactivecommand-part2/Ex3.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex3-reactivecommand-part2/Ex3.Tests/packages.config -------------------------------------------------------------------------------- /src/exercises/ex3-reactivecommand-part2/Ex3/Ex3.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex3-reactivecommand-part2/Ex3/Ex3.csproj -------------------------------------------------------------------------------- /src/exercises/ex3-reactivecommand-part2/Ex3/PersonViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex3-reactivecommand-part2/Ex3/PersonViewModel.cs -------------------------------------------------------------------------------- /src/exercises/ex3-reactivecommand-part2/Ex3/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex3-reactivecommand-part2/Ex3/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/exercises/ex3-reactivecommand-part2/Ex3/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex3-reactivecommand-part2/Ex3/packages.config -------------------------------------------------------------------------------- /src/exercises/ex3-reactivecommand-part2/ex3-reactivecommand-part2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex3-reactivecommand-part2/ex3-reactivecommand-part2.sln -------------------------------------------------------------------------------- /src/exercises/ex4-bindings-part1/Ex4/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex4-bindings-part1/Ex4/App.config -------------------------------------------------------------------------------- /src/exercises/ex4-bindings-part1/Ex4/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex4-bindings-part1/Ex4/App.xaml -------------------------------------------------------------------------------- /src/exercises/ex4-bindings-part1/Ex4/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex4-bindings-part1/Ex4/App.xaml.cs -------------------------------------------------------------------------------- /src/exercises/ex4-bindings-part1/Ex4/Ex4.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex4-bindings-part1/Ex4/Ex4.csproj -------------------------------------------------------------------------------- /src/exercises/ex4-bindings-part1/Ex4/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex4-bindings-part1/Ex4/MainWindow.xaml -------------------------------------------------------------------------------- /src/exercises/ex4-bindings-part1/Ex4/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex4-bindings-part1/Ex4/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/exercises/ex4-bindings-part1/Ex4/MainWindowModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex4-bindings-part1/Ex4/MainWindowModel.cs -------------------------------------------------------------------------------- /src/exercises/ex4-bindings-part1/Ex4/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex4-bindings-part1/Ex4/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/exercises/ex4-bindings-part1/Ex4/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex4-bindings-part1/Ex4/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/exercises/ex4-bindings-part1/Ex4/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex4-bindings-part1/Ex4/Properties/Resources.resx -------------------------------------------------------------------------------- /src/exercises/ex4-bindings-part1/Ex4/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex4-bindings-part1/Ex4/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/exercises/ex4-bindings-part1/Ex4/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex4-bindings-part1/Ex4/Properties/Settings.settings -------------------------------------------------------------------------------- /src/exercises/ex4-bindings-part1/Ex4/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex4-bindings-part1/Ex4/packages.config -------------------------------------------------------------------------------- /src/exercises/ex4-bindings-part1/ex4-bindings-part1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex4-bindings-part1/ex4-bindings-part1.sln -------------------------------------------------------------------------------- /src/exercises/ex5-viewmodel-composition/Ex5/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex5-viewmodel-composition/Ex5/App.config -------------------------------------------------------------------------------- /src/exercises/ex5-viewmodel-composition/Ex5/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex5-viewmodel-composition/Ex5/App.xaml -------------------------------------------------------------------------------- /src/exercises/ex5-viewmodel-composition/Ex5/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex5-viewmodel-composition/Ex5/App.xaml.cs -------------------------------------------------------------------------------- /src/exercises/ex5-viewmodel-composition/Ex5/AppBootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex5-viewmodel-composition/Ex5/AppBootstrapper.cs -------------------------------------------------------------------------------- /src/exercises/ex5-viewmodel-composition/Ex5/ControlStyles.ReactiveUI.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex5-viewmodel-composition/Ex5/ControlStyles.ReactiveUI.xaml -------------------------------------------------------------------------------- /src/exercises/ex5-viewmodel-composition/Ex5/Ex5.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex5-viewmodel-composition/Ex5/Ex5.csproj -------------------------------------------------------------------------------- /src/exercises/ex5-viewmodel-composition/Ex5/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex5-viewmodel-composition/Ex5/MainWindow.xaml -------------------------------------------------------------------------------- /src/exercises/ex5-viewmodel-composition/Ex5/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex5-viewmodel-composition/Ex5/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/exercises/ex5-viewmodel-composition/Ex5/MainWindowModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex5-viewmodel-composition/Ex5/MainWindowModel.cs -------------------------------------------------------------------------------- /src/exercises/ex5-viewmodel-composition/Ex5/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex5-viewmodel-composition/Ex5/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/exercises/ex5-viewmodel-composition/Ex5/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex5-viewmodel-composition/Ex5/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/exercises/ex5-viewmodel-composition/Ex5/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex5-viewmodel-composition/Ex5/Properties/Resources.resx -------------------------------------------------------------------------------- /src/exercises/ex5-viewmodel-composition/Ex5/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex5-viewmodel-composition/Ex5/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/exercises/ex5-viewmodel-composition/Ex5/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex5-viewmodel-composition/Ex5/Properties/Settings.settings -------------------------------------------------------------------------------- /src/exercises/ex5-viewmodel-composition/Ex5/TitleBarView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex5-viewmodel-composition/Ex5/TitleBarView.xaml -------------------------------------------------------------------------------- /src/exercises/ex5-viewmodel-composition/Ex5/TitleBarView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex5-viewmodel-composition/Ex5/TitleBarView.xaml.cs -------------------------------------------------------------------------------- /src/exercises/ex5-viewmodel-composition/Ex5/TitleBarViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex5-viewmodel-composition/Ex5/TitleBarViewModel.cs -------------------------------------------------------------------------------- /src/exercises/ex5-viewmodel-composition/Ex5/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex5-viewmodel-composition/Ex5/packages.config -------------------------------------------------------------------------------- /src/exercises/ex5-viewmodel-composition/ex5-viewmodel-composition.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex5-viewmodel-composition/ex5-viewmodel-composition.sln -------------------------------------------------------------------------------- /src/exercises/ex6-bindings-part2/Ex6/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex6-bindings-part2/Ex6/App.config -------------------------------------------------------------------------------- /src/exercises/ex6-bindings-part2/Ex6/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex6-bindings-part2/Ex6/App.xaml -------------------------------------------------------------------------------- /src/exercises/ex6-bindings-part2/Ex6/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex6-bindings-part2/Ex6/App.xaml.cs -------------------------------------------------------------------------------- /src/exercises/ex6-bindings-part2/Ex6/AppBootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex6-bindings-part2/Ex6/AppBootstrapper.cs -------------------------------------------------------------------------------- /src/exercises/ex6-bindings-part2/Ex6/ControlStyles.ReactiveUI.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex6-bindings-part2/Ex6/ControlStyles.ReactiveUI.xaml -------------------------------------------------------------------------------- /src/exercises/ex6-bindings-part2/Ex6/Ex6.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex6-bindings-part2/Ex6/Ex6.csproj -------------------------------------------------------------------------------- /src/exercises/ex6-bindings-part2/Ex6/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex6-bindings-part2/Ex6/MainWindow.xaml -------------------------------------------------------------------------------- /src/exercises/ex6-bindings-part2/Ex6/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex6-bindings-part2/Ex6/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/exercises/ex6-bindings-part2/Ex6/MainWindowModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex6-bindings-part2/Ex6/MainWindowModel.cs -------------------------------------------------------------------------------- /src/exercises/ex6-bindings-part2/Ex6/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex6-bindings-part2/Ex6/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/exercises/ex6-bindings-part2/Ex6/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex6-bindings-part2/Ex6/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/exercises/ex6-bindings-part2/Ex6/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex6-bindings-part2/Ex6/Properties/Resources.resx -------------------------------------------------------------------------------- /src/exercises/ex6-bindings-part2/Ex6/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex6-bindings-part2/Ex6/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/exercises/ex6-bindings-part2/Ex6/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex6-bindings-part2/Ex6/Properties/Settings.settings -------------------------------------------------------------------------------- /src/exercises/ex6-bindings-part2/Ex6/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex6-bindings-part2/Ex6/packages.config -------------------------------------------------------------------------------- /src/exercises/ex6-bindings-part2/ex6-bindings-part2.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex6-bindings-part2/ex6-bindings-part2.sln -------------------------------------------------------------------------------- /src/exercises/ex7-bindings-part3/Ex7/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex7-bindings-part3/Ex7/App.config -------------------------------------------------------------------------------- /src/exercises/ex7-bindings-part3/Ex7/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex7-bindings-part3/Ex7/App.xaml -------------------------------------------------------------------------------- /src/exercises/ex7-bindings-part3/Ex7/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex7-bindings-part3/Ex7/App.xaml.cs -------------------------------------------------------------------------------- /src/exercises/ex7-bindings-part3/Ex7/AppBootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex7-bindings-part3/Ex7/AppBootstrapper.cs -------------------------------------------------------------------------------- /src/exercises/ex7-bindings-part3/Ex7/ControlStyles.ReactiveUI.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex7-bindings-part3/Ex7/ControlStyles.ReactiveUI.xaml -------------------------------------------------------------------------------- /src/exercises/ex7-bindings-part3/Ex7/Ex7.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex7-bindings-part3/Ex7/Ex7.csproj -------------------------------------------------------------------------------- /src/exercises/ex7-bindings-part3/Ex7/FakeData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex7-bindings-part3/Ex7/FakeData.cs -------------------------------------------------------------------------------- /src/exercises/ex7-bindings-part3/Ex7/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex7-bindings-part3/Ex7/MainWindow.xaml -------------------------------------------------------------------------------- /src/exercises/ex7-bindings-part3/Ex7/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex7-bindings-part3/Ex7/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/exercises/ex7-bindings-part3/Ex7/MainWindowModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex7-bindings-part3/Ex7/MainWindowModel.cs -------------------------------------------------------------------------------- /src/exercises/ex7-bindings-part3/Ex7/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex7-bindings-part3/Ex7/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/exercises/ex7-bindings-part3/Ex7/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex7-bindings-part3/Ex7/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/exercises/ex7-bindings-part3/Ex7/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex7-bindings-part3/Ex7/Properties/Resources.resx -------------------------------------------------------------------------------- /src/exercises/ex7-bindings-part3/Ex7/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex7-bindings-part3/Ex7/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/exercises/ex7-bindings-part3/Ex7/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex7-bindings-part3/Ex7/Properties/Settings.settings -------------------------------------------------------------------------------- /src/exercises/ex7-bindings-part3/Ex7/TweetView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex7-bindings-part3/Ex7/TweetView.xaml -------------------------------------------------------------------------------- /src/exercises/ex7-bindings-part3/Ex7/TweetView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex7-bindings-part3/Ex7/TweetView.xaml.cs -------------------------------------------------------------------------------- /src/exercises/ex7-bindings-part3/Ex7/TweetViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex7-bindings-part3/Ex7/TweetViewModel.cs -------------------------------------------------------------------------------- /src/exercises/ex7-bindings-part3/Ex7/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex7-bindings-part3/Ex7/packages.config -------------------------------------------------------------------------------- /src/exercises/ex7-bindings-part3/ex7-bindings-part3.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex7-bindings-part3/ex7-bindings-part3.sln -------------------------------------------------------------------------------- /src/exercises/ex8-routing/Ex8/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex8-routing/Ex8/App.config -------------------------------------------------------------------------------- /src/exercises/ex8-routing/Ex8/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex8-routing/Ex8/App.xaml -------------------------------------------------------------------------------- /src/exercises/ex8-routing/Ex8/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex8-routing/Ex8/App.xaml.cs -------------------------------------------------------------------------------- /src/exercises/ex8-routing/Ex8/AppBootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex8-routing/Ex8/AppBootstrapper.cs -------------------------------------------------------------------------------- /src/exercises/ex8-routing/Ex8/Ex8.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex8-routing/Ex8/Ex8.csproj -------------------------------------------------------------------------------- /src/exercises/ex8-routing/Ex8/MainWindowView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex8-routing/Ex8/MainWindowView.xaml -------------------------------------------------------------------------------- /src/exercises/ex8-routing/Ex8/MainWindowView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex8-routing/Ex8/MainWindowView.xaml.cs -------------------------------------------------------------------------------- /src/exercises/ex8-routing/Ex8/MainWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex8-routing/Ex8/MainWindowViewModel.cs -------------------------------------------------------------------------------- /src/exercises/ex8-routing/Ex8/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex8-routing/Ex8/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/exercises/ex8-routing/Ex8/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex8-routing/Ex8/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/exercises/ex8-routing/Ex8/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex8-routing/Ex8/Properties/Resources.resx -------------------------------------------------------------------------------- /src/exercises/ex8-routing/Ex8/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex8-routing/Ex8/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/exercises/ex8-routing/Ex8/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex8-routing/Ex8/Properties/Settings.settings -------------------------------------------------------------------------------- /src/exercises/ex8-routing/Ex8/ViewA.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex8-routing/Ex8/ViewA.xaml -------------------------------------------------------------------------------- /src/exercises/ex8-routing/Ex8/ViewA.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex8-routing/Ex8/ViewA.xaml.cs -------------------------------------------------------------------------------- /src/exercises/ex8-routing/Ex8/ViewB.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex8-routing/Ex8/ViewB.xaml -------------------------------------------------------------------------------- /src/exercises/ex8-routing/Ex8/ViewB.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex8-routing/Ex8/ViewB.xaml.cs -------------------------------------------------------------------------------- /src/exercises/ex8-routing/Ex8/ViewInstanceCount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex8-routing/Ex8/ViewInstanceCount.cs -------------------------------------------------------------------------------- /src/exercises/ex8-routing/Ex8/ViewModelA.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex8-routing/Ex8/ViewModelA.cs -------------------------------------------------------------------------------- /src/exercises/ex8-routing/Ex8/ViewModelB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex8-routing/Ex8/ViewModelB.cs -------------------------------------------------------------------------------- /src/exercises/ex8-routing/Ex8/ViewModelInstanceCount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex8-routing/Ex8/ViewModelInstanceCount.cs -------------------------------------------------------------------------------- /src/exercises/ex8-routing/Ex8/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex8-routing/Ex8/packages.config -------------------------------------------------------------------------------- /src/exercises/ex8-routing/ex8-routing.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex8-routing/ex8-routing.sln -------------------------------------------------------------------------------- /src/exercises/ex9-derivedlists/Ex9/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex9-derivedlists/Ex9/App.config -------------------------------------------------------------------------------- /src/exercises/ex9-derivedlists/Ex9/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex9-derivedlists/Ex9/App.xaml -------------------------------------------------------------------------------- /src/exercises/ex9-derivedlists/Ex9/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex9-derivedlists/Ex9/App.xaml.cs -------------------------------------------------------------------------------- /src/exercises/ex9-derivedlists/Ex9/Ex9.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex9-derivedlists/Ex9/Ex9.csproj -------------------------------------------------------------------------------- /src/exercises/ex9-derivedlists/Ex9/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex9-derivedlists/Ex9/MainWindow.xaml -------------------------------------------------------------------------------- /src/exercises/ex9-derivedlists/Ex9/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex9-derivedlists/Ex9/MainWindow.xaml.cs -------------------------------------------------------------------------------- /src/exercises/ex9-derivedlists/Ex9/MainWindowModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex9-derivedlists/Ex9/MainWindowModel.cs -------------------------------------------------------------------------------- /src/exercises/ex9-derivedlists/Ex9/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex9-derivedlists/Ex9/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/exercises/ex9-derivedlists/Ex9/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex9-derivedlists/Ex9/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/exercises/ex9-derivedlists/Ex9/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex9-derivedlists/Ex9/Properties/Resources.resx -------------------------------------------------------------------------------- /src/exercises/ex9-derivedlists/Ex9/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex9-derivedlists/Ex9/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/exercises/ex9-derivedlists/Ex9/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex9-derivedlists/Ex9/Properties/Settings.settings -------------------------------------------------------------------------------- /src/exercises/ex9-derivedlists/Ex9/TestDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex9-derivedlists/Ex9/TestDataSource.cs -------------------------------------------------------------------------------- /src/exercises/ex9-derivedlists/Ex9/TestModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex9-derivedlists/Ex9/TestModel.cs -------------------------------------------------------------------------------- /src/exercises/ex9-derivedlists/Ex9/TestView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex9-derivedlists/Ex9/TestView.xaml -------------------------------------------------------------------------------- /src/exercises/ex9-derivedlists/Ex9/TestView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex9-derivedlists/Ex9/TestView.xaml.cs -------------------------------------------------------------------------------- /src/exercises/ex9-derivedlists/Ex9/TestViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex9-derivedlists/Ex9/TestViewModel.cs -------------------------------------------------------------------------------- /src/exercises/ex9-derivedlists/Ex9/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex9-derivedlists/Ex9/packages.config -------------------------------------------------------------------------------- /src/exercises/ex9-derivedlists/ex9-derivedlists.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jen20/ProgNET2014/HEAD/src/exercises/ex9-derivedlists/ex9-derivedlists.sln --------------------------------------------------------------------------------