ProfilePage.xaml 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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. <!--MouseDown="Img_MouseDown"-->
  29. </Image>
  30. <Grid Grid.Column="1"
  31. Margin="10"
  32. Background="{StaticResource color3}">
  33. <Grid.RowDefinitions>
  34. <RowDefinition Height="49"/>
  35. <RowDefinition/>
  36. </Grid.RowDefinitions>
  37. <TextBox Grid.Row="0"
  38. Name="EmailBox"
  39. Text="Email"
  40. FontSize="22"
  41. Background="{x:Null}"
  42. BorderBrush="{x:Null}"
  43. MinWidth="50">
  44. </TextBox>
  45. <Label Grid.Row="1"
  46. Content="Инфо: "
  47. FontSize="22">
  48. </Label>
  49. </Grid>
  50. </Grid>
  51. <ListBox Grid.Row="1"
  52. Background="{StaticResource color3}"
  53. BorderBrush="{StaticResource color3}">
  54. </ListBox>
  55. <Grid Grid.Row="2">
  56. <StackPanel Orientation="Horizontal"
  57. HorizontalAlignment="Center">
  58. <Button Width="120"
  59. Margin="5,0,5,0"
  60. Content="Назад"
  61. FontSize="20"
  62. Click="BackButton">
  63. </Button>
  64. <Button Width="120"
  65. Margin="5,0,5,0"
  66. Content="Сохранить"
  67. FontSize="20"
  68. Click="SaveButton">
  69. </Button>
  70. </StackPanel>
  71. </Grid>
  72. </Grid>
  73. </Page>