Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <Window x:Class="szyfrcezara.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:szyfrcezara"
- mc:Ignorable="d"
- Title="MainWindow" Height="440" Width="800">
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition></ColumnDefinition>
- </Grid.ColumnDefinitions>
- <Grid.RowDefinitions>
- <RowDefinition Height="20"></RowDefinition>
- <RowDefinition Height="200"></RowDefinition>
- <RowDefinition Height="200"></RowDefinition>
- </Grid.RowDefinitions>
- <Menu Grid.Row="0" Grid.Column="0" Height="20">
- <MenuItem Header="Plik">
- <MenuItem Header="Wczytaj" x:Name="wczytaj" Click="wczytaj_Click"></MenuItem>
- <MenuItem Header="Zapisz" x:Name="zapisz" Click="zapisz_Click"></MenuItem>
- </MenuItem>
- <MenuItem Header="Edytuj">
- <MenuItem Header="Dalej"></MenuItem>
- <MenuItem Header="Cofnij"></MenuItem>
- </MenuItem>
- <MenuItem Header="Kodowanie">
- <MenuItem Header="Zakoduj" x:Name="zakoduj" Click="zakoduj_Click"></MenuItem>
- <MenuItem Header="Dekoduj" x:Name="dekoduj" Click="dekoduj_Click"></MenuItem>
- <Separator></Separator>
- <MenuItem Header="Zmien klucz"></MenuItem>
- </MenuItem>
- <MenuItem Header="Pomoc"></MenuItem>
- </Menu>
- <TextBox Grid.Row="1" Grid.Column="0"
- x:Name="input"
- Height="200">
- </TextBox>
- <TextBox Grid.Row="2" Grid.Column="0"
- x:Name="output"
- Height="200"
- IsEnabled="False">
- </TextBox>
- </Grid>
- </Window>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement