AddEditPage.xaml 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <Page x:Class="AutoServiceVika.Pages.AddEditPage"
  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:AutoServiceVika.Pages"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800"
  9. Title="AddEditPage">
  10. <Grid>
  11. <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
  12. <StackPanel Orientation="Vertical" Margin="0 0 0 0" HorizontalAlignment="Center" VerticalAlignment="Center">
  13. <DockPanel Width="250" Margin="5">
  14. <Label HorizontalAlignment="Left" Content="Название:" FontSize="15"/>
  15. <TextBox x:Name="tbName" HorizontalAlignment="Right" Width="150" Background="White" FontSize="15"/>
  16. </DockPanel>
  17. <DockPanel Width="250" Margin="5">
  18. <Label HorizontalAlignment="Left" Content="Стоимость:" FontSize="15"/>
  19. <TextBox x:Name="tbCost" HorizontalAlignment="Right" Width="150" Background="White" FontSize="15"/>
  20. </DockPanel>
  21. <DockPanel Width="258" Margin="5">
  22. <Label HorizontalAlignment="Left" Content="Дли-сть (мин):" FontSize="15"/>
  23. <TextBox x:Name="tbDurationInSecond" HorizontalAlignment="Right" Width="150" Background="White" FontSize="15"/>
  24. </DockPanel>
  25. <DockPanel Height="70" Width="250" Margin="5">
  26. <Label HorizontalAlignment="Left" Content="Описание:" FontSize="15"/>
  27. <TextBox x:Name="tbDiscription" TextWrapping="Wrap" HorizontalAlignment="Right" Width="150" Background="White" FontSize="15"/>
  28. </DockPanel>
  29. <DockPanel Width="250" Margin="5">
  30. <Label HorizontalAlignment="Left" Content="Скидка:" FontSize="15"/>
  31. <TextBox x:Name="tbDiscount" HorizontalAlignment="Right" Width="150" Background="White" FontSize="15"/>
  32. </DockPanel>
  33. </StackPanel>
  34. <StackPanel Margin="10" HorizontalAlignment="Right" VerticalAlignment="Center">
  35. <Border Height="220" Width="200" BorderBrush="Orange" BorderThickness="1">
  36. <Image x:Name="imgImage" />
  37. </Border>
  38. <Button Background="Orange" FontSize="15" Foreground="#FFFFE1" Click="btnSelectImage_Click" Name="btnSelectImage" Content="Выбрать фотографию" Margin="5"/>
  39. <Button Background="Orange" FontSize="15" Foreground="#FFFFE1" Click="btnSave_Click" Name="btnSave" Content="Сохранить" Margin="5"/>
  40. </StackPanel>
  41. </StackPanel>
  42. </Grid>
  43. </Page>