6
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

WPFメモ コントロールの拡大

Last updated at Posted at 2016-10-03

概要

コントロールの大きさを2倍にするサンプル。

コード

MainWindow.xaml
<Window x:Class="WpfApplication1.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:WpfApplication1"
        mc:Ignorable="d"
        Title="MainWindow" Height="465.718" Width="525">
    <Window.Resources>
        <!-- サイズ2倍 -->
        <ScaleTransform x:Key="ScaleXY" ScaleX="2" ScaleY="2" />
        <!-- ベースのスタイル -->
        <Style x:Key="BaseStyle" TargetType="{x:Type FrameworkElement}">
            <Setter Property="LayoutTransform" Value="{StaticResource ScaleXY}" />
        </Style>
        <!-- コントロールのスタイル -->
        <Style TargetType="{x:Type Button}" BasedOn="{StaticResource BaseStyle}" />
        <Style TargetType="{x:Type CheckBox}" BasedOn="{StaticResource BaseStyle}" />
        <Style TargetType="{x:Type ComboBox}" BasedOn="{StaticResource BaseStyle}" />
        <Style TargetType="{x:Type Label}" BasedOn="{StaticResource BaseStyle}" />
        <Style TargetType="{x:Type ListBox}" BasedOn="{StaticResource BaseStyle}" />
        <Style TargetType="{x:Type RadioButton}" BasedOn="{StaticResource BaseStyle}" />
        <Style TargetType="{x:Type TextBlock}" BasedOn="{StaticResource BaseStyle}" />
        <Style TargetType="{x:Type TextBox}" BasedOn="{StaticResource BaseStyle}" />
    </Window.Resources>

    <StackPanel>
        <Button x:Name="button" Content="Button"/>
        <CheckBox x:Name="checkBox" Content="CheckBox" IsChecked="True"/>
        <ComboBox x:Name="comboBox" SelectedIndex="0">
            <ComboBoxItem Content="コンボ項目1" />
            <ComboBoxItem Content="コンボ項目2" />
            <ComboBoxItem Content="コンボ項目3" />
        </ComboBox>
        <Label x:Name="label" Content="Label"/>
        <ListBox x:Name="listBox" Height="50">
            <ListBoxItem Content="AAAA" />
            <ListBoxItem Content="BBBB" />
            <ListBoxItem Content="CCCC" />
        </ListBox>
        <RadioButton x:Name="radioButton" Content="RadioButton" IsChecked="True"/>
        <TextBlock x:Name="textBlock" TextWrapping="Wrap">
            テキスト一行目<LineBreak />
            テキスト二行目<LineBreak />
        </TextBlock>
        <TextBox x:Name="textBox" Height="23" TextWrapping="Wrap" Text="TextBox"/>

    </StackPanel>
</Window>

実行結果

w01-02.png

参考(通常サイズ)
w01-01.png

環境

  • Windows 8.1
  • Visual Studio Express 2015 for Windows Desktop
6
6
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
6
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?