funny stuff

This commit is contained in:
Holger Börchers 2018-03-27 16:10:38 +02:00
parent 45768d89a6
commit ff424c6c14
2 changed files with 13 additions and 4 deletions

View File

@ -8,11 +8,20 @@
Title="MainWindow" Title="MainWindow"
Width="800" Width="800"
Height="450" Height="450"
Background="Chartreuse" Background="#E20074"
ContentRendered="MainWindow_OnContentRendered" ContentRendered="MainWindow_OnContentRendered"
mc:Ignorable="d"> mc:Ignorable="d">
<StackPanel> <StackPanel>
<Button Margin="10" FontSize="24" Content="Update" Click="ButtonBase_OnClick"></Button> <Button Margin="10" FontSize="24" Content="Update" Click="ButtonBase_OnClick"></Button>
<TextBlock Text=":-(" FontSize="60" HorizontalAlignment="Center" /> <TextBlock Margin="20" Text=":-)" FontSize="60" HorizontalAlignment="Center" RenderTransformOrigin="0.5,0.5" >
<TextBlock.RenderTransform>
<TransformGroup>
<ScaleTransform/>
<SkewTransform/>
<RotateTransform Angle="90"/>
<TranslateTransform/>
</TransformGroup>
</TextBlock.RenderTransform>
</TextBlock>
</StackPanel> </StackPanel>
</Window> </Window>

View File

@ -49,5 +49,5 @@ using System.Windows;
// You can specify all the values or you can default the Build and Revision Numbers // You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below: // by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")] // [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.48")] [assembly: AssemblyVersion("1.0.53")]
[assembly: AssemblyFileVersion("1.0.48")] [assembly: AssemblyFileVersion("1.0.53")]