我正在嘗試在我的UWP應用程序上爲其創建一個需要SplashScreen圖像座標的擴展SplashScreen。我使用下面的代碼在App.xaml.cs:飛濺屏幕直角座標返回在Win 10 Mobile上的屏幕尺寸
protected override void OnLaunched(LaunchActivatedEventArgs e)
{
if (e.SplashScreen != null)
var SplashLocation = e.SplashScreen.ImageLocation;
//Rest of initialization...
}
不過,如果我檢查SplashLocation
這是一個Rect
,SplashLocation.Height
和SplashLocation.Width
收益1280和768這是我的手機屏幕的尺寸。所有其他屬性爲0.
這是Win 10 Mobile [build 10536]中的一個已知錯誤嗎?它工作正常,在桌面Windows 10
閃屏是否覆蓋整個手機屏幕? – LegionMammal978
不,我只是使用不同於設定背景顏色的顏色來檢查該splascreen。飛濺屏幕顯示爲中心圖像。 – Saurabh3321
你有沒有找到任何解決方案,我有同樣的問題。 – KMan