123456789101112131415161718192021222324252627 |
- <Page x:Class="TamagochiProject.Pages.FeedAnimalPage"
- 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:TamagochiProject.Pages"
- mc:Ignorable="d"
- d:DesignHeight="450" d:DesignWidth="800"
- Title="FeedAnimalPage">
- <Grid>
- <StackPanel HorizontalAlignment="Center" VerticalAlignment="Center" Orientation="Vertical" Width="200">
- <ListBox Name="lbFood">
- <ListBox.ItemTemplate>
- <DataTemplate>
- <StackPanel Orientation="Horizontal" HorizontalAlignment="Center">
- <TextBlock Name="tbActivity" Width="150" Text="{Binding Food}"/>
- <TextBlock Name="tbCountFood" Text="{Binding CountSatiety}"/>
- </StackPanel>
- </DataTemplate>
- </ListBox.ItemTemplate>
- </ListBox>
- <Button Margin="0 10 0 0" Name="btnFeed" Content="Выполнить" Click="btnFeed_Click"/>
- <Button Margin="0 10 0 0" Name="btnReturn" Content="Назад" Click="btnReturn_Click"/>
- </StackPanel>
- </Grid>
- </Page>
|