메뉴 건너뛰기

GREATUSER

free

Command-Line Activation of Universal Windows Apps As we continue to close the gap between Win32 and Universal Windows Apps, one of the features we’ve recently introduced is the ability to activate a UWA from a command line and pass the app arbitrary command-line arguments. This is available to Insiders from build 16226. This feature builds on the App Execution Alias extension already available for Desktop Bridge apps. To use this feature in a UWA, there are two key additions to your app: Add an appExecutionAlias extension to your app manifest. Override OnActivated and handle the incoming arguments. For the manifest entry, you first need to declare the XML namespace for the AppExecutionAlias element: <Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" xmlns:uap5="http://schemas.microsoft.com/appx/manifest/uap/windows10/5" IgnorableNamespaces="uap mp uap5"> The AppExecutionAlias is declared as an Extension within your Application. This is quite simple and almost the same as [ more... ]

The post Command-Line Activation of Universal Windows Apps appeared first on 지락문화예술공작단.




원문출처 : https://jirak.net/wp/command-line-activation-of-universal-windows-apps/
위로