xml 【WPF】ScaleTransformのサンプル。大きくなります。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了xml 【WPF】ScaleTransformのサンプル。大きくなります。相关的知识,希望对你有一定的参考价值。

<Window x:Class="TransformTest.Window1"
		xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
		xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
		Title="Window1" Height="300" Width="300">
	<Window.Resources>
		<Style x:Key="TxtStyle" TargetType="{x:Type RadioButton}">
			<Style.Triggers>
				<Trigger Property="IsChecked" Value="True">
					<Setter Property="LayoutTransform">
						<Setter.Value>
							<ScaleTransform x:Name="test" ScaleX="2" ScaleY="2"/>
						</Setter.Value>
					</Setter>
					<Setter Property="Foreground" Value="Red"/>
				</Trigger>
			</Style.Triggers>
		</Style>
	</Window.Resources>
	<Grid>
		<StackPanel Margin="20,20,0,0" >
			<RadioButton Content="一般細菌" Style="{StaticResource TxtStyle}"/>
			<RadioButton Content="抗酸菌"  Style="{StaticResource TxtStyle}"/>
		</StackPanel>
	</Grid>
</Window>

以上是关于xml 【WPF】ScaleTransformのサンプル。大きくなります。的主要内容,如果未能解决你的问题,请参考以下文章

xml WPFの的BackgroundWorkerのサンプル

WPF 精修篇 缩放ScaleTransform

如何在 WPF 中为 TranslateTransform 和 ScaleTransform 设置动画

csharp 【WPF】DataGrid中のサンプル

三维比例变换学习(WPF演示)

WPF 精修篇 动画组TransformGroup