Add project files.

This commit is contained in:
2025-07-09 12:11:18 +02:00
parent 7dc3d49c71
commit 925270e409
27 changed files with 4197 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
<Window x:Class="Form2"
TextElement.Foreground="{DynamicResource MaterialDesignBody}"
TextElement.FontWeight="Regular"
TextElement.FontSize="13"
TextOptions.TextFormattingMode="Ideal"
TextOptions.TextRenderingMode="Auto"
Background="{DynamicResource MaterialDesignPaper}"
FontFamily="{DynamicResource MaterialDesignFont}"
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="125.994" Width="370.188" FontSize="13" WindowStyle="None" WindowStartupLocation="CenterScreen">
<Grid Height="116" VerticalAlignment="Top" HorizontalAlignment="Left" Width="360">
<Button x:Name="MaterialRaisedButton1" Content="Ok" HorizontalAlignment="Left" Margin="10,76,0,0" VerticalAlignment="Top" Width="156" RenderTransformOrigin="0.785,1.101"/>
<Label x:Name="Label1" Content="Szeretnéd a pramétert módosítani?" Margin="0,10,10,0" FontSize="16" HorizontalContentAlignment="Center" VerticalContentAlignment="Center" Height="33" VerticalAlignment="Top"/>
<Button x:Name="MaterialRaisedButton2" Content="Mégsem" HorizontalAlignment="Left" Margin="194,76,0,0" VerticalAlignment="Top" Width="156" RenderTransformOrigin="0.785,1.101"/>
<TextBox x:Name="TextBox1" HorizontalAlignment="Left" Height="23" Margin="10,48,0,0" TextWrapping="Wrap" Text="TextBox" VerticalAlignment="Top" Width="340" TextChanged="TextBox_TextChanged"/>
</Grid>
</Window>