1234567891011121314151617181920212223242526272829303132333435 |
- <Window xmlns="https://github.com/avaloniaui"
- 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"
- mc:Ignorable="d" d:DesignWidth="800" d:DesignHeight="450"
- x:Class="AvaloniaApplication1.MainWindow"
- Title="AvaloniaApplication1">
- <Grid HorizontalAlignment="Center">
- <StackPanel Margin="50 100 50 50">
- <TextBlock Name="yearT"></TextBlock>
- <TextBlock Name="mounthT"></TextBlock>
- <TextBlock Name="daysT"></TextBlock>
- <TextBlock Name="dayOfWeek"></TextBlock>
- <TextBlock Name="DBW"></TextBlock>
- <TextBlock Name="Viss"></TextBlock>
- <TextBlock Name="VisY"></TextBlock>
- <TextBlock Name="Znak"></TextBlock>
- </StackPanel>
- <StackPanel Margin="100 250 100 100">
- <TextBlock Name="Error"></TextBlock>
- <DatePicker Classes ="Text" Width="400" Height="30" VerticalAlignment="Center" Name="dateT"></DatePicker>
- <RadioButton Classes ="RB" Name="Vost">Восточный календарь</RadioButton>
- <RadioButton Classes ="RB" Name="Zod">Знак зодиака</RadioButton>
- <Button Classes ="but" Margin="0 10" VerticalAlignment="Center" Click="Button_Click" Width="160" Height="30" HorizontalAlignment="Center">
- Подтвердить выбор
- </Button>
- <TextBlock Name="Podskaz">После выбора даты и после каждого выбора знака нажмите на кнопку.</TextBlock>
- <Button Classes ="but" Margin="0 10" VerticalAlignment="Center" Click="Filee" Width="160" Height="30" HorizontalAlignment="Center">
- Считать с файла
- </Button>
- </StackPanel>
- </Grid>
-
- </Window>
|