MainWindow.axaml 1.7 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <Window xmlns="https://github.com/avaloniaui"
  2. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  3. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
  6. x:Class="AvaloniaApplication1.MainWindow"
  7. Title="AvaloniaApplication1">
  8. <Grid HorizontalAlignment="Center">
  9. <StackPanel Margin="50 100 50 50">
  10. <TextBlock Name="yearT"></TextBlock>
  11. <TextBlock Name="mounthT"></TextBlock>
  12. <TextBlock Name="daysT"></TextBlock>
  13. <TextBlock Name="dayOfWeek"></TextBlock>
  14. <TextBlock Name="DBW"></TextBlock>
  15. <TextBlock Name="Viss"></TextBlock>
  16. <TextBlock Name="VisY"></TextBlock>
  17. <TextBlock Name="Znak"></TextBlock>
  18. </StackPanel>
  19. <StackPanel Margin="100 250 100 100">
  20. <TextBlock Name="Error"></TextBlock>
  21. <DatePicker Classes ="Text" Width="400" Height="30" VerticalAlignment="Center" Name="dateT"></DatePicker>
  22. <RadioButton Classes ="RB" Name="Vost">Восточный календарь</RadioButton>
  23. <RadioButton Classes ="RB" Name="Zod">Знак зодиака</RadioButton>
  24. <Button Classes ="but" Margin="0 10" VerticalAlignment="Center" Click="Button_Click" Width="160" Height="30" HorizontalAlignment="Center">
  25. Подтвердить выбор
  26. </Button>
  27. <TextBlock Name="Podskaz">После выбора даты и после каждого выбора знака нажмите на кнопку.</TextBlock>
  28. <Button Classes ="but" Margin="0 10" VerticalAlignment="Center" Click="Filee" Width="160" Height="30" HorizontalAlignment="Center">
  29. Считать с файла
  30. </Button>
  31. </StackPanel>
  32. </Grid>
  33. </Window>