﻿<Window x:Class="PM_view.MailWin"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MailWin" Height="336" Width="643" ResizeMode="NoResize">
   
    <Grid>
        <Grid.RowDefinitions>
            <RowDefinition Height="60" />
            <RowDefinition Height="201*" />
        </Grid.RowDefinitions>
        <GroupBox Header="Komu" Height="50" Name="groupBox1">
            <StackPanel Orientation="Horizontal" >
                <StackPanel Orientation="Horizontal" Width="500">
                    <CheckBox Content="doc. Ing. Lena Halounová CSc " Height="16" Name="checkBox1" Margin="5,5,5,5"/>
                    <CheckBox Content="Bc. Nikola Němcová" Height="16" Name="checkBox2" Margin="5,5,5,5"/>
                    <CheckBox Content="Bc. Vladimír Holubec" Height="16" Name="checkBox3" Margin="5,5,5,5"/>
                </StackPanel>
                <Button Content="Odešli" Height="23" Name="Sent" Width="100" Margin="5,2,2,2" HorizontalAlignment="Stretch"/>
                
            </StackPanel>
        </GroupBox>
        <GroupBox Grid.Row="1" Header="Text zprávy" HorizontalAlignment="Stretch"   VerticalAlignment="Stretch" Name="groupBox2">
            <TextBox  Name="text" AcceptsReturn="True" AcceptsTab="True"/>
        </GroupBox>
    </Grid>
</Window>
