123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <Page x:Class="Услуги_школы_иностранных_языков.ListServices"
- 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:Услуги_школы_иностранных_языков"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800"
- Title="ListServices">
- <Page.Resources>
- <DataTemplate x:Key="TemplateMainList">
- <Border BorderBrush="Black" BorderThickness="1" Width="800" Height="200">
- <StackPanel Orientation="Horizontal">
- <Image Source="{Binding MainImagePath}"></Image>
- <StackPanel Orientation="Vertical">
- <TextBlock Text="{Binding Title}"></TextBlock>
- <StackPanel Orientation="Horizontal">
- <TextBlock Text="{Binding Cost}"></TextBlock>
- <TextBlock Text=" рублей за "></TextBlock>
- <TextBlock Text="{Binding DurationInMinutes}"></TextBlock>
- <TextBlock Text=" минут"></TextBlock>
- </StackPanel>
- <StackPanel Orientation="Horizontal">
- <TextBlock Text="{Binding MyStringDiscount}"></TextBlock>
- </StackPanel>
- </StackPanel>
- </StackPanel>
- </Border>
- </DataTemplate>
- </Page.Resources>
- <Grid>
- <Grid.RowDefinitions>
- <RowDefinition/>
- <RowDefinition Height="4*"/>
- </Grid.RowDefinitions>
- <ListBox x:Name="ListBoxServices" ItemTemplate="{StaticResource TemplateMainList}" Grid.Row="1"></ListBox>
-
- </Grid>
- </Page>
|