While launching application it gets stuck at splash screen randomly . I have tried resolution adjustment. Someone can suggest whole process of creating splash screen in windows can also help.
Related
I am a new in Hololens 2 and I build some Unity sample on it.
When start application, it would placed a white box like that.
When stop application, the white box still on here and I need to click X to close it.
I have searched about that, it seem like about uwp application lifecycle?
Is there any method to close it with C# when I quit my application.
Thanks in advance for any suggestions.
It is by design and can only be closed manually, every app starts in mixed reality by placing an app tile in the Windows Mixed Reality home and these tiles persist and stay at their placed location. For more information please see:App model
In addition to this, you can add a custom holographic splash screen for the app, please refer to this link:Holographic splash screen
I've recently started working on windows forms, but I encountered an annoying bug and I don't know how to fix it. My windows media player gets bigger or starts having weird sizing while my application is running.
I have attached some images, can somebody please help?
what causes uwp app to show blank screen on some devices,can it be the extended splash screen or is it the os build version,i can figure out what it is?
Am using C# and xaml for development
I am currently working on widows8 metro app tablet version.In My package.appmanifest file I have choose supported rotation as landscape.but when iam launching the applicaiton by holding the device in portrait mode.For fraction of seconds splash screen is coming in portrait mode and then it changed to landscape.
can anyone know how to solve this problem. because of this issue i am facing other issues.
You can add your custom splash screen. If your application only supports landscape, you could make your splash screen appear in landscape by manually adjusting the image to load.
Another option could be to make an extended splash screen. This way, you can programatically make your splash screen appear for say, a second or so.
Check this article from Microsoft, Creating a fast and fluid app launch experience, which has examples and information about extended splash screens.
I am working on an app which displays videos and am running into an issue where the machine goes to sleep after hitting the sleep time limit while a video is playing. Is there a way to disable this behavior in a Windows 8 Metro application?
You should use the DisplayRequest class, specifically DisplayRequest.RequestActive for this purpose. You must also remember to call DisplayRequest.RequestRelease once you are done to allow the display to sleep, for example, if you are not actively playing the movie, or in a menu screen, etc.