15 lines
343 B
C#
15 lines
343 B
C#
|
Property Inheritance
|
||
|
|
||
|
<StackPanel xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
HorizontalAlignment="Center"
|
||
|
TextBlock.FontSize="28pt"
|
||
|
TextBlock.Foreground="Aqua" >
|
||
|
<TextBlock>
|
||
|
TextBlock
|
||
|
</TextBlock>
|
||
|
<Button>
|
||
|
Button
|
||
|
</Button>
|
||
|
</StackPanel>
|
||
|
|