12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <Page x:Class="Nastya.Pages.AddEditServicePage"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:Nastya.Pages"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800"
- Title="Список услуг" Background="White">
- <Grid>
- <StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
- <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center">
- <StackPanel Orientation="Horizontal">
- <TextBlock Text="Название" ></TextBlock>
- <TextBlock Name="TBoxTitle"></TextBlock>
- </StackPanel>
- <StackPanel Orientation="Horizontal">
- <TextBlock Text="Стоимость"></TextBlock>
- <TextBlock Name="TBoxCost"></TextBlock>
- </StackPanel>
- <StackPanel Orientation="Horizontal">
- <TextBlock Text="Длит-сть (мин)"></TextBlock>
- <TextBlock Name="TBoxDuration"></TextBlock>
- </StackPanel>
- <StackPanel Orientation="Horizontal">
- <TextBlock Text="Описание"></TextBlock>
- <TextBlock Name="TBoxDescription" TextWrapping="Wrap" Height="100"></TextBlock>
- </StackPanel>
- <StackPanel Orientation="Horizontal">
- <TextBlock Text="Скидка"></TextBlock>
- <TextBlock Name="TBoxDiscount"></TextBlock>
- </StackPanel>
- </StackPanel>
-
- <StackPanel VerticalAlignment="Center">
- <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center" Grid.Column="1">
- <Border Margin="5" Height="175" Width="200" BorderBrush="Crimson"
- BorderThickness="1">
- <Image Name="ImageService"></Image>
- </Border>
- <Button Height="30" Width="200" Margin="5" Name="BtnSelectImage"
- Click="BtnSelectImage_Click" Content="Выбрать фотографию"></Button>
- <Button Height="30" Width="200" Margin="5" Name="BtnSave"
- Click="BtnSave_Click" Content="Сохранить"></Button>
- </StackPanel>
- </StackPanel>
- </StackPanel>
- </Grid>
- </Page>
|