私はちょうどwinformsの代わりにWPFを使い始めました。固定サイズのウィンドウを作成しようとしています(画像参照)。グリッドとウィンドウのサイズの一致WPF
問題は、私はアプリを実行するたびに右下隅にはボタンとエッジとの間のスペースゼロに近い持つ、めちゃめちゃます、です。私は多くの成功なしに解決するためにグーグルで試した
<Window x:Class="UseCaseHelper.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:UseCaseHelper"
mc:Ignorable="d"
Title="UseCaseHelper" Height="500" Width="900">
<Grid>
<Button x:Name="button" Content="Button" HorizontalAlignment="Left" Margin="10,10,0,0" VerticalAlignment="Top" Width="75"/>
<Button x:Name="button1" Content="Button" HorizontalAlignment="Left" Margin="809,441,0,0" VerticalAlignment="Top" Width="75"/>
</Grid>
</Window>
は、ここで(主にVisual Studioのデザイナーによって生成された)XAMLコードです(他の画像を参照してください)。うまくいけば、誰かが私がここで間違っていることを指摘することができます。
両方ともにMargin = "10"を使用し、VerticalAlignment = Top/Bottom、HorizontalAlignment = Left/Rightを設定します。 – AnjumSKhan