ProfilePage.xaml 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <Page x:Class="MyTests.Pages.ProfilePage"
  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:MyTests.Pages"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450"
  9. d:DesignWidth="800"
  10. Title="PartInfoPage"
  11. Background="{StaticResource color1}">
  12. <Grid Background="{StaticResource color2}"
  13. Margin="10">
  14. <Grid.RowDefinitions>
  15. <RowDefinition Height="215*"/>
  16. <RowDefinition Height="173*"/>
  17. <RowDefinition Height="42*"/>
  18. </Grid.RowDefinitions>
  19. <Grid Grid.Row="0">
  20. <Grid.ColumnDefinitions>
  21. <ColumnDefinition Width="57*"/>
  22. <ColumnDefinition Width="143*"/>
  23. </Grid.ColumnDefinitions>
  24. <Image Name="PartImage"
  25. Grid.Column="0"
  26. Margin="10"
  27. Source="/MyTests;component/Resources/StandartImage.png">
  28. </Image>
  29. <Grid Grid.Column="1"
  30. Margin="10"
  31. Background="{StaticResource color3}">
  32. <Grid.RowDefinitions>
  33. <RowDefinition Height="49"/>
  34. <RowDefinition/>
  35. </Grid.RowDefinitions>
  36. <TextBox Grid.Row="0"
  37. Name="EmailBox"
  38. Text="Email"
  39. FontSize="22"
  40. Background="{x:Null}"
  41. BorderBrush="{x:Null}"
  42. MinWidth="50">
  43. </TextBox>
  44. <Label Grid.Row="1"
  45. Content="Инфо: "
  46. FontSize="22">
  47. </Label>
  48. </Grid>
  49. </Grid>
  50. <ListBox Grid.Row="1"
  51. Background="{StaticResource color3}"
  52. BorderBrush="{StaticResource color3}">
  53. </ListBox>
  54. <Grid Grid.Row="2">
  55. <StackPanel Orientation="Horizontal"
  56. HorizontalAlignment="Center">
  57. <Button Width="120"
  58. Margin="5,0,5,0"
  59. Content="Назад"
  60. FontSize="20"
  61. Click="BackButton">
  62. </Button>
  63. <Button Width="120"
  64. Margin="5,0,5,0"
  65. Content="Сохранить"
  66. FontSize="20"
  67. Click="SaveButton">
  68. </Button>
  69. </StackPanel>
  70. </Grid>
  71. </Grid>
  72. </Page>