123456789101112131415 |
- <Window x:Class="ProjectAnalogParus.DeleteEncouragementWindow"
- 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:ProjectAnalogParus"
- mc:Ignorable="d"
- Title="DeleteEncouragementWindow" Height="450" Width="800">
- <Grid>
- <ComboBox Name="cmbEncouragement" HorizontalAlignment="Left" Margin="357,126,0,0" VerticalAlignment="Top" Width="120"/>
- <Button Content="Удалить" HorizontalAlignment="Left" Margin="134,229,0,0" VerticalAlignment="Top" Width="75" Click="DeleteClick"/>
- <Button Content="Отмена" HorizontalAlignment="Left" Margin="308,229,0,0" VerticalAlignment="Top" Width="75" Click="CancelClick"/>
- </Grid>
- </Window>
|