AddEditServicePage.xaml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <Page x:Class="Nastya.Pages.AddEditServicePage"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  5. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  6. xmlns:local="clr-namespace:Nastya.Pages"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800"
  9. Title="Список услуг" Background="White">
  10. <Grid>
  11. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
  12. <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
  13. <StackPanel Orientation="Horizontal">
  14. <TextBlock Text="Название" ></TextBlock>
  15. <TextBlock Name="TBoxTitle"></TextBlock>
  16. </StackPanel>
  17. <StackPanel Orientation="Horizontal">
  18. <TextBlock Text="Стоимость"></TextBlock>
  19. <TextBlock Name="TBoxCost"></TextBlock>
  20. </StackPanel>
  21. <StackPanel Orientation="Horizontal">
  22. <TextBlock Text="Длит-сть (мин)"></TextBlock>
  23. <TextBlock Name="TBoxDuration"></TextBlock>
  24. </StackPanel>
  25. <StackPanel Orientation="Horizontal">
  26. <TextBlock Text="Описание"></TextBlock>
  27. <TextBlock Name="TBoxDescription" TextWrapping="Wrap" Height="100"></TextBlock>
  28. </StackPanel>
  29. <StackPanel Orientation="Horizontal">
  30. <TextBlock Text="Скидка"></TextBlock>
  31. <TextBlock Name="TBoxDiscount"></TextBlock>
  32. </StackPanel>
  33. </StackPanel>
  34. <StackPanel VerticalAlignment="Center">
  35. <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center" Grid.Column="1">
  36. <Border Margin="5" Height="175" Width="200" BorderBrush="Crimson"
  37. BorderThickness="1">
  38. <Image Name="ImageService"></Image>
  39. </Border>
  40. <Button Height="30" Width="200" Margin="5" Name="BtnSelectImage"
  41. Click="BtnSelectImage_Click" Content="Выбрать фотографию"></Button>
  42. <Button Height="30" Width="200" Margin="5" Name="BtnSave"
  43. Click="BtnSave_Click" Content="Сохранить"></Button>
  44. </StackPanel>
  45. </StackPanel>
  46. </StackPanel>
  47. </Grid>
  48. </Page>