├── .gitattributes ├── .gitignore ├── README.md ├── images ├── findancestor01.png ├── findancestor02.png ├── relativesource.png ├── self.png └── templatedparent.png └── src ├── RelativeSourcePlayground.Android ├── Assets │ ├── AboutAssets.txt │ ├── Montserrat-Bold.ttf │ └── Montserrat-Regular.ttf ├── MainActivity.cs ├── Properties │ ├── AndroidManifest.xml │ └── AssemblyInfo.cs ├── RelativeSourcePlayground.Android.csproj └── Resources │ ├── AboutResources.txt │ ├── Resource.designer.cs │ ├── drawable │ ├── coffee.png │ ├── marshmallows.png │ ├── plant.png │ └── strawberry.png │ ├── layout │ ├── Tabbar.xml │ └── Toolbar.xml │ ├── mipmap-anydpi-v26 │ ├── icon.xml │ └── icon_round.xml │ ├── mipmap-hdpi │ ├── icon.png │ └── launcher_foreground.png │ ├── mipmap-mdpi │ ├── icon.png │ └── launcher_foreground.png │ ├── mipmap-xhdpi │ ├── icon.png │ └── launcher_foreground.png │ ├── mipmap-xxhdpi │ ├── icon.png │ └── launcher_foreground.png │ ├── mipmap-xxxhdpi │ ├── icon.png │ └── launcher_foreground.png │ └── values │ ├── colors.xml │ └── styles.xml ├── RelativeSourcePlayground.iOS ├── AppDelegate.cs ├── Assets.xcassets │ └── AppIcon.appiconset │ │ ├── Contents.json │ │ ├── Icon1024.png │ │ ├── Icon120.png │ │ ├── Icon152.png │ │ ├── Icon167.png │ │ ├── Icon180.png │ │ ├── Icon20.png │ │ ├── Icon29.png │ │ ├── Icon40.png │ │ ├── Icon58.png │ │ ├── Icon60.png │ │ ├── Icon76.png │ │ ├── Icon80.png │ │ └── Icon87.png ├── Entitlements.plist ├── Info.plist ├── Main.cs ├── Properties │ └── AssemblyInfo.cs ├── RelativeSourcePlayground.iOS.csproj └── Resources │ ├── Default-568h@2x.png │ ├── Default-Portrait.png │ ├── Default-Portrait@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── LaunchScreen.storyboard │ ├── Montserrat-Bold.ttf │ ├── Montserrat-Regular.ttf │ ├── coffee.png │ ├── marshmallows.png │ ├── plant.png │ └── strawberry.png ├── RelativeSourcePlayground.sln └── RelativeSourcePlayground ├── App.xaml ├── App.xaml.cs ├── AssemblyInfo.cs ├── Controls └── DrinkCardView.cs ├── Models └── Drink.cs ├── RelativeSourcePlayground.csproj ├── ViewModels └── RelativeSourceViewModel.cs └── Views ├── MainView.xaml ├── MainView.xaml.cs ├── RelativeSourceFindAncestorView.xaml ├── RelativeSourceFindAncestorView.xaml.cs ├── RelativeSourceSelfView.xaml ├── RelativeSourceSelfView.xaml.cs ├── RelativeSourceTemplatedParentView.xaml └── RelativeSourceTemplatedParentView.xaml.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/README.md -------------------------------------------------------------------------------- /images/findancestor01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/images/findancestor01.png -------------------------------------------------------------------------------- /images/findancestor02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/images/findancestor02.png -------------------------------------------------------------------------------- /images/relativesource.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/images/relativesource.png -------------------------------------------------------------------------------- /images/self.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/images/self.png -------------------------------------------------------------------------------- /images/templatedparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/images/templatedparent.png -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.Android/Assets/AboutAssets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.Android/Assets/AboutAssets.txt -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.Android/Assets/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.Android/Assets/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.Android/Assets/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.Android/Assets/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.Android/MainActivity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.Android/MainActivity.cs -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.Android/Properties/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.Android/Properties/AndroidManifest.xml -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.Android/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.Android/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.Android/RelativeSourcePlayground.Android.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.Android/RelativeSourcePlayground.Android.csproj -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.Android/Resources/AboutResources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.Android/Resources/AboutResources.txt -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.Android/Resources/Resource.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.Android/Resources/Resource.designer.cs -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.Android/Resources/drawable/coffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.Android/Resources/drawable/coffee.png -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.Android/Resources/drawable/marshmallows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.Android/Resources/drawable/marshmallows.png -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.Android/Resources/drawable/plant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.Android/Resources/drawable/plant.png -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.Android/Resources/drawable/strawberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.Android/Resources/drawable/strawberry.png -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.Android/Resources/layout/Tabbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.Android/Resources/layout/Tabbar.xml -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.Android/Resources/layout/Toolbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.Android/Resources/layout/Toolbar.xml -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.Android/Resources/mipmap-anydpi-v26/icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.Android/Resources/mipmap-anydpi-v26/icon.xml -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.Android/Resources/mipmap-anydpi-v26/icon_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.Android/Resources/mipmap-anydpi-v26/icon_round.xml -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.Android/Resources/mipmap-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.Android/Resources/mipmap-hdpi/icon.png -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.Android/Resources/mipmap-hdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.Android/Resources/mipmap-hdpi/launcher_foreground.png -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.Android/Resources/mipmap-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.Android/Resources/mipmap-mdpi/icon.png -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.Android/Resources/mipmap-mdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.Android/Resources/mipmap-mdpi/launcher_foreground.png -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.Android/Resources/mipmap-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.Android/Resources/mipmap-xhdpi/icon.png -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.Android/Resources/mipmap-xhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.Android/Resources/mipmap-xhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.Android/Resources/mipmap-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.Android/Resources/mipmap-xxhdpi/icon.png -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.Android/Resources/mipmap-xxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.Android/Resources/mipmap-xxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.Android/Resources/mipmap-xxxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.Android/Resources/mipmap-xxxhdpi/icon.png -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.Android/Resources/mipmap-xxxhdpi/launcher_foreground.png -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.Android/Resources/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.Android/Resources/values/colors.xml -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.Android/Resources/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.Android/Resources/values/styles.xml -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.iOS/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.iOS/AppDelegate.cs -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.iOS/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.iOS/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.iOS/Assets.xcassets/AppIcon.appiconset/Icon120.png -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.iOS/Assets.xcassets/AppIcon.appiconset/Icon152.png -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.iOS/Assets.xcassets/AppIcon.appiconset/Icon167.png -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.iOS/Assets.xcassets/AppIcon.appiconset/Icon180.png -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.iOS/Assets.xcassets/AppIcon.appiconset/Icon20.png -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.iOS/Assets.xcassets/AppIcon.appiconset/Icon29.png -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.iOS/Assets.xcassets/AppIcon.appiconset/Icon40.png -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.iOS/Assets.xcassets/AppIcon.appiconset/Icon58.png -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.iOS/Assets.xcassets/AppIcon.appiconset/Icon60.png -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.iOS/Assets.xcassets/AppIcon.appiconset/Icon76.png -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.iOS/Assets.xcassets/AppIcon.appiconset/Icon80.png -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.iOS/Assets.xcassets/AppIcon.appiconset/Icon87.png -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.iOS/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.iOS/Entitlements.plist -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.iOS/Info.plist -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.iOS/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.iOS/Main.cs -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.iOS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.iOS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.iOS/RelativeSourcePlayground.iOS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.iOS/RelativeSourcePlayground.iOS.csproj -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.iOS/Resources/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.iOS/Resources/Default-568h@2x.png -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.iOS/Resources/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.iOS/Resources/Default-Portrait.png -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.iOS/Resources/Default-Portrait@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.iOS/Resources/Default-Portrait@2x.png -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.iOS/Resources/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.iOS/Resources/Default.png -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.iOS/Resources/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.iOS/Resources/Default@2x.png -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.iOS/Resources/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.iOS/Resources/LaunchScreen.storyboard -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.iOS/Resources/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.iOS/Resources/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.iOS/Resources/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.iOS/Resources/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.iOS/Resources/coffee.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.iOS/Resources/coffee.png -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.iOS/Resources/marshmallows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.iOS/Resources/marshmallows.png -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.iOS/Resources/plant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.iOS/Resources/plant.png -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.iOS/Resources/strawberry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.iOS/Resources/strawberry.png -------------------------------------------------------------------------------- /src/RelativeSourcePlayground.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground.sln -------------------------------------------------------------------------------- /src/RelativeSourcePlayground/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground/App.xaml -------------------------------------------------------------------------------- /src/RelativeSourcePlayground/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground/App.xaml.cs -------------------------------------------------------------------------------- /src/RelativeSourcePlayground/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/RelativeSourcePlayground/Controls/DrinkCardView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground/Controls/DrinkCardView.cs -------------------------------------------------------------------------------- /src/RelativeSourcePlayground/Models/Drink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground/Models/Drink.cs -------------------------------------------------------------------------------- /src/RelativeSourcePlayground/RelativeSourcePlayground.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground/RelativeSourcePlayground.csproj -------------------------------------------------------------------------------- /src/RelativeSourcePlayground/ViewModels/RelativeSourceViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground/ViewModels/RelativeSourceViewModel.cs -------------------------------------------------------------------------------- /src/RelativeSourcePlayground/Views/MainView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground/Views/MainView.xaml -------------------------------------------------------------------------------- /src/RelativeSourcePlayground/Views/MainView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground/Views/MainView.xaml.cs -------------------------------------------------------------------------------- /src/RelativeSourcePlayground/Views/RelativeSourceFindAncestorView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground/Views/RelativeSourceFindAncestorView.xaml -------------------------------------------------------------------------------- /src/RelativeSourcePlayground/Views/RelativeSourceFindAncestorView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground/Views/RelativeSourceFindAncestorView.xaml.cs -------------------------------------------------------------------------------- /src/RelativeSourcePlayground/Views/RelativeSourceSelfView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground/Views/RelativeSourceSelfView.xaml -------------------------------------------------------------------------------- /src/RelativeSourcePlayground/Views/RelativeSourceSelfView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground/Views/RelativeSourceSelfView.xaml.cs -------------------------------------------------------------------------------- /src/RelativeSourcePlayground/Views/RelativeSourceTemplatedParentView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground/Views/RelativeSourceTemplatedParentView.xaml -------------------------------------------------------------------------------- /src/RelativeSourcePlayground/Views/RelativeSourceTemplatedParentView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jsuarezruiz/RelativeSourcePlayground/HEAD/src/RelativeSourcePlayground/Views/RelativeSourceTemplatedParentView.xaml.cs --------------------------------------------------------------------------------