15 lines
785 B
XML
15 lines
785 B
XML
<Window x:Class="PEP_Tool.NewVersionScreen"
|
|
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:PEP_Tool"
|
|
mc:Ignorable="d"
|
|
Title="Neu in dieser Version" Height="526" Width="800" WindowStyle="ToolWindow" Closing="Window_Closing">
|
|
<Grid>
|
|
<Button Content="OK" Margin="0,0,10,10" Click="Button_Click" HorizontalAlignment="Right" Width="75" Height="20" VerticalAlignment="Bottom"/>
|
|
<ContentControl Content="{StaticResource rtbVersionInfo}" Margin="0,0,0,30"/>
|
|
|
|
</Grid>
|
|
</Window>
|