ViborUpdateTournments.xaml 2.0 KB

1234567891011121314151617181920212223242526
  1. <Window x:Class="KursachMukha692gr.ViborUpdateTournments"
  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:KursachMukha692gr"
  7. mc:Ignorable="d"
  8. Title="Обновление" Height="435" Width="350" WindowStartupLocation="CenterScreen" VerticalAlignment="Center" HorizontalAlignment="Stretch" ScrollViewer.HorizontalScrollBarVisibility="Disabled">
  9. <Grid Background="#028E9B">
  10. <Border Background="#35C0CD" MinWidth="300" MaxWidth="300" Margin="21,12,21,10" VerticalAlignment="Center" HorizontalAlignment="Center" Padding="30" Height="382">
  11. <StackPanel >
  12. <TextBlock Text="Выберите значение для обновления" HorizontalAlignment="Center" FontSize="14"/>
  13. <Button Content="Название соревнования" Margin="20,20,20,20" Background="#006363" Click="Button_Click_Name" Width="auto" />
  14. <Button Content="Место проведения" Background="#006363" Click="Button_Click_spisok_Mesto" RenderTransformOrigin="0.496,0.453" Height="31" Margin="20,0,20,20"/>
  15. <Button Content="Дисциплина" Background="#006363" Click="Button_Click_Disciplina" Width="auto" Margin="20,0,20,20" Height="Auto" />
  16. <Button Content="Номер группы" Background="#006363" Height="Auto" Margin="20,0,20,20" Click="Button_Click_Gruppa" VerticalAlignment="Center"/>
  17. <Button Content="Тренер" Background="#006363" Height="Auto" Margin="20,0,20,20" VerticalAlignment="Center" Click="Button_Click_Trener"/>
  18. <Button Content="Назад" Background="#006363" Margin="20,0,20,20" Height="Auto" Click="Button_Click_Back" VerticalAlignment="Center"/>
  19. </StackPanel>
  20. </Border>
  21. </Grid>
  22. </Window>