├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── LICENSE ├── README.md ├── WinUI3XamlPreview ├── .config │ └── dotnet-tools.json ├── LocalPackages │ └── README.md ├── Nuget.Config ├── Nuget │ ├── .gitignore │ ├── WinUI3XamlPreview-Native.props │ ├── WinUI3XamlPreview-Native.targets │ ├── WinUI3XamlPreview.nuspec.template │ ├── WinUI3XamlPreview.props │ ├── WinUI3XamlPreview.targets │ └── WinUI3XamlPreviewRules.Project.xml ├── TestAppToBePackaged │ ├── TestAppToBePackaged (Package) │ │ ├── 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 │ │ ├── TestAppToBePackaged (Package).assets.cache │ │ ├── TestAppToBePackagedPackage.assets.cache │ │ └── TestAppToBePackagedPackage.wapproj │ └── TestAppToBePackaged │ │ ├── App.xaml │ │ ├── App.xaml.cpp │ │ ├── App.xaml.h │ │ ├── MainWindow.idl │ │ ├── MainWindow.xaml │ │ ├── MainWindow.xaml.cpp │ │ ├── MainWindow.xaml.h │ │ ├── TestAppToBePackaged.vcxproj │ │ ├── TestAppToBePackaged.vcxproj.filters │ │ ├── app.manifest │ │ ├── packages.config │ │ ├── pch.cpp │ │ ├── pch.h │ │ └── readme.txt ├── TestDep │ ├── BlankPage.cpp │ ├── BlankPage.h │ ├── BlankPage.idl │ ├── BlankPage.xaml │ ├── DepCustomControl.cpp │ ├── DepCustomControl.h │ ├── DepCustomControl.idl │ ├── DepUserControl.idl │ ├── DepUserControl.xaml │ ├── DepUserControl.xaml.cpp │ ├── DepUserControl.xaml.h │ ├── TestDep.def │ ├── TestDep.vcxproj │ ├── TestDep.vcxproj.filters │ ├── TestDep_TemporaryKey.pfx │ ├── Themes │ │ └── Generic.xaml │ ├── packages.config │ ├── pch.cpp │ ├── pch.h │ └── readme.txt ├── TestDepCs │ ├── BlankPage1.xaml │ ├── BlankPage1.xaml.cs │ ├── DepCsCustomControl.cs │ ├── DepCsUserControl.xaml │ ├── DepCsUserControl.xaml.cs │ ├── TestDepCs.csproj │ └── Themes │ │ └── Generic.xaml ├── TestDepOfDep │ ├── DepCustomControl.cpp │ ├── DepCustomControl.h │ ├── DepCustomControl.idl │ ├── DepOfDepPage.idl │ ├── DepOfDepPage.xaml │ ├── DepOfDepPage.xaml.cpp │ ├── DepOfDepPage.xaml.h │ ├── TestDepOfDep.def │ ├── TestDepOfDep.vcxproj │ ├── TestDepOfDep.vcxproj.filters │ ├── TestDepOfDep_TemporaryKey.pfx │ ├── Themes │ │ └── Generic.xaml │ ├── packages.config │ ├── pch.cpp │ ├── pch.h │ └── readme.txt ├── TestDepSampleApp │ ├── App.xaml │ ├── App.xaml.cpp │ ├── App.xaml.h │ ├── 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 │ ├── MainWindow.idl │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cpp │ ├── MainWindow.xaml.h │ ├── Package.appxmanifest │ ├── TestDepSampleApp.vcxproj │ ├── TestDepSampleApp.vcxproj.filters │ ├── app.manifest │ ├── packages.config │ ├── pch.cpp │ ├── pch.h │ └── readme.txt ├── TestNonPackaged │ ├── App.xaml │ ├── App.xaml.cpp │ ├── App.xaml.h │ ├── 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 │ ├── BlankPage.idl │ ├── BlankPage.xaml │ ├── BlankPage.xaml.cpp │ ├── BlankPage.xaml.h │ ├── MainWindow.idl │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cpp │ ├── MainWindow.xaml.h │ ├── TestNonPackaged.vcxproj │ ├── TestNonPackaged.vcxproj.filters │ ├── app.manifest │ ├── packages.config │ ├── pch.cpp │ ├── pch.h │ └── readme.txt ├── TestNonPackagedCs │ ├── 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 │ ├── BlankPage1.xaml │ ├── BlankPage1.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── Properties │ │ ├── PublishProfiles │ │ │ ├── win10-arm64.pubxml │ │ │ ├── win10-x64.pubxml │ │ │ └── win10-x86.pubxml │ │ └── launchSettings.json │ ├── TestNonPackagedCs.csproj │ └── app.manifest ├── TestNonWinRTDep │ ├── SomeFunction.cpp │ ├── SomeLibrary.h │ ├── TestNonWinRTDep.vcxproj │ ├── TestNonWinRTDep.vcxproj.filters │ ├── dllmain.cpp │ ├── framework.h │ ├── pch.cpp │ └── pch.h ├── TestNuget │ ├── App.xaml │ ├── App.xaml.cpp │ ├── App.xaml.h │ ├── 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 │ ├── BlankPage.idl │ ├── BlankPage.xaml │ ├── BlankPage.xaml.cpp │ ├── BlankPage.xaml.h │ ├── MainWindow.idl │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cpp │ ├── MainWindow.xaml.h │ ├── MyCustomControl.cpp │ ├── MyCustomControl.h │ ├── MyCustomControl.idl │ ├── MyUserControl.idl │ ├── MyUserControl.xaml │ ├── MyUserControl.xaml.cpp │ ├── MyUserControl.xaml.h │ ├── Package.appxmanifest │ ├── TestNuget.vcxproj │ ├── TestNuget.vcxproj.filters │ ├── Themes │ │ └── Generic.xaml │ ├── app.manifest │ ├── packages.config │ ├── pch.cpp │ ├── pch.h │ └── readme.txt ├── TestPackaged │ ├── App.xaml │ ├── App.xaml.cpp │ ├── App.xaml.h │ ├── 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 │ ├── BlankPage.idl │ ├── BlankPage.xaml │ ├── BlankPage.xaml.cpp │ ├── BlankPage.xaml.h │ ├── MainWindow.idl │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cpp │ ├── MainWindow.xaml.h │ ├── Package.appxmanifest │ ├── TestPackaged.vcxproj │ ├── TestPackaged.vcxproj.filters │ ├── app.manifest │ ├── packages.config │ ├── pch.cpp │ ├── pch.h │ └── readme.txt ├── TestPackagedCs │ ├── 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 │ ├── BlankPage1.xaml │ ├── BlankPage1.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── MyCustomControl.cs │ ├── MyUserControl.xaml │ ├── MyUserControl.xaml.cs │ ├── Package.appxmanifest │ ├── Properties │ │ ├── PublishProfiles │ │ │ ├── win10-arm64.pubxml │ │ │ ├── win10-x64.pubxml │ │ │ └── win10-x86.pubxml │ │ └── launchSettings.json │ ├── TestPackagedCs.csproj │ ├── Themes │ │ └── Generic.xaml │ └── app.manifest ├── WinUI3XamlPreview.DllLoader │ ├── App.xaml │ ├── App.xaml.cpp │ ├── App.xaml.h │ ├── 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 │ ├── Package.appxmanifest │ ├── WinUI3XamlPreview.DllLoader.vcxproj │ ├── WinUI3XamlPreview.DllLoader.vcxproj.filters │ ├── app.manifest │ ├── packages.config │ ├── pch.cpp │ ├── pch.h │ └── readme.txt ├── WinUI3XamlPreview.sln ├── WinUI3XamlPreview │ ├── 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.idl │ ├── MainPage.xaml │ ├── MainPage.xaml.cpp │ ├── MainPage.xaml.h │ ├── MainWindow.idl │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cpp │ ├── MainWindow.xaml.h │ ├── Preview.cpp │ ├── Preview.h │ ├── Preview.idl │ ├── Strings │ │ ├── en-US │ │ │ └── Resources.resw │ │ └── zh-HK │ │ │ └── Resources.resw │ ├── Toast.idl │ ├── Toast.xaml │ ├── Toast.xaml.cpp │ ├── Toast.xaml.h │ ├── WinUI3XamlPreview.def │ ├── WinUI3XamlPreview.vcxproj │ ├── WinUI3XamlPreview.vcxproj.filters │ ├── XamlProcessor.cpp │ ├── XamlProcessor.h │ ├── packages.config │ ├── pch.cpp │ ├── pch.h │ └── readme.txt ├── WinUI3XamlPreviewCs │ ├── Directory.Build.Props │ └── WinUI3XamlPreviewCs.csproj └── scripts │ ├── build-nuget.ps1 │ ├── ci.ps1 │ ├── format.ps1 │ ├── get-msbuild.ps1 │ ├── publish-nuget.ps1 │ ├── setup.ps1 │ └── test.ps1 ├── extensions └── WinUI3XamlPreviewVS2022 │ ├── .editorconfig │ ├── README.md │ ├── WinUI3XamlPreviewVS2022.sln │ ├── WinUI3XamlPreviewVS2022 │ ├── .vsextension │ │ └── string-resources.json │ ├── ExtensionEntrypoint.cs │ ├── OpenLivePreview.cs │ ├── Strings.Designer.cs │ ├── Strings.resx │ ├── WinUI3XamlPreviewVS2022.csproj │ └── source.extension.vsixmanifest │ ├── scripts │ └── build-extension.ps1 │ └── vs-publish.json ├── hero-banner.gif └── vs-property-page.png /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/README.md -------------------------------------------------------------------------------- /WinUI3XamlPreview/.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/.config/dotnet-tools.json -------------------------------------------------------------------------------- /WinUI3XamlPreview/LocalPackages/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WinUI3XamlPreview/Nuget.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/Nuget.Config -------------------------------------------------------------------------------- /WinUI3XamlPreview/Nuget/.gitignore: -------------------------------------------------------------------------------- 1 | .nuspec 2 | *.zip 3 | -------------------------------------------------------------------------------- /WinUI3XamlPreview/Nuget/WinUI3XamlPreview-Native.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/Nuget/WinUI3XamlPreview-Native.props -------------------------------------------------------------------------------- /WinUI3XamlPreview/Nuget/WinUI3XamlPreview-Native.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/Nuget/WinUI3XamlPreview-Native.targets -------------------------------------------------------------------------------- /WinUI3XamlPreview/Nuget/WinUI3XamlPreview.nuspec.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/Nuget/WinUI3XamlPreview.nuspec.template -------------------------------------------------------------------------------- /WinUI3XamlPreview/Nuget/WinUI3XamlPreview.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/Nuget/WinUI3XamlPreview.props -------------------------------------------------------------------------------- /WinUI3XamlPreview/Nuget/WinUI3XamlPreview.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/Nuget/WinUI3XamlPreview.targets -------------------------------------------------------------------------------- /WinUI3XamlPreview/Nuget/WinUI3XamlPreviewRules.Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/Nuget/WinUI3XamlPreviewRules.Project.xml -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged (Package)/Images/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged (Package)/Images/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged (Package)/Images/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged (Package)/Images/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged (Package)/Images/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged (Package)/Images/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged (Package)/Images/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged (Package)/Images/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged (Package)/Images/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged (Package)/Images/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged (Package)/Images/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged (Package)/Images/StoreLogo.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged (Package)/Images/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged (Package)/Images/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged (Package)/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged (Package)/Package.appxmanifest -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged (Package)/TestAppToBePackaged (Package).assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged (Package)/TestAppToBePackaged (Package).assets.cache -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged (Package)/TestAppToBePackagedPackage.assets.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged (Package)/TestAppToBePackagedPackage.assets.cache -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged (Package)/TestAppToBePackagedPackage.wapproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged (Package)/TestAppToBePackagedPackage.wapproj -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged/App.xaml -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged/App.xaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged/App.xaml.cpp -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged/App.xaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged/App.xaml.h -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged/MainWindow.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged/MainWindow.idl -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged/MainWindow.xaml -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged/MainWindow.xaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged/MainWindow.xaml.cpp -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged/MainWindow.xaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged/MainWindow.xaml.h -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged/TestAppToBePackaged.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged/TestAppToBePackaged.vcxproj -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged/TestAppToBePackaged.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged/TestAppToBePackaged.vcxproj.filters -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged/app.manifest -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged/packages.config -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged/pch.h -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestAppToBePackaged/TestAppToBePackaged/readme.txt -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDep/BlankPage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDep/BlankPage.cpp -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDep/BlankPage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDep/BlankPage.h -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDep/BlankPage.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDep/BlankPage.idl -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDep/BlankPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDep/BlankPage.xaml -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDep/DepCustomControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDep/DepCustomControl.cpp -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDep/DepCustomControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDep/DepCustomControl.h -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDep/DepCustomControl.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDep/DepCustomControl.idl -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDep/DepUserControl.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDep/DepUserControl.idl -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDep/DepUserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDep/DepUserControl.xaml -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDep/DepUserControl.xaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDep/DepUserControl.xaml.cpp -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDep/DepUserControl.xaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDep/DepUserControl.xaml.h -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDep/TestDep.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDep/TestDep.def -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDep/TestDep.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDep/TestDep.vcxproj -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDep/TestDep.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDep/TestDep.vcxproj.filters -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDep/TestDep_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDep/TestDep_TemporaryKey.pfx -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDep/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDep/Themes/Generic.xaml -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDep/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDep/packages.config -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDep/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDep/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDep/pch.h -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDep/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDep/readme.txt -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDepCs/BlankPage1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDepCs/BlankPage1.xaml -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDepCs/BlankPage1.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDepCs/BlankPage1.xaml.cs -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDepCs/DepCsCustomControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDepCs/DepCsCustomControl.cs -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDepCs/DepCsUserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDepCs/DepCsUserControl.xaml -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDepCs/DepCsUserControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDepCs/DepCsUserControl.xaml.cs -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDepCs/TestDepCs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDepCs/TestDepCs.csproj -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDepCs/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDepCs/Themes/Generic.xaml -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDepOfDep/DepCustomControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDepOfDep/DepCustomControl.cpp -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDepOfDep/DepCustomControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDepOfDep/DepCustomControl.h -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDepOfDep/DepCustomControl.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDepOfDep/DepCustomControl.idl -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDepOfDep/DepOfDepPage.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDepOfDep/DepOfDepPage.idl -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDepOfDep/DepOfDepPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDepOfDep/DepOfDepPage.xaml -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDepOfDep/DepOfDepPage.xaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDepOfDep/DepOfDepPage.xaml.cpp -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDepOfDep/DepOfDepPage.xaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDepOfDep/DepOfDepPage.xaml.h -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDepOfDep/TestDepOfDep.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDepOfDep/TestDepOfDep.def -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDepOfDep/TestDepOfDep.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDepOfDep/TestDepOfDep.vcxproj -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDepOfDep/TestDepOfDep.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDepOfDep/TestDepOfDep.vcxproj.filters -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDepOfDep/TestDepOfDep_TemporaryKey.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDepOfDep/TestDepOfDep_TemporaryKey.pfx -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDepOfDep/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDepOfDep/Themes/Generic.xaml -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDepOfDep/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDepOfDep/packages.config -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDepOfDep/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDepOfDep/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDepOfDep/pch.h -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDepOfDep/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDepOfDep/readme.txt -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDepSampleApp/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDepSampleApp/App.xaml -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDepSampleApp/App.xaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDepSampleApp/App.xaml.cpp -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDepSampleApp/App.xaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDepSampleApp/App.xaml.h -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDepSampleApp/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDepSampleApp/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDepSampleApp/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDepSampleApp/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDepSampleApp/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDepSampleApp/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDepSampleApp/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDepSampleApp/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDepSampleApp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDepSampleApp/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDepSampleApp/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDepSampleApp/Assets/StoreLogo.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDepSampleApp/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDepSampleApp/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDepSampleApp/MainWindow.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDepSampleApp/MainWindow.idl -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDepSampleApp/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDepSampleApp/MainWindow.xaml -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDepSampleApp/MainWindow.xaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDepSampleApp/MainWindow.xaml.cpp -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDepSampleApp/MainWindow.xaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDepSampleApp/MainWindow.xaml.h -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDepSampleApp/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDepSampleApp/Package.appxmanifest -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDepSampleApp/TestDepSampleApp.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDepSampleApp/TestDepSampleApp.vcxproj -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDepSampleApp/TestDepSampleApp.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDepSampleApp/TestDepSampleApp.vcxproj.filters -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDepSampleApp/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDepSampleApp/app.manifest -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDepSampleApp/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDepSampleApp/packages.config -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDepSampleApp/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDepSampleApp/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDepSampleApp/pch.h -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestDepSampleApp/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestDepSampleApp/readme.txt -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonPackaged/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonPackaged/App.xaml -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonPackaged/App.xaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonPackaged/App.xaml.cpp -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonPackaged/App.xaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonPackaged/App.xaml.h -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonPackaged/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonPackaged/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonPackaged/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonPackaged/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonPackaged/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonPackaged/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonPackaged/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonPackaged/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonPackaged/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonPackaged/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonPackaged/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonPackaged/Assets/StoreLogo.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonPackaged/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonPackaged/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonPackaged/BlankPage.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonPackaged/BlankPage.idl -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonPackaged/BlankPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonPackaged/BlankPage.xaml -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonPackaged/BlankPage.xaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonPackaged/BlankPage.xaml.cpp -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonPackaged/BlankPage.xaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonPackaged/BlankPage.xaml.h -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonPackaged/MainWindow.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonPackaged/MainWindow.idl -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonPackaged/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonPackaged/MainWindow.xaml -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonPackaged/MainWindow.xaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonPackaged/MainWindow.xaml.cpp -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonPackaged/MainWindow.xaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonPackaged/MainWindow.xaml.h -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonPackaged/TestNonPackaged.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonPackaged/TestNonPackaged.vcxproj -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonPackaged/TestNonPackaged.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonPackaged/TestNonPackaged.vcxproj.filters -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonPackaged/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonPackaged/app.manifest -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonPackaged/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonPackaged/packages.config -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonPackaged/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonPackaged/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonPackaged/pch.h -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonPackaged/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonPackaged/readme.txt -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonPackagedCs/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonPackagedCs/App.xaml -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonPackagedCs/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonPackagedCs/App.xaml.cs -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonPackagedCs/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonPackagedCs/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonPackagedCs/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonPackagedCs/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonPackagedCs/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonPackagedCs/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonPackagedCs/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonPackagedCs/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonPackagedCs/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonPackagedCs/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonPackagedCs/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonPackagedCs/Assets/StoreLogo.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonPackagedCs/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonPackagedCs/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonPackagedCs/BlankPage1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonPackagedCs/BlankPage1.xaml -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonPackagedCs/BlankPage1.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonPackagedCs/BlankPage1.xaml.cs -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonPackagedCs/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonPackagedCs/MainWindow.xaml -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonPackagedCs/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonPackagedCs/MainWindow.xaml.cs -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonPackagedCs/Properties/PublishProfiles/win10-arm64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonPackagedCs/Properties/PublishProfiles/win10-arm64.pubxml -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonPackagedCs/Properties/PublishProfiles/win10-x64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonPackagedCs/Properties/PublishProfiles/win10-x64.pubxml -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonPackagedCs/Properties/PublishProfiles/win10-x86.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonPackagedCs/Properties/PublishProfiles/win10-x86.pubxml -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonPackagedCs/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonPackagedCs/Properties/launchSettings.json -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonPackagedCs/TestNonPackagedCs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonPackagedCs/TestNonPackagedCs.csproj -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonPackagedCs/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonPackagedCs/app.manifest -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonWinRTDep/SomeFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonWinRTDep/SomeFunction.cpp -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonWinRTDep/SomeLibrary.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonWinRTDep/SomeLibrary.h -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonWinRTDep/TestNonWinRTDep.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonWinRTDep/TestNonWinRTDep.vcxproj -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonWinRTDep/TestNonWinRTDep.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonWinRTDep/TestNonWinRTDep.vcxproj.filters -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonWinRTDep/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonWinRTDep/dllmain.cpp -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonWinRTDep/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonWinRTDep/framework.h -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonWinRTDep/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonWinRTDep/pch.cpp -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNonWinRTDep/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNonWinRTDep/pch.h -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNuget/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNuget/App.xaml -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNuget/App.xaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNuget/App.xaml.cpp -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNuget/App.xaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNuget/App.xaml.h -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNuget/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNuget/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNuget/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNuget/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNuget/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNuget/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNuget/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNuget/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNuget/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNuget/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNuget/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNuget/Assets/StoreLogo.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNuget/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNuget/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNuget/BlankPage.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNuget/BlankPage.idl -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNuget/BlankPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNuget/BlankPage.xaml -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNuget/BlankPage.xaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNuget/BlankPage.xaml.cpp -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNuget/BlankPage.xaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNuget/BlankPage.xaml.h -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNuget/MainWindow.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNuget/MainWindow.idl -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNuget/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNuget/MainWindow.xaml -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNuget/MainWindow.xaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNuget/MainWindow.xaml.cpp -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNuget/MainWindow.xaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNuget/MainWindow.xaml.h -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNuget/MyCustomControl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNuget/MyCustomControl.cpp -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNuget/MyCustomControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNuget/MyCustomControl.h -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNuget/MyCustomControl.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNuget/MyCustomControl.idl -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNuget/MyUserControl.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNuget/MyUserControl.idl -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNuget/MyUserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNuget/MyUserControl.xaml -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNuget/MyUserControl.xaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNuget/MyUserControl.xaml.cpp -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNuget/MyUserControl.xaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNuget/MyUserControl.xaml.h -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNuget/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNuget/Package.appxmanifest -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNuget/TestNuget.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNuget/TestNuget.vcxproj -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNuget/TestNuget.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNuget/TestNuget.vcxproj.filters -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNuget/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNuget/Themes/Generic.xaml -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNuget/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNuget/app.manifest -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNuget/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNuget/packages.config -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNuget/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNuget/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNuget/pch.h -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestNuget/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestNuget/readme.txt -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackaged/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackaged/App.xaml -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackaged/App.xaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackaged/App.xaml.cpp -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackaged/App.xaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackaged/App.xaml.h -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackaged/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackaged/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackaged/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackaged/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackaged/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackaged/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackaged/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackaged/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackaged/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackaged/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackaged/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackaged/Assets/StoreLogo.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackaged/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackaged/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackaged/BlankPage.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackaged/BlankPage.idl -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackaged/BlankPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackaged/BlankPage.xaml -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackaged/BlankPage.xaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackaged/BlankPage.xaml.cpp -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackaged/BlankPage.xaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackaged/BlankPage.xaml.h -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackaged/MainWindow.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackaged/MainWindow.idl -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackaged/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackaged/MainWindow.xaml -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackaged/MainWindow.xaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackaged/MainWindow.xaml.cpp -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackaged/MainWindow.xaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackaged/MainWindow.xaml.h -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackaged/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackaged/Package.appxmanifest -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackaged/TestPackaged.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackaged/TestPackaged.vcxproj -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackaged/TestPackaged.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackaged/TestPackaged.vcxproj.filters -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackaged/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackaged/app.manifest -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackaged/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackaged/packages.config -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackaged/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackaged/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackaged/pch.h -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackaged/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackaged/readme.txt -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackagedCs/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackagedCs/App.xaml -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackagedCs/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackagedCs/App.xaml.cs -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackagedCs/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackagedCs/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackagedCs/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackagedCs/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackagedCs/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackagedCs/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackagedCs/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackagedCs/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackagedCs/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackagedCs/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackagedCs/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackagedCs/Assets/StoreLogo.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackagedCs/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackagedCs/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackagedCs/BlankPage1.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackagedCs/BlankPage1.xaml -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackagedCs/BlankPage1.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackagedCs/BlankPage1.xaml.cs -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackagedCs/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackagedCs/MainWindow.xaml -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackagedCs/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackagedCs/MainWindow.xaml.cs -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackagedCs/MyCustomControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackagedCs/MyCustomControl.cs -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackagedCs/MyUserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackagedCs/MyUserControl.xaml -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackagedCs/MyUserControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackagedCs/MyUserControl.xaml.cs -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackagedCs/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackagedCs/Package.appxmanifest -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackagedCs/Properties/PublishProfiles/win10-arm64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackagedCs/Properties/PublishProfiles/win10-arm64.pubxml -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackagedCs/Properties/PublishProfiles/win10-x64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackagedCs/Properties/PublishProfiles/win10-x64.pubxml -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackagedCs/Properties/PublishProfiles/win10-x86.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackagedCs/Properties/PublishProfiles/win10-x86.pubxml -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackagedCs/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackagedCs/Properties/launchSettings.json -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackagedCs/TestPackagedCs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackagedCs/TestPackagedCs.csproj -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackagedCs/Themes/Generic.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackagedCs/Themes/Generic.xaml -------------------------------------------------------------------------------- /WinUI3XamlPreview/TestPackagedCs/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/TestPackagedCs/app.manifest -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview.DllLoader/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview.DllLoader/App.xaml -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview.DllLoader/App.xaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview.DllLoader/App.xaml.cpp -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview.DllLoader/App.xaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview.DllLoader/App.xaml.h -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview.DllLoader/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview.DllLoader/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview.DllLoader/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview.DllLoader/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview.DllLoader/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview.DllLoader/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview.DllLoader/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview.DllLoader/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview.DllLoader/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview.DllLoader/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview.DllLoader/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview.DllLoader/Assets/StoreLogo.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview.DllLoader/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview.DllLoader/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview.DllLoader/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview.DllLoader/Package.appxmanifest -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview.DllLoader/WinUI3XamlPreview.DllLoader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview.DllLoader/WinUI3XamlPreview.DllLoader.vcxproj -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview.DllLoader/WinUI3XamlPreview.DllLoader.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview.DllLoader/WinUI3XamlPreview.DllLoader.vcxproj.filters -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview.DllLoader/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview.DllLoader/app.manifest -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview.DllLoader/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview.DllLoader/packages.config -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview.DllLoader/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview.DllLoader/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview.DllLoader/pch.h -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview.DllLoader/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview.DllLoader/readme.txt -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview.sln -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview/Assets/StoreLogo.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview/MainPage.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview/MainPage.idl -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview/MainPage.xaml -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview/MainPage.xaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview/MainPage.xaml.cpp -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview/MainPage.xaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview/MainPage.xaml.h -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview/MainWindow.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview/MainWindow.idl -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview/MainWindow.xaml -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview/MainWindow.xaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview/MainWindow.xaml.cpp -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview/MainWindow.xaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview/MainWindow.xaml.h -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview/Preview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview/Preview.cpp -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview/Preview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview/Preview.h -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview/Preview.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview/Preview.idl -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview/Strings/en-US/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview/Strings/en-US/Resources.resw -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview/Strings/zh-HK/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview/Strings/zh-HK/Resources.resw -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview/Toast.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview/Toast.idl -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview/Toast.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview/Toast.xaml -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview/Toast.xaml.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview/Toast.xaml.cpp -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview/Toast.xaml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview/Toast.xaml.h -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview/WinUI3XamlPreview.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview/WinUI3XamlPreview.def -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview/WinUI3XamlPreview.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview/WinUI3XamlPreview.vcxproj -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview/WinUI3XamlPreview.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview/WinUI3XamlPreview.vcxproj.filters -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview/XamlProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview/XamlProcessor.cpp -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview/XamlProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview/XamlProcessor.h -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview/packages.config -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview/pch.h -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreview/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreview/readme.txt -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreviewCs/Directory.Build.Props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreviewCs/Directory.Build.Props -------------------------------------------------------------------------------- /WinUI3XamlPreview/WinUI3XamlPreviewCs/WinUI3XamlPreviewCs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/WinUI3XamlPreviewCs/WinUI3XamlPreviewCs.csproj -------------------------------------------------------------------------------- /WinUI3XamlPreview/scripts/build-nuget.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/scripts/build-nuget.ps1 -------------------------------------------------------------------------------- /WinUI3XamlPreview/scripts/ci.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/scripts/ci.ps1 -------------------------------------------------------------------------------- /WinUI3XamlPreview/scripts/format.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/scripts/format.ps1 -------------------------------------------------------------------------------- /WinUI3XamlPreview/scripts/get-msbuild.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/scripts/get-msbuild.ps1 -------------------------------------------------------------------------------- /WinUI3XamlPreview/scripts/publish-nuget.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/scripts/publish-nuget.ps1 -------------------------------------------------------------------------------- /WinUI3XamlPreview/scripts/setup.ps1: -------------------------------------------------------------------------------- 1 | $ErrorActionPreference = "Stop" 2 | 3 | dotnet tool restore 4 | -------------------------------------------------------------------------------- /WinUI3XamlPreview/scripts/test.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/WinUI3XamlPreview/scripts/test.ps1 -------------------------------------------------------------------------------- /extensions/WinUI3XamlPreviewVS2022/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/extensions/WinUI3XamlPreviewVS2022/.editorconfig -------------------------------------------------------------------------------- /extensions/WinUI3XamlPreviewVS2022/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/extensions/WinUI3XamlPreviewVS2022/README.md -------------------------------------------------------------------------------- /extensions/WinUI3XamlPreviewVS2022/WinUI3XamlPreviewVS2022.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/extensions/WinUI3XamlPreviewVS2022/WinUI3XamlPreviewVS2022.sln -------------------------------------------------------------------------------- /extensions/WinUI3XamlPreviewVS2022/WinUI3XamlPreviewVS2022/.vsextension/string-resources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/extensions/WinUI3XamlPreviewVS2022/WinUI3XamlPreviewVS2022/.vsextension/string-resources.json -------------------------------------------------------------------------------- /extensions/WinUI3XamlPreviewVS2022/WinUI3XamlPreviewVS2022/ExtensionEntrypoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/extensions/WinUI3XamlPreviewVS2022/WinUI3XamlPreviewVS2022/ExtensionEntrypoint.cs -------------------------------------------------------------------------------- /extensions/WinUI3XamlPreviewVS2022/WinUI3XamlPreviewVS2022/OpenLivePreview.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/extensions/WinUI3XamlPreviewVS2022/WinUI3XamlPreviewVS2022/OpenLivePreview.cs -------------------------------------------------------------------------------- /extensions/WinUI3XamlPreviewVS2022/WinUI3XamlPreviewVS2022/Strings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/extensions/WinUI3XamlPreviewVS2022/WinUI3XamlPreviewVS2022/Strings.Designer.cs -------------------------------------------------------------------------------- /extensions/WinUI3XamlPreviewVS2022/WinUI3XamlPreviewVS2022/Strings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/extensions/WinUI3XamlPreviewVS2022/WinUI3XamlPreviewVS2022/Strings.resx -------------------------------------------------------------------------------- /extensions/WinUI3XamlPreviewVS2022/WinUI3XamlPreviewVS2022/WinUI3XamlPreviewVS2022.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/extensions/WinUI3XamlPreviewVS2022/WinUI3XamlPreviewVS2022/WinUI3XamlPreviewVS2022.csproj -------------------------------------------------------------------------------- /extensions/WinUI3XamlPreviewVS2022/WinUI3XamlPreviewVS2022/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/extensions/WinUI3XamlPreviewVS2022/WinUI3XamlPreviewVS2022/source.extension.vsixmanifest -------------------------------------------------------------------------------- /extensions/WinUI3XamlPreviewVS2022/scripts/build-extension.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/extensions/WinUI3XamlPreviewVS2022/scripts/build-extension.ps1 -------------------------------------------------------------------------------- /extensions/WinUI3XamlPreviewVS2022/vs-publish.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/extensions/WinUI3XamlPreviewVS2022/vs-publish.json -------------------------------------------------------------------------------- /hero-banner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/hero-banner.gif -------------------------------------------------------------------------------- /vs-property-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roxk/WinUI3XamlPreview/HEAD/vs-property-page.png --------------------------------------------------------------------------------