LoginSignup
5
4

More than 5 years have passed since last update.

ボタンの文字もウィンドウサイズに合わせてほしいゾ!

Last updated at Posted at 2015-03-04

レイアウトをGridにしてボタンを押してスケールさせてやるぜニシシシシ…
とか考えてやってみたら、

ボタン自体はスケールするのに文字サイズは変わらねぇんかい!!!1

って感じになったのでアレコレやってみた結果、以下のコードで行けそう。

MainWindow.xaml
<!-- Gridに突っ込んでる体です… -->
<Button Width="auto" Height="auto" Grid.Column="1">
    <Viewbox Stretch="Uniform">
         <Label Content="情報取得"/>    
    </Viewbox>              
</Button>

違ってたらご指摘ください...

5
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
4