0
私はプログラム的に画面の右下にボタンを配置したいと思います。ボタンは画面の高さと幅の25%に配置する必要があります(右下)。プログラムでどのように行うことができますか?プログラムでボタンを配置する方法 - UWP
var displayInformation = DisplayInformation.GetForCurrentView();
ScreenHeight= (int)displayInformation.ScreenHeightInRawPixels;//1080
ScreenWidth= (int)displayInformation.ScreenWidthInRawPixels;//1920
<Button x:Name="btnTest" VerticalAlignment="Bottom">
あなたは 'testButton.VerticalAlignment = VerticalAlignment.Bottomを使用することができます;' 'testButton.HorizontalAlignment = HorizontalAlignment.Right; ' –
2質問: 1.)画面の高さと幅を確認してもよろしいですか?あなたのアプリケーションのサイズではありませんか? 2.)どこから距離を測定していますか?ボタンの上/左隅から、または下/右のコーナーから25%のスペース? – TheTanic
私はアプリケーションのサイズが欲しいです。どうすれば入手できますか?右下隅から25%のスペース – nsds