web-dev-qa-db-ja.com

ボタンの内容を揃える

Wpfボタンのコンテンツを左揃えにしたい次のことを試しましたが、テキストはまだボタンの中央に配置されています。

    <Button >
        <StackPanel HorizontalAlignment="Stretch">
            <TextBlock HorizontalAlignment="Left" Text="Save"/>
        </StackPanel>
    </Button>

私は何をしますか?

27
Jose

見つかりました、それは HorizontalContentAlignment です。

:)

54
Jose

StackPanelやTextBlockは必要ありません。あなたに必要なのは

<Button HorizontalContentAlignment="Left" Content="Save" />
15
Bryan Anderson

水平と垂直の2つの方法で配置できます

<Button Content="Export" VerticalContentAlignment="Bottom" name="MyBtn1"  />

または

<Button Content="Export" HorizontalContentAlignment="Center" name="MyBtn2"  />

可能性のある設定を表示するには、次の画像を参照してください:

enter image description here

enter image description here

5
daniele3004