Kaikylator.axaml 1.3 KB

1234567891011121314151617181920212223242526272829
  1. <UserControl 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="AvaloniaApplication2.Views.Kaikylator">
  7. <StackPanel HorizontalAlignment="Center">
  8. <TextBlock Text="Калькулятр" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="60,10,60,1">
  9. </TextBlock>
  10. <TextBlock Text="Выберите операцию" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="60,10,60,4">
  11. </TextBlock>
  12. <ComboBox Name="XMen" Margin="210,25,60,4">
  13. </ComboBox>
  14. <WrapPanel Margin="60,25,60,4">
  15. <TextBox Margin="60,10,60,4"> </TextBox>
  16. <TextBox Margin="60,10,60,4"> </TextBox>
  17. </WrapPanel>
  18. <TextBlock>
  19. <Button HorizontalAlignment="Center" VerticalAlignment="Center" Margin="195,10,60,4" >
  20. Вычислить
  21. </Button>
  22. </TextBlock>
  23. <TextBlock Text="Результат" HorizontalAlignment="Center" VerticalAlignment="Center" Margin="60,10,60,4">
  24. </TextBlock>
  25. <TextBox Margin="60,10,60,4"> </TextBox>
  26. </StackPanel>
  27. </UserControl>