GUI
<Window x:Class="W011_MulticColorButton.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:W011_MulticColorButton"
mc:Ignorable="d"
Title="MainWindow" Height="450" Width="800">
<Grid Background="Orange">
<Button Margin="30" FontSize="30" FontWeight="Black">
<Button.Content>
<WrapPanel>
<TextBlock Foreground="Blue" Text="Multi"/>
<TextBlock Foreground="Red" Text="Color"/>
<TextBlock Foreground="Black" Text="Button"/>
</WrapPanel>
</Button.Content>
</Button>
</Grid>
</Window>
'C# > Basics' 카테고리의 다른 글
W013. Event (0) | 2021.04.25 |
---|---|
W012. UniformGrid (0) | 2021.04.25 |
W010.UserControl (0) | 2021.04.25 |
W009. Language (0) | 2021.04.25 |
W008.Login (0) | 2021.04.25 |