├── .gitattributes ├── .gitignore ├── 1903_Hands_On_Labs ├── Exercise01 │ ├── Readme.md │ └── WPF_XAMLIslands_v1 │ │ ├── MyClassLibrary │ │ ├── MyClassLibrary.csproj │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── MyClassLibrary.rd.xml │ │ ├── WelcomePage.xaml │ │ └── WelcomePage.xaml.cs │ │ ├── WAP │ │ ├── Images │ │ │ └── _dont_delete.txt │ │ ├── Package.appxmanifest │ │ └── WAP.wapproj │ │ ├── WPF_XAMLIslands_v1.sln │ │ ├── WPF_XAMLIslands_v1 │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cs │ │ ├── Program.cs │ │ └── WPF_XAMLIslands_v1.csproj │ │ └── XamlApplication │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── CustomXamlApplication.csproj │ │ ├── Images │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ └── Wide310x150Logo.scale-200.png │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ └── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml └── Exercise02 │ ├── Readme.md │ └── WinForms_XAMLIslands_v1 │ ├── CustomXamlApplication │ ├── App.xaml │ ├── App.xaml.cs │ ├── CustomXamlApplication.csproj │ ├── Images │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SplashScreen.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ └── Wide310x150Logo.scale-200.png │ ├── MainPage.xaml │ ├── MainPage.xaml.cs │ ├── Package.appxmanifest │ └── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ ├── MyClassLibrary │ ├── MyClassLibrary.csproj │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── MyClassLibrary.rd.xml │ ├── WelcomePage.xaml │ └── WelcomePage.xaml.cs │ ├── WAP │ ├── Package.appxmanifest │ └── WAP.wapproj │ ├── WinForms_XAMLIslands_v1.sln │ └── WinForms_XAMLIslands_v1 │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Program.cs │ └── WinForms_XAMLIslands_v1.csproj ├── 1903_Samples ├── CppWinRT_Win32_App │ ├── CppWinRT_Win32_App.sln │ ├── MyApp │ │ ├── App.base.h │ │ ├── App.cpp │ │ ├── App.h │ │ ├── App.idl │ │ ├── App.xaml │ │ ├── Images │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ ├── StoreLogo.png │ │ │ └── Wide310x150Logo.scale-200.png │ │ ├── MainUserControl.cpp │ │ ├── MainUserControl.h │ │ ├── MainUserControl.idl │ │ ├── MainUserControl.xaml │ │ ├── MyApp.vcxproj │ │ ├── MyApp.vcxproj.filters │ │ ├── Package.appxmanifest │ │ ├── ReadMe.md │ │ ├── dummy.exe │ │ ├── packages.config │ │ ├── pch.cpp │ │ └── pch.h │ ├── ReadMe.md │ ├── SampleCppApp.Package │ │ ├── Images │ │ │ └── dummy.txt │ │ ├── Package.appxmanifest │ │ └── SampleCppApp.Package.wapproj │ ├── SampleCppApp │ │ ├── Application.manifest │ │ ├── Button1.xaml │ │ ├── ReadMe.md │ │ ├── Resource.h │ │ ├── SampleApp.cpp │ │ ├── SampleApp.h │ │ ├── SampleCppApp.ico │ │ ├── SampleCppApp.rc │ │ ├── SampleCppApp.vcxproj │ │ ├── SampleCppApp.vcxproj.filters │ │ ├── XamlBridge.cpp │ │ ├── XamlBridge.h │ │ ├── framework.h │ │ ├── packages.config │ │ ├── pch.cpp │ │ ├── pch.h │ │ ├── resources.pri │ │ ├── small.ico │ │ └── targetver.h │ ├── SampleLibraryCS │ │ ├── CustomUserControl.xaml │ │ ├── CustomUserControl.xaml.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── SampleLibraryCS.csproj │ ├── SampleUserControl │ │ ├── InternalUserControl.cpp │ │ ├── InternalUserControl.h │ │ ├── InternalUserControl.idl │ │ ├── InternalUserControl.xaml │ │ ├── MyUserControl.cpp │ │ ├── MyUserControl.h │ │ ├── MyUserControl.idl │ │ ├── MyUserControl.xaml │ │ ├── ReadMe.md │ │ ├── SampleUserControl.def │ │ ├── SampleUserControl.vcxproj │ │ ├── SampleUserControl.vcxproj.filters │ │ ├── packages.config │ │ ├── pch.cpp │ │ └── pch.h │ ├── Screenshoot.PNG │ └── Solution.props ├── CppWinRT_Win32_SimpleApp │ ├── Win32DesktopApp.sln │ └── Win32DesktopApp │ │ ├── HelloWindowsDesktop.cpp │ │ ├── Win32DesktopApp.exe.manifest │ │ ├── Win32DesktopApp.vcxproj │ │ ├── Win32DesktopApp.vcxproj.filters │ │ └── packages.config ├── CppWinRT_Win32_SingleIsland │ ├── CppWinRT_Win32_SingleIsland.sln │ ├── MyApp │ │ ├── App.base.h │ │ ├── App.cpp │ │ ├── App.h │ │ ├── App.idl │ │ ├── App.xaml │ │ ├── Images │ │ │ ├── LockScreenLogo.scale-200.png │ │ │ ├── SplashScreen.scale-200.png │ │ │ ├── Square150x150Logo.scale-200.png │ │ │ ├── Square44x44Logo.scale-200.png │ │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ │ ├── StoreLogo.png │ │ │ └── Wide310x150Logo.scale-200.png │ │ ├── MainUserControl.cpp │ │ ├── MainUserControl.h │ │ ├── MainUserControl.idl │ │ ├── MainUserControl.xaml │ │ ├── MyApp.vcxproj │ │ ├── MyApp.vcxproj.filters │ │ ├── Package.appxmanifest │ │ ├── ReadMe.md │ │ ├── dummy.exe │ │ ├── packages.config │ │ ├── pch.cpp │ │ └── pch.h │ ├── ReadMe.md │ ├── SampleCppApp.Package │ │ ├── Package.appxmanifest │ │ └── SampleCppApp.Package.wapproj │ ├── SampleCppApp │ │ ├── Application.manifest │ │ ├── Button1.xaml │ │ ├── ReadMe.md │ │ ├── Resource.h │ │ ├── SampleApp.cpp │ │ ├── SampleApp.h │ │ ├── SampleCppApp.ico │ │ ├── SampleCppApp.rc │ │ ├── SampleCppApp.vcxproj │ │ ├── SampleCppApp.vcxproj.filters │ │ ├── XamlBridge.cpp │ │ ├── XamlBridge.h │ │ ├── framework.h │ │ ├── packages.config │ │ ├── pch.cpp │ │ ├── pch.h │ │ ├── resources.pri │ │ ├── small.ico │ │ └── targetver.h │ ├── SampleUserControl │ │ ├── InternalUserControl.cpp │ │ ├── InternalUserControl.h │ │ ├── InternalUserControl.idl │ │ ├── InternalUserControl.xaml │ │ ├── MyUserControl.cpp │ │ ├── MyUserControl.h │ │ ├── MyUserControl.idl │ │ ├── MyUserControl.xaml │ │ ├── ReadMe.md │ │ ├── SampleUserControl.def │ │ ├── SampleUserControl.vcxproj │ │ ├── SampleUserControl.vcxproj.filters │ │ ├── packages.config │ │ ├── pch.cpp │ │ └── pch.h │ └── Solution.props ├── Shared_Components │ ├── Managed_WinRT_Comp │ │ ├── Assets │ │ │ └── SampleMedia │ │ │ │ ├── LandscapeImage1.jpg │ │ │ │ ├── LandscapeImage2.jpg │ │ │ │ ├── LandscapeImage3.jpg │ │ │ │ ├── LandscapeImage4.jpg │ │ │ │ ├── LandscapeImage5.jpg │ │ │ │ ├── LandscapeImage6.jpg │ │ │ │ ├── LandscapeImage7.jpg │ │ │ │ ├── LandscapeImage8.jpg │ │ │ │ ├── cliff.jpg │ │ │ │ ├── fishes.wmv │ │ │ │ ├── grapes.jpg │ │ │ │ ├── ladybug.wmv │ │ │ │ ├── notepad.jpg │ │ │ │ ├── rainier.jpg │ │ │ │ ├── sunset.jpg │ │ │ │ ├── treetops.jpg │ │ │ │ └── valley.jpg │ │ ├── Controls_Pages │ │ │ ├── AnimationsCardPage.xaml │ │ │ ├── AnimationsCardPage.xaml.cs │ │ │ ├── AnimationsPage.xaml │ │ │ ├── AnimationsPage.xaml.cs │ │ │ ├── BasicInputPage.xaml │ │ │ ├── BasicInputPage.xaml.cs │ │ │ ├── CollectionsPage.xaml │ │ │ ├── CollectionsPage.xaml.cs │ │ │ ├── DateAndTimePage.xaml │ │ │ ├── DateAndTimePage.xaml.cs │ │ │ ├── DialogsAndFlyoutsPage.xaml │ │ │ ├── DialogsAndFlyoutsPage.xaml.cs │ │ │ ├── LayoutPage.xaml │ │ │ ├── LayoutPage.xaml.cs │ │ │ ├── MediaPage.xaml │ │ │ ├── MediaPage.xaml.cs │ │ │ ├── MenuToolbarPage.xaml │ │ │ ├── MenuToolbarPage.xaml.cs │ │ │ ├── RevealPage.xaml │ │ │ ├── RevealPage.xaml.cs │ │ │ ├── TextPage.xaml │ │ │ ├── TextPage.xaml.cs │ │ │ ├── WinUIPage.xaml │ │ │ └── WinUIPage.xaml.cs │ │ ├── Directory.Build.props │ │ ├── Helpers │ │ │ └── WordGenerator.cs │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Managed_WinRT_Comp.csproj │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ └── MyUWPLib.rd.xml │ │ ├── SettingsPage.xaml │ │ ├── SettingsPage.xaml.cs │ │ ├── Strings │ │ │ ├── en-US │ │ │ │ └── Resources.resw │ │ │ └── es-ES │ │ │ │ └── Resources.resw │ │ ├── WelcomePage.xaml │ │ ├── WelcomePage.xaml.cs │ │ ├── XamlApp.xaml │ │ └── XamlApp.xaml.cs │ ├── Native_SwapChainPanel_Comp │ │ ├── CustomRenderer.cpp │ │ ├── CustomRenderer.h │ │ ├── Direct2DPanel.cpp │ │ ├── Direct2DPanel.h │ │ ├── DirectXHelper.h │ │ ├── Native_SwapChainPanel_Comp.filters │ │ ├── Native_SwapChainPanel_Comp.vcxproj │ │ ├── pch.cpp │ │ └── pch.h │ ├── Readme.md │ ├── Shared_Components.sln │ └── Shared_Components_Test_UWPApp │ │ ├── App.xaml │ │ ├── App.xaml.cs │ │ ├── Assets │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ └── Wide310x150Logo.scale-200.png │ │ ├── MainPage.xaml │ │ ├── MainPage.xaml.cs │ │ ├── Package.appxmanifest │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ └── Default.rd.xml │ │ └── Shared_Components_Test_UWPApp.csproj ├── WPF_Core3_App │ ├── App.xaml │ ├── App.xaml.cs │ ├── Directory.Build.targets │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── MyApp.manifest │ ├── WPF_Core3_App.csproj │ └── WPF_Core3_App.sln ├── WPF_Packaging_Project │ ├── Directory.Build.targets │ ├── Images │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ └── Wide310x150Logo.scale-200.png │ ├── Package.appxmanifest │ └── WPF_Packaging_Project.wapproj ├── WinForms_Core3_App │ ├── AppManifest.manifest │ ├── Directory.Build.targets │ ├── MainForm.Designer.cs │ ├── MainForm.cs │ ├── MainForm.resx │ ├── NuGet.Config │ ├── Program.cs │ ├── Properties │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── WinForms_Core3_App.csproj │ └── WinForms_Core3_App.sln ├── WinForms_Packaging_Project │ ├── Directory.Build.targets │ ├── Images │ │ ├── LockScreenLogo.scale-200.png │ │ ├── SplashScreen.scale-200.png │ │ ├── Square150x150Logo.scale-200.png │ │ ├── Square44x44Logo.scale-200.png │ │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ │ ├── StoreLogo.png │ │ └── Wide310x150Logo.scale-200.png │ ├── Package.appxmanifest │ └── WinForms_Packaging_Project.wapproj └── WnForms_and_WPF_Readme.md ├── 1903_Workarounds └── InkCanvas_Wrapped_Control_Dark_Theme_Issue │ ├── InkCanvasWPF.sln │ ├── InkCanvasWPF │ ├── App.xaml │ ├── App.xaml.cs │ ├── InkCanvasWPF.csproj │ ├── MainWindow.xaml │ └── MainWindow.xaml.cs │ └── Readme.md ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/.gitignore -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise01/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise01/Readme.md -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/MyClassLibrary/MyClassLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/MyClassLibrary/MyClassLibrary.csproj -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/MyClassLibrary/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/MyClassLibrary/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/MyClassLibrary/Properties/MyClassLibrary.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/MyClassLibrary/Properties/MyClassLibrary.rd.xml -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/MyClassLibrary/WelcomePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/MyClassLibrary/WelcomePage.xaml -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/MyClassLibrary/WelcomePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/MyClassLibrary/WelcomePage.xaml.cs -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/WAP/Images/_dont_delete.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/WAP/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/WAP/Package.appxmanifest -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/WAP/WAP.wapproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/WAP/WAP.wapproj -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/WPF_XAMLIslands_v1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/WPF_XAMLIslands_v1.sln -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/WPF_XAMLIslands_v1/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/WPF_XAMLIslands_v1/App.xaml -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/WPF_XAMLIslands_v1/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/WPF_XAMLIslands_v1/App.xaml.cs -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/WPF_XAMLIslands_v1/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/WPF_XAMLIslands_v1/MainWindow.xaml -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/WPF_XAMLIslands_v1/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/WPF_XAMLIslands_v1/MainWindow.xaml.cs -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/WPF_XAMLIslands_v1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/WPF_XAMLIslands_v1/Program.cs -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/WPF_XAMLIslands_v1/WPF_XAMLIslands_v1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/WPF_XAMLIslands_v1/WPF_XAMLIslands_v1.csproj -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/XamlApplication/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/XamlApplication/App.xaml -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/XamlApplication/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/XamlApplication/App.xaml.cs -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/XamlApplication/CustomXamlApplication.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/XamlApplication/CustomXamlApplication.csproj -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/XamlApplication/Images/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/XamlApplication/Images/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/XamlApplication/Images/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/XamlApplication/Images/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/XamlApplication/Images/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/XamlApplication/Images/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/XamlApplication/Images/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/XamlApplication/Images/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/XamlApplication/Images/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/XamlApplication/Images/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/XamlApplication/Images/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/XamlApplication/Images/StoreLogo.png -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/XamlApplication/Images/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/XamlApplication/Images/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/XamlApplication/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/XamlApplication/MainPage.xaml -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/XamlApplication/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/XamlApplication/MainPage.xaml.cs -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/XamlApplication/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/XamlApplication/Package.appxmanifest -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/XamlApplication/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/XamlApplication/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/XamlApplication/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise01/WPF_XAMLIslands_v1/XamlApplication/Properties/Default.rd.xml -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise02/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise02/Readme.md -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/CustomXamlApplication/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/CustomXamlApplication/App.xaml -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/CustomXamlApplication/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/CustomXamlApplication/App.xaml.cs -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/CustomXamlApplication/CustomXamlApplication.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/CustomXamlApplication/CustomXamlApplication.csproj -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/CustomXamlApplication/Images/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/CustomXamlApplication/Images/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/CustomXamlApplication/Images/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/CustomXamlApplication/Images/SplashScreen.png -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/CustomXamlApplication/Images/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/CustomXamlApplication/Images/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/CustomXamlApplication/Images/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/CustomXamlApplication/Images/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/CustomXamlApplication/Images/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/CustomXamlApplication/Images/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/CustomXamlApplication/Images/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/CustomXamlApplication/Images/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/CustomXamlApplication/Images/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/CustomXamlApplication/Images/StoreLogo.png -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/CustomXamlApplication/Images/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/CustomXamlApplication/Images/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/CustomXamlApplication/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/CustomXamlApplication/MainPage.xaml -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/CustomXamlApplication/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/CustomXamlApplication/MainPage.xaml.cs -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/CustomXamlApplication/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/CustomXamlApplication/Package.appxmanifest -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/CustomXamlApplication/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/CustomXamlApplication/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/CustomXamlApplication/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/CustomXamlApplication/Properties/Default.rd.xml -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/MyClassLibrary/MyClassLibrary.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/MyClassLibrary/MyClassLibrary.csproj -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/MyClassLibrary/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/MyClassLibrary/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/MyClassLibrary/Properties/MyClassLibrary.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/MyClassLibrary/Properties/MyClassLibrary.rd.xml -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/MyClassLibrary/WelcomePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/MyClassLibrary/WelcomePage.xaml -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/MyClassLibrary/WelcomePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/MyClassLibrary/WelcomePage.xaml.cs -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/WAP/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/WAP/Package.appxmanifest -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/WAP/WAP.wapproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/WAP/WAP.wapproj -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/WinForms_XAMLIslands_v1.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/WinForms_XAMLIslands_v1.sln -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/WinForms_XAMLIslands_v1/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/WinForms_XAMLIslands_v1/Form1.Designer.cs -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/WinForms_XAMLIslands_v1/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/WinForms_XAMLIslands_v1/Form1.cs -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/WinForms_XAMLIslands_v1/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/WinForms_XAMLIslands_v1/Form1.resx -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/WinForms_XAMLIslands_v1/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/WinForms_XAMLIslands_v1/Program.cs -------------------------------------------------------------------------------- /1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/WinForms_XAMLIslands_v1/WinForms_XAMLIslands_v1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Hands_On_Labs/Exercise02/WinForms_XAMLIslands_v1/WinForms_XAMLIslands_v1/WinForms_XAMLIslands_v1.csproj -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/CppWinRT_Win32_App.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/CppWinRT_Win32_App.sln -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/MyApp/App.base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/MyApp/App.base.h -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/MyApp/App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/MyApp/App.cpp -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/MyApp/App.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/MyApp/App.h -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/MyApp/App.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/MyApp/App.idl -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/MyApp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/MyApp/App.xaml -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/MyApp/Images/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/MyApp/Images/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/MyApp/Images/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/MyApp/Images/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/MyApp/Images/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/MyApp/Images/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/MyApp/Images/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/MyApp/Images/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/MyApp/Images/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/MyApp/Images/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/MyApp/Images/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/MyApp/Images/StoreLogo.png -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/MyApp/Images/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/MyApp/Images/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/MyApp/MainUserControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/MyApp/MainUserControl.cpp -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/MyApp/MainUserControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/MyApp/MainUserControl.h -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/MyApp/MainUserControl.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/MyApp/MainUserControl.idl -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/MyApp/MainUserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/MyApp/MainUserControl.xaml -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/MyApp/MyApp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/MyApp/MyApp.vcxproj -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/MyApp/MyApp.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/MyApp/MyApp.vcxproj.filters -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/MyApp/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/MyApp/Package.appxmanifest -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/MyApp/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/MyApp/ReadMe.md -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/MyApp/dummy.exe: -------------------------------------------------------------------------------- 1 | dummy exe file 2 | -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/MyApp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/MyApp/packages.config -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/MyApp/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/MyApp/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/MyApp/pch.h -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/ReadMe.md -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/SampleCppApp.Package/Images/dummy.txt: -------------------------------------------------------------------------------- 1 | 2 | dummy -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/SampleCppApp.Package/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/SampleCppApp.Package/Package.appxmanifest -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/SampleCppApp.Package/SampleCppApp.Package.wapproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/SampleCppApp.Package/SampleCppApp.Package.wapproj -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/SampleCppApp/Application.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/SampleCppApp/Application.manifest -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/SampleCppApp/Button1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/SampleCppApp/Button1.xaml -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/SampleCppApp/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/SampleCppApp/ReadMe.md -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/SampleCppApp/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/SampleCppApp/Resource.h -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/SampleCppApp/SampleApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/SampleCppApp/SampleApp.cpp -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/SampleCppApp/SampleApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/SampleCppApp/SampleApp.h -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/SampleCppApp/SampleCppApp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/SampleCppApp/SampleCppApp.ico -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/SampleCppApp/SampleCppApp.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/SampleCppApp/SampleCppApp.rc -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/SampleCppApp/SampleCppApp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/SampleCppApp/SampleCppApp.vcxproj -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/SampleCppApp/SampleCppApp.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/SampleCppApp/SampleCppApp.vcxproj.filters -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/SampleCppApp/XamlBridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/SampleCppApp/XamlBridge.cpp -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/SampleCppApp/XamlBridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/SampleCppApp/XamlBridge.h -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/SampleCppApp/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/SampleCppApp/framework.h -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/SampleCppApp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/SampleCppApp/packages.config -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/SampleCppApp/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/SampleCppApp/pch.cpp -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/SampleCppApp/pch.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "framework.h" 4 | -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/SampleCppApp/resources.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/SampleCppApp/resources.pri -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/SampleCppApp/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/SampleCppApp/small.ico -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/SampleCppApp/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/SampleCppApp/targetver.h -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/SampleLibraryCS/CustomUserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/SampleLibraryCS/CustomUserControl.xaml -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/SampleLibraryCS/CustomUserControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/SampleLibraryCS/CustomUserControl.xaml.cs -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/SampleLibraryCS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/SampleLibraryCS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/SampleLibraryCS/SampleLibraryCS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/SampleLibraryCS/SampleLibraryCS.csproj -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/SampleUserControl/InternalUserControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/SampleUserControl/InternalUserControl.cpp -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/SampleUserControl/InternalUserControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/SampleUserControl/InternalUserControl.h -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/SampleUserControl/InternalUserControl.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/SampleUserControl/InternalUserControl.idl -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/SampleUserControl/InternalUserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/SampleUserControl/InternalUserControl.xaml -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/SampleUserControl/MyUserControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/SampleUserControl/MyUserControl.cpp -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/SampleUserControl/MyUserControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/SampleUserControl/MyUserControl.h -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/SampleUserControl/MyUserControl.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/SampleUserControl/MyUserControl.idl -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/SampleUserControl/MyUserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/SampleUserControl/MyUserControl.xaml -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/SampleUserControl/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/SampleUserControl/ReadMe.md -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/SampleUserControl/SampleUserControl.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/SampleUserControl/SampleUserControl.def -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/SampleUserControl/SampleUserControl.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/SampleUserControl/SampleUserControl.vcxproj -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/SampleUserControl/SampleUserControl.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/SampleUserControl/SampleUserControl.vcxproj.filters -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/SampleUserControl/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/SampleUserControl/packages.config -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/SampleUserControl/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/SampleUserControl/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/SampleUserControl/pch.h -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/Screenshoot.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/Screenshoot.PNG -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_App/Solution.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_App/Solution.props -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SimpleApp/Win32DesktopApp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SimpleApp/Win32DesktopApp.sln -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SimpleApp/Win32DesktopApp/HelloWindowsDesktop.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SimpleApp/Win32DesktopApp/HelloWindowsDesktop.cpp -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SimpleApp/Win32DesktopApp/Win32DesktopApp.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SimpleApp/Win32DesktopApp/Win32DesktopApp.exe.manifest -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SimpleApp/Win32DesktopApp/Win32DesktopApp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SimpleApp/Win32DesktopApp/Win32DesktopApp.vcxproj -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SimpleApp/Win32DesktopApp/Win32DesktopApp.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SimpleApp/Win32DesktopApp/Win32DesktopApp.vcxproj.filters -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SimpleApp/Win32DesktopApp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SimpleApp/Win32DesktopApp/packages.config -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/CppWinRT_Win32_SingleIsland.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/CppWinRT_Win32_SingleIsland.sln -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/MyApp/App.base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/MyApp/App.base.h -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/MyApp/App.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/MyApp/App.cpp -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/MyApp/App.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/MyApp/App.h -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/MyApp/App.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/MyApp/App.idl -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/MyApp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/MyApp/App.xaml -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/MyApp/Images/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/MyApp/Images/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/MyApp/Images/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/MyApp/Images/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/MyApp/Images/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/MyApp/Images/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/MyApp/Images/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/MyApp/Images/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/MyApp/Images/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/MyApp/Images/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/MyApp/Images/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/MyApp/Images/StoreLogo.png -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/MyApp/Images/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/MyApp/Images/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/MyApp/MainUserControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/MyApp/MainUserControl.cpp -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/MyApp/MainUserControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/MyApp/MainUserControl.h -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/MyApp/MainUserControl.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/MyApp/MainUserControl.idl -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/MyApp/MainUserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/MyApp/MainUserControl.xaml -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/MyApp/MyApp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/MyApp/MyApp.vcxproj -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/MyApp/MyApp.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/MyApp/MyApp.vcxproj.filters -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/MyApp/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/MyApp/Package.appxmanifest -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/MyApp/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/MyApp/ReadMe.md -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/MyApp/dummy.exe: -------------------------------------------------------------------------------- 1 | dummy exe file 2 | -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/MyApp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/MyApp/packages.config -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/MyApp/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/MyApp/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/MyApp/pch.h -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/ReadMe.md -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/SampleCppApp.Package/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/SampleCppApp.Package/Package.appxmanifest -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/SampleCppApp.Package/SampleCppApp.Package.wapproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/SampleCppApp.Package/SampleCppApp.Package.wapproj -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/SampleCppApp/Application.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/SampleCppApp/Application.manifest -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/SampleCppApp/Button1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/SampleCppApp/Button1.xaml -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/SampleCppApp/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/SampleCppApp/ReadMe.md -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/SampleCppApp/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/SampleCppApp/Resource.h -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/SampleCppApp/SampleApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/SampleCppApp/SampleApp.cpp -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/SampleCppApp/SampleApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/SampleCppApp/SampleApp.h -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/SampleCppApp/SampleCppApp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/SampleCppApp/SampleCppApp.ico -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/SampleCppApp/SampleCppApp.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/SampleCppApp/SampleCppApp.rc -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/SampleCppApp/SampleCppApp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/SampleCppApp/SampleCppApp.vcxproj -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/SampleCppApp/SampleCppApp.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/SampleCppApp/SampleCppApp.vcxproj.filters -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/SampleCppApp/XamlBridge.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/SampleCppApp/XamlBridge.cpp -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/SampleCppApp/XamlBridge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/SampleCppApp/XamlBridge.h -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/SampleCppApp/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/SampleCppApp/framework.h -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/SampleCppApp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/SampleCppApp/packages.config -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/SampleCppApp/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/SampleCppApp/pch.cpp -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/SampleCppApp/pch.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "framework.h" 4 | -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/SampleCppApp/resources.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/SampleCppApp/resources.pri -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/SampleCppApp/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/SampleCppApp/small.ico -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/SampleCppApp/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/SampleCppApp/targetver.h -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/SampleUserControl/InternalUserControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/SampleUserControl/InternalUserControl.cpp -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/SampleUserControl/InternalUserControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/SampleUserControl/InternalUserControl.h -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/SampleUserControl/InternalUserControl.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/SampleUserControl/InternalUserControl.idl -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/SampleUserControl/InternalUserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/SampleUserControl/InternalUserControl.xaml -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/SampleUserControl/MyUserControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/SampleUserControl/MyUserControl.cpp -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/SampleUserControl/MyUserControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/SampleUserControl/MyUserControl.h -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/SampleUserControl/MyUserControl.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/SampleUserControl/MyUserControl.idl -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/SampleUserControl/MyUserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/SampleUserControl/MyUserControl.xaml -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/SampleUserControl/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/SampleUserControl/ReadMe.md -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/SampleUserControl/SampleUserControl.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/SampleUserControl/SampleUserControl.def -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/SampleUserControl/SampleUserControl.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/SampleUserControl/SampleUserControl.vcxproj -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/SampleUserControl/SampleUserControl.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/SampleUserControl/SampleUserControl.vcxproj.filters -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/SampleUserControl/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/SampleUserControl/packages.config -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/SampleUserControl/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/SampleUserControl/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/SampleUserControl/pch.h -------------------------------------------------------------------------------- /1903_Samples/CppWinRT_Win32_SingleIsland/Solution.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/CppWinRT_Win32_SingleIsland/Solution.props -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/Assets/SampleMedia/LandscapeImage1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/Assets/SampleMedia/LandscapeImage1.jpg -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/Assets/SampleMedia/LandscapeImage2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/Assets/SampleMedia/LandscapeImage2.jpg -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/Assets/SampleMedia/LandscapeImage3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/Assets/SampleMedia/LandscapeImage3.jpg -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/Assets/SampleMedia/LandscapeImage4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/Assets/SampleMedia/LandscapeImage4.jpg -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/Assets/SampleMedia/LandscapeImage5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/Assets/SampleMedia/LandscapeImage5.jpg -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/Assets/SampleMedia/LandscapeImage6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/Assets/SampleMedia/LandscapeImage6.jpg -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/Assets/SampleMedia/LandscapeImage7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/Assets/SampleMedia/LandscapeImage7.jpg -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/Assets/SampleMedia/LandscapeImage8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/Assets/SampleMedia/LandscapeImage8.jpg -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/Assets/SampleMedia/cliff.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/Assets/SampleMedia/cliff.jpg -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/Assets/SampleMedia/fishes.wmv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/Assets/SampleMedia/fishes.wmv -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/Assets/SampleMedia/grapes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/Assets/SampleMedia/grapes.jpg -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/Assets/SampleMedia/ladybug.wmv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/Assets/SampleMedia/ladybug.wmv -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/Assets/SampleMedia/notepad.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/Assets/SampleMedia/notepad.jpg -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/Assets/SampleMedia/rainier.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/Assets/SampleMedia/rainier.jpg -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/Assets/SampleMedia/sunset.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/Assets/SampleMedia/sunset.jpg -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/Assets/SampleMedia/treetops.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/Assets/SampleMedia/treetops.jpg -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/Assets/SampleMedia/valley.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/Assets/SampleMedia/valley.jpg -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/Controls_Pages/AnimationsCardPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/Controls_Pages/AnimationsCardPage.xaml -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/Controls_Pages/AnimationsCardPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/Controls_Pages/AnimationsCardPage.xaml.cs -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/Controls_Pages/AnimationsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/Controls_Pages/AnimationsPage.xaml -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/Controls_Pages/AnimationsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/Controls_Pages/AnimationsPage.xaml.cs -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/Controls_Pages/BasicInputPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/Controls_Pages/BasicInputPage.xaml -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/Controls_Pages/BasicInputPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/Controls_Pages/BasicInputPage.xaml.cs -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/Controls_Pages/CollectionsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/Controls_Pages/CollectionsPage.xaml -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/Controls_Pages/CollectionsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/Controls_Pages/CollectionsPage.xaml.cs -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/Controls_Pages/DateAndTimePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/Controls_Pages/DateAndTimePage.xaml -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/Controls_Pages/DateAndTimePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/Controls_Pages/DateAndTimePage.xaml.cs -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/Controls_Pages/DialogsAndFlyoutsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/Controls_Pages/DialogsAndFlyoutsPage.xaml -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/Controls_Pages/DialogsAndFlyoutsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/Controls_Pages/DialogsAndFlyoutsPage.xaml.cs -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/Controls_Pages/LayoutPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/Controls_Pages/LayoutPage.xaml -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/Controls_Pages/LayoutPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/Controls_Pages/LayoutPage.xaml.cs -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/Controls_Pages/MediaPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/Controls_Pages/MediaPage.xaml -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/Controls_Pages/MediaPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/Controls_Pages/MediaPage.xaml.cs -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/Controls_Pages/MenuToolbarPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/Controls_Pages/MenuToolbarPage.xaml -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/Controls_Pages/MenuToolbarPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/Controls_Pages/MenuToolbarPage.xaml.cs -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/Controls_Pages/RevealPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/Controls_Pages/RevealPage.xaml -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/Controls_Pages/RevealPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/Controls_Pages/RevealPage.xaml.cs -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/Controls_Pages/TextPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/Controls_Pages/TextPage.xaml -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/Controls_Pages/TextPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/Controls_Pages/TextPage.xaml.cs -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/Controls_Pages/WinUIPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/Controls_Pages/WinUIPage.xaml -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/Controls_Pages/WinUIPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/Controls_Pages/WinUIPage.xaml.cs -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/Directory.Build.props -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/Helpers/WordGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/Helpers/WordGenerator.cs -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/MainPage.xaml -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/MainPage.xaml.cs -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/Managed_WinRT_Comp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/Managed_WinRT_Comp.csproj -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/Properties/MyUWPLib.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/Properties/MyUWPLib.rd.xml -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/SettingsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/SettingsPage.xaml -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/SettingsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/SettingsPage.xaml.cs -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/Strings/en-US/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/Strings/en-US/Resources.resw -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/Strings/es-ES/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/Strings/es-ES/Resources.resw -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/WelcomePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/WelcomePage.xaml -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/WelcomePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/WelcomePage.xaml.cs -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/XamlApp.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/XamlApp.xaml -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Managed_WinRT_Comp/XamlApp.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Managed_WinRT_Comp/XamlApp.xaml.cs -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Native_SwapChainPanel_Comp/CustomRenderer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Native_SwapChainPanel_Comp/CustomRenderer.cpp -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Native_SwapChainPanel_Comp/CustomRenderer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Native_SwapChainPanel_Comp/CustomRenderer.h -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Native_SwapChainPanel_Comp/Direct2DPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Native_SwapChainPanel_Comp/Direct2DPanel.cpp -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Native_SwapChainPanel_Comp/Direct2DPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Native_SwapChainPanel_Comp/Direct2DPanel.h -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Native_SwapChainPanel_Comp/DirectXHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Native_SwapChainPanel_Comp/DirectXHelper.h -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Native_SwapChainPanel_Comp/Native_SwapChainPanel_Comp.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Native_SwapChainPanel_Comp/Native_SwapChainPanel_Comp.filters -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Native_SwapChainPanel_Comp/Native_SwapChainPanel_Comp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Native_SwapChainPanel_Comp/Native_SwapChainPanel_Comp.vcxproj -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Native_SwapChainPanel_Comp/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Native_SwapChainPanel_Comp/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Native_SwapChainPanel_Comp/pch.h -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Readme.md -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Shared_Components.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Shared_Components.sln -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Shared_Components_Test_UWPApp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Shared_Components_Test_UWPApp/App.xaml -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Shared_Components_Test_UWPApp/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Shared_Components_Test_UWPApp/App.xaml.cs -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Shared_Components_Test_UWPApp/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Shared_Components_Test_UWPApp/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Shared_Components_Test_UWPApp/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Shared_Components_Test_UWPApp/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Shared_Components_Test_UWPApp/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Shared_Components_Test_UWPApp/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Shared_Components_Test_UWPApp/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Shared_Components_Test_UWPApp/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Shared_Components_Test_UWPApp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Shared_Components_Test_UWPApp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Shared_Components_Test_UWPApp/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Shared_Components_Test_UWPApp/Assets/StoreLogo.png -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Shared_Components_Test_UWPApp/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Shared_Components_Test_UWPApp/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Shared_Components_Test_UWPApp/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Shared_Components_Test_UWPApp/MainPage.xaml -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Shared_Components_Test_UWPApp/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Shared_Components_Test_UWPApp/MainPage.xaml.cs -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Shared_Components_Test_UWPApp/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Shared_Components_Test_UWPApp/Package.appxmanifest -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Shared_Components_Test_UWPApp/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Shared_Components_Test_UWPApp/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Shared_Components_Test_UWPApp/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Shared_Components_Test_UWPApp/Properties/Default.rd.xml -------------------------------------------------------------------------------- /1903_Samples/Shared_Components/Shared_Components_Test_UWPApp/Shared_Components_Test_UWPApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/Shared_Components/Shared_Components_Test_UWPApp/Shared_Components_Test_UWPApp.csproj -------------------------------------------------------------------------------- /1903_Samples/WPF_Core3_App/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/WPF_Core3_App/App.xaml -------------------------------------------------------------------------------- /1903_Samples/WPF_Core3_App/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/WPF_Core3_App/App.xaml.cs -------------------------------------------------------------------------------- /1903_Samples/WPF_Core3_App/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/WPF_Core3_App/Directory.Build.targets -------------------------------------------------------------------------------- /1903_Samples/WPF_Core3_App/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/WPF_Core3_App/MainWindow.xaml -------------------------------------------------------------------------------- /1903_Samples/WPF_Core3_App/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/WPF_Core3_App/MainWindow.xaml.cs -------------------------------------------------------------------------------- /1903_Samples/WPF_Core3_App/MyApp.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/WPF_Core3_App/MyApp.manifest -------------------------------------------------------------------------------- /1903_Samples/WPF_Core3_App/WPF_Core3_App.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/WPF_Core3_App/WPF_Core3_App.csproj -------------------------------------------------------------------------------- /1903_Samples/WPF_Core3_App/WPF_Core3_App.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/WPF_Core3_App/WPF_Core3_App.sln -------------------------------------------------------------------------------- /1903_Samples/WPF_Packaging_Project/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/WPF_Packaging_Project/Directory.Build.targets -------------------------------------------------------------------------------- /1903_Samples/WPF_Packaging_Project/Images/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/WPF_Packaging_Project/Images/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /1903_Samples/WPF_Packaging_Project/Images/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/WPF_Packaging_Project/Images/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /1903_Samples/WPF_Packaging_Project/Images/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/WPF_Packaging_Project/Images/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /1903_Samples/WPF_Packaging_Project/Images/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/WPF_Packaging_Project/Images/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /1903_Samples/WPF_Packaging_Project/Images/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/WPF_Packaging_Project/Images/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /1903_Samples/WPF_Packaging_Project/Images/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/WPF_Packaging_Project/Images/StoreLogo.png -------------------------------------------------------------------------------- /1903_Samples/WPF_Packaging_Project/Images/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/WPF_Packaging_Project/Images/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /1903_Samples/WPF_Packaging_Project/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/WPF_Packaging_Project/Package.appxmanifest -------------------------------------------------------------------------------- /1903_Samples/WPF_Packaging_Project/WPF_Packaging_Project.wapproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/WPF_Packaging_Project/WPF_Packaging_Project.wapproj -------------------------------------------------------------------------------- /1903_Samples/WinForms_Core3_App/AppManifest.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/WinForms_Core3_App/AppManifest.manifest -------------------------------------------------------------------------------- /1903_Samples/WinForms_Core3_App/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/WinForms_Core3_App/Directory.Build.targets -------------------------------------------------------------------------------- /1903_Samples/WinForms_Core3_App/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/WinForms_Core3_App/MainForm.Designer.cs -------------------------------------------------------------------------------- /1903_Samples/WinForms_Core3_App/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/WinForms_Core3_App/MainForm.cs -------------------------------------------------------------------------------- /1903_Samples/WinForms_Core3_App/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/WinForms_Core3_App/MainForm.resx -------------------------------------------------------------------------------- /1903_Samples/WinForms_Core3_App/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/WinForms_Core3_App/NuGet.Config -------------------------------------------------------------------------------- /1903_Samples/WinForms_Core3_App/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/WinForms_Core3_App/Program.cs -------------------------------------------------------------------------------- /1903_Samples/WinForms_Core3_App/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/WinForms_Core3_App/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /1903_Samples/WinForms_Core3_App/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/WinForms_Core3_App/Properties/Resources.resx -------------------------------------------------------------------------------- /1903_Samples/WinForms_Core3_App/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/WinForms_Core3_App/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /1903_Samples/WinForms_Core3_App/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/WinForms_Core3_App/Properties/Settings.settings -------------------------------------------------------------------------------- /1903_Samples/WinForms_Core3_App/WinForms_Core3_App.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/WinForms_Core3_App/WinForms_Core3_App.csproj -------------------------------------------------------------------------------- /1903_Samples/WinForms_Core3_App/WinForms_Core3_App.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/WinForms_Core3_App/WinForms_Core3_App.sln -------------------------------------------------------------------------------- /1903_Samples/WinForms_Packaging_Project/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/WinForms_Packaging_Project/Directory.Build.targets -------------------------------------------------------------------------------- /1903_Samples/WinForms_Packaging_Project/Images/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/WinForms_Packaging_Project/Images/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /1903_Samples/WinForms_Packaging_Project/Images/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/WinForms_Packaging_Project/Images/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /1903_Samples/WinForms_Packaging_Project/Images/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/WinForms_Packaging_Project/Images/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /1903_Samples/WinForms_Packaging_Project/Images/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/WinForms_Packaging_Project/Images/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /1903_Samples/WinForms_Packaging_Project/Images/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/WinForms_Packaging_Project/Images/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /1903_Samples/WinForms_Packaging_Project/Images/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/WinForms_Packaging_Project/Images/StoreLogo.png -------------------------------------------------------------------------------- /1903_Samples/WinForms_Packaging_Project/Images/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/WinForms_Packaging_Project/Images/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /1903_Samples/WinForms_Packaging_Project/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/WinForms_Packaging_Project/Package.appxmanifest -------------------------------------------------------------------------------- /1903_Samples/WinForms_Packaging_Project/WinForms_Packaging_Project.wapproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/WinForms_Packaging_Project/WinForms_Packaging_Project.wapproj -------------------------------------------------------------------------------- /1903_Samples/WnForms_and_WPF_Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Samples/WnForms_and_WPF_Readme.md -------------------------------------------------------------------------------- /1903_Workarounds/InkCanvas_Wrapped_Control_Dark_Theme_Issue/InkCanvasWPF.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Workarounds/InkCanvas_Wrapped_Control_Dark_Theme_Issue/InkCanvasWPF.sln -------------------------------------------------------------------------------- /1903_Workarounds/InkCanvas_Wrapped_Control_Dark_Theme_Issue/InkCanvasWPF/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Workarounds/InkCanvas_Wrapped_Control_Dark_Theme_Issue/InkCanvasWPF/App.xaml -------------------------------------------------------------------------------- /1903_Workarounds/InkCanvas_Wrapped_Control_Dark_Theme_Issue/InkCanvasWPF/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Workarounds/InkCanvas_Wrapped_Control_Dark_Theme_Issue/InkCanvasWPF/App.xaml.cs -------------------------------------------------------------------------------- /1903_Workarounds/InkCanvas_Wrapped_Control_Dark_Theme_Issue/InkCanvasWPF/InkCanvasWPF.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Workarounds/InkCanvas_Wrapped_Control_Dark_Theme_Issue/InkCanvasWPF/InkCanvasWPF.csproj -------------------------------------------------------------------------------- /1903_Workarounds/InkCanvas_Wrapped_Control_Dark_Theme_Issue/InkCanvasWPF/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Workarounds/InkCanvas_Wrapped_Control_Dark_Theme_Issue/InkCanvasWPF/MainWindow.xaml -------------------------------------------------------------------------------- /1903_Workarounds/InkCanvas_Wrapped_Control_Dark_Theme_Issue/InkCanvasWPF/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Workarounds/InkCanvas_Wrapped_Control_Dark_Theme_Issue/InkCanvasWPF/MainWindow.xaml.cs -------------------------------------------------------------------------------- /1903_Workarounds/InkCanvas_Wrapped_Control_Dark_Theme_Issue/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/1903_Workarounds/InkCanvas_Wrapped_Control_Dark_Theme_Issue/Readme.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marb2000/XamlIslands/HEAD/README.md --------------------------------------------------------------------------------