ChoiceMode.xaml 957 B

12345678910111213141516171819202122
  1. <Window x:Class="GraphDrawer.ChoiceMode"
  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. mc:Ignorable="d"
  7. Title="Graph Drawer" Height="250" ResizeMode="NoResize" Width="300">
  8. <Window.Resources>
  9. <Style TargetType="Button">
  10. <Setter Property="Background" Value="White"/>
  11. <Setter Property="FontSize" Value="32"/>
  12. </Style>
  13. </Window.Resources>
  14. <Grid>
  15. <Grid.RowDefinitions>
  16. <RowDefinition/>
  17. <RowDefinition/>
  18. </Grid.RowDefinitions>
  19. <Button Content="Генерация графа" Click="Button_Click"/>
  20. <Button Content="Ввод графа" Grid.Row="1" Click="Button_Click_1"/>
  21. </Grid>
  22. </Window>