58 lines
2.4 KiB
XML
58 lines
2.4 KiB
XML
<Window x:Class="Form3"
|
|
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:Dokumentáció_Készítő_3"
|
|
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
|
|
xmlns:mde="clr-namespace:MaterialDesignExtensions.Controls;assembly=MaterialDesignExtensions"
|
|
mc:Ignorable="d"
|
|
Title="Elkészült"
|
|
Height="183.994"
|
|
Width="370.188"
|
|
FontSize="13"
|
|
WindowStyle="None"
|
|
WindowStartupLocation="CenterScreen"
|
|
TextElement.Foreground="{DynamicResource MaterialDesignBody}"
|
|
TextElement.FontWeight="Regular"
|
|
TextElement.FontSize="13"
|
|
TextOptions.TextFormattingMode="Ideal"
|
|
TextOptions.TextRenderingMode="Auto"
|
|
Background="{DynamicResource MaterialDesignPaper}"
|
|
FontFamily="{DynamicResource MaterialDesignFont}">
|
|
|
|
<!-- Téma beállítása Teal színnel -->
|
|
<Window.Resources>
|
|
<materialDesign:BundledTheme BaseTheme="Light"
|
|
PrimaryColor="Teal"
|
|
SecondaryColor="Teal"/>
|
|
</Window.Resources>
|
|
|
|
<Grid Height="178" VerticalAlignment="Top" HorizontalAlignment="Left" Width="370" Margin="0,0,-8,0">
|
|
<Button x:Name="MaterialRaisedButton1"
|
|
Content="Ok"
|
|
Style="{StaticResource MaterialDesignRaisedButton}"
|
|
HorizontalAlignment="Left"
|
|
Margin="10,106,0,0"
|
|
VerticalAlignment="Top"
|
|
Width="156"/>
|
|
|
|
<Label x:Name="Label1"
|
|
Content="A dokumentáció elkészült"
|
|
Margin="5,10,5,0"
|
|
FontSize="20"
|
|
HorizontalContentAlignment="Center"
|
|
VerticalContentAlignment="Center"
|
|
Height="48"
|
|
VerticalAlignment="Top"/>
|
|
|
|
<Button x:Name="MaterialRaisedButton2"
|
|
Content="Tartalmazó mappa"
|
|
Style="{StaticResource MaterialDesignRaisedButton}"
|
|
HorizontalAlignment="Left"
|
|
Margin="185,106,0,0"
|
|
VerticalAlignment="Top"
|
|
Width="156"/>
|
|
</Grid>
|
|
</Window>
|