Advertisement
programusy

szyfrcezara:MainWindow.xaml

Mar 9th, 2023
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.03 KB | None | 0 0
  1. <Window x:Class="szyfrcezara.MainWindow"
  2.        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3.        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4.        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5.        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6.        xmlns:local="clr-namespace:szyfrcezara"
  7.        mc:Ignorable="d"
  8.        Title="MainWindow" Height="440" Width="800">
  9.     <Grid>
  10.         <Grid.ColumnDefinitions>
  11.             <ColumnDefinition></ColumnDefinition>
  12.         </Grid.ColumnDefinitions>
  13.         <Grid.RowDefinitions>
  14.             <RowDefinition Height="20"></RowDefinition>
  15.             <RowDefinition Height="200"></RowDefinition>
  16.             <RowDefinition Height="200"></RowDefinition>
  17.         </Grid.RowDefinitions>
  18.  
  19.         <Menu Grid.Row="0" Grid.Column="0" Height="20">
  20.             <MenuItem Header="Plik">
  21.                 <MenuItem Header="Wczytaj" x:Name="wczytaj" Click="wczytaj_Click"></MenuItem>
  22.                 <MenuItem Header="Zapisz" x:Name="zapisz" Click="zapisz_Click"></MenuItem>
  23.             </MenuItem>
  24.             <MenuItem Header="Edytuj">
  25.                 <MenuItem Header="Dalej"></MenuItem>
  26.                 <MenuItem Header="Cofnij"></MenuItem>
  27.             </MenuItem>
  28.             <MenuItem Header="Kodowanie">
  29.                 <MenuItem Header="Zakoduj" x:Name="zakoduj" Click="zakoduj_Click"></MenuItem>
  30.                 <MenuItem Header="Dekoduj" x:Name="dekoduj" Click="dekoduj_Click"></MenuItem>
  31.                 <Separator></Separator>
  32.                 <MenuItem Header="Zmien klucz"></MenuItem>
  33.             </MenuItem>
  34.             <MenuItem Header="Pomoc"></MenuItem>
  35.         </Menu>
  36.         <TextBox Grid.Row="1" Grid.Column="0"
  37.                 x:Name="input"
  38.                 Height="200">
  39.            
  40.         </TextBox>
  41.         <TextBox Grid.Row="2" Grid.Column="0"
  42.                 x:Name="output"
  43.                 Height="200"
  44.                 IsEnabled="False">
  45.  
  46.         </TextBox>
  47.  
  48.     </Grid>
  49. </Window>
  50.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement