48 lines
2.3 KiB
XML
48 lines
2.3 KiB
XML
<Window x:Class="WpfStatisztika.MainWindow"
|
|
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:WpfStatisztika"
|
|
mc:Ignorable="d"
|
|
Title="Statisztika" Height="450" Width="800">
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="5*"></ColumnDefinition>
|
|
<ColumnDefinition Width="10*"></ColumnDefinition>
|
|
<ColumnDefinition Width="35*"></ColumnDefinition>
|
|
<ColumnDefinition Width="35*"></ColumnDefinition>
|
|
<ColumnDefinition Width="10*"></ColumnDefinition>
|
|
<ColumnDefinition Width="5*"></ColumnDefinition>
|
|
</Grid.ColumnDefinitions>
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="10*"></RowDefinition>
|
|
<RowDefinition Height="80*"></RowDefinition>
|
|
<RowDefinition Height="10*"></RowDefinition>
|
|
</Grid.RowDefinitions>
|
|
<Grid Grid.Row="1" Grid.Column="2">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition></RowDefinition>
|
|
<RowDefinition></RowDefinition>
|
|
<RowDefinition></RowDefinition>
|
|
</Grid.RowDefinitions>
|
|
<TextBox Grid.Row="0" Width="100" Height="20" HorizontalAlignment="Center" VerticalAlignment="Center" x:Name="input">bemenet.txt</TextBox>
|
|
<Button Grid.Row="1" Width="140" Height="30" Click="Button_Click">File olvasása</Button>
|
|
<Button Grid.Row="2" Width="140" Height="30" Click="Save_Click">Kimenet mentése</Button>
|
|
</Grid>
|
|
|
|
<Grid Grid.Row="1" Grid.Column="3">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition></RowDefinition>
|
|
<RowDefinition></RowDefinition>
|
|
<RowDefinition></RowDefinition>
|
|
<RowDefinition></RowDefinition>
|
|
</Grid.RowDefinitions>
|
|
<Label Grid.Row="0" x:Name="osszeg" ></Label>
|
|
<Label Grid.Row="1" x:Name="atlag" ></Label>
|
|
<Label Grid.Row="2" x:Name="min" ></Label>
|
|
<Label Grid.Row="3" x:Name="max" ></Label>
|
|
</Grid>
|
|
</Grid>
|
|
</Window>
|