OrderNew.xaml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <Page x:Class="Sessioa.Pages.OrderNew"
  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:Sessioa.Pages"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800"
  9. Title="OrderNew">
  10. <Page.Resources>
  11. <BitmapImage x:Key="defaultImage" UriSource="/Resources/picture.png"/>
  12. </Page.Resources>
  13. <Grid>
  14. <Grid.RowDefinitions>
  15. <RowDefinition/>
  16. </Grid.RowDefinitions>
  17. <Button Name="B_Back" Content="Назад" Style="{StaticResource ButtonAct}" Margin="10,0" MaxHeight="50" MinWidth="90" MaxWidth="150" Click="B_Back_Click" VerticalAlignment="Top" HorizontalAlignment="Left"/>
  18. <ListBox x:Name="LB_OrderProduct" HorizontalContentAlignment="Stretch" VerticalContentAlignment="Stretch" Margin="200,30">
  19. <ListBox.ItemTemplate>
  20. <DataTemplate>
  21. <Border BorderBrush="Black" BorderThickness="2" CornerRadius="5">
  22. <Grid>
  23. <Grid.ColumnDefinitions>
  24. <ColumnDefinition Width="0.3*"/>
  25. <ColumnDefinition Width="2*"/>
  26. </Grid.ColumnDefinitions>
  27. <StackPanel Margin="10">
  28. <TextBlock Text="{Binding OrderID, StringFormat=Заказ #{0}}" Style="{StaticResource TextBlockBold}"/>
  29. <TextBlock Name="UserOrder" Loaded="UserOrder_Loaded" Style="{StaticResource TextBlock}" Uid="{Binding User.UserID}"/>
  30. </StackPanel>
  31. <StackPanel Grid.Column="1" HorizontalAlignment="Right" Margin="15,0">
  32. <TextBlock Text="{Binding OrderDate, StringFormat=Дата создания заказа: {0:d}}" Style="{StaticResource TextBlock}" Foreground="#eb9c00" Language="ru-RU" Margin="0,0,0,10"/>
  33. <TextBlock Text="{Binding OrderDeliveryDate, StringFormat=Дата выдачи: {0:d}}" Style="{StaticResource TextBlock}" Foreground="#498C51" Language="ru-RU"/>
  34. </StackPanel>
  35. </Grid>
  36. </Border>
  37. </DataTemplate>
  38. </ListBox.ItemTemplate>
  39. </ListBox>
  40. </Grid>
  41. </Page>