StudentPage.xaml 1.3 KB

1234567891011121314151617181920
  1. <Page x:Class="ProjectAnalogParus.StudentPage"
  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:ProjectAnalogParus"
  7. mc:Ignorable="d"
  8. d:DesignHeight="450" d:DesignWidth="800"
  9. Title="StudentPage">
  10. <Grid>
  11. <Button Content="Список студентов" HorizontalAlignment="Left" Margin="55,44,0,0" VerticalAlignment="Top" Width="114" Height="22" Click="OpenListStudent"/>
  12. <Button Content="Расчет стипендии" HorizontalAlignment="Left" Margin="212,44,0,0" VerticalAlignment="Top" Width="128" Height="22" Click="SummEncoragementClick"/>
  13. <Button Content="Поощрения" HorizontalAlignment="Left" Margin="55,117,0,0" VerticalAlignment="Top" Width="75" Click="OpenEncouragementPage"/>
  14. <Button Content="Детали" HorizontalAlignment="Left" Margin="587,44,0,0" VerticalAlignment="Top" Width="75" Click="OpenDetailsStudent"/>
  15. <Button Content="Начисления" HorizontalAlignment="Left" Margin="402,44,0,0" VerticalAlignment="Top" Width="95" Height="22" Click="AccrualsClick"/>
  16. </Grid>
  17. </Page>