<Canvas Background="#46461F"> <Button Width="200" Height="60" Background="Red" Canvas.Top="90" Canvas.Left="30" Content="提 交" FontFamily="微软雅黑" FontSize="24" FontWeight="Bold" Foreground="Green"/> <Button Width="200" Height="60" Background="Red" Canvas.Top="90" Canvas.Left="260" Content="取 消" FontFamily="微软雅黑" FontSize="24" FontWeight="Bold" Foreground="Red"/> </Canvas>
<Application.Resources> <Style x:Key="button1" TargetType="Button"> <Setter Property="FontFamily" Value="微软雅黑"></Setter> <Setter Property="FontSize" Value="24"></Setter> <Setter Property="Foreground" Value="Green"></Setter> <Setter Property="Background" Value="Red"></Setter> </Style> <Style x:Key="button2" TargetType="Button"> <Setter Property="FontFamily" Value="微软雅黑"></Setter> <Setter Property="FontSize" Value="24"></Setter> <Setter Property="Foreground" Value="Red"></Setter> <Setter Property="Background" Value="Red"></Setter> </Style> </Application.Resources>
<Canvas Background="#46461F"> <Button Width="200" Height="60" Canvas.Top="90" Canvas.Left="30" Content="提 交" Style="{StaticResource button1}"/> <Button Width="200" Height="60" Canvas.Top="90" Canvas.Left="260" Content="取 消" Style="{StaticResource button2}"/> </Canvas>
<Canvas Background="#46461F"> <Button Width="200" Height="60" Canvas.Top="90" Canvas.Left="30" Content="提 交" Style="{StaticResource button1}" Foreground="Blue" /> <Button Width="200" Height="60" Canvas.Top="90" Canvas.Left="260" Content="取 消" Style="{StaticResource button2}"/> </Canvas>
本文出自 “TerryLee技术专栏” 博客,请务必保留此出处http://terrylee.blog.51cto.com/342737/67240
本文出自 51CTO.COM技术博客