Variant.xaml 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. <Window x:Class="HotelCalifornia.Variant"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
  5. xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
  6. xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
  7. xmlns:local="clr-namespace:HotelCalifornia"
  8. mc:Ignorable="d"
  9. Title="Variant" Height="450" Width="800" WindowStartupLocation="CenterScreen" ResizeMode="NoResize" WindowStyle="None" Icon="image/h1.png">
  10. <Grid>
  11. <Grid.Background>
  12. <LinearGradientBrush StartPoint="0.1,0" EndPoint="0.9,1">
  13. <GradientStop Color="#7E42F5" Offset="1" />
  14. <GradientStop Color="#383E7A" Offset="0"/>
  15. </LinearGradientBrush>
  16. </Grid.Background>
  17. <Label Content="Выберите нужную функцию" Foreground="White" FontSize="35" FontFamily="Century Gothic" HorizontalAlignment="Center" Margin="148,54,148,336.6"/>
  18. <Label Content="Комнаты" Foreground="White" FontSize="20" FontFamily="Century Gothic" HorizontalAlignment="Center" Margin="100,272,604,143.6"/>
  19. <Label Content="Работники" Foreground="White" FontSize="20" FontFamily="Century Gothic" HorizontalAlignment="Center" Margin="266,272,418,143.6" Width="116"/>
  20. <Label Content="Клиенты" Foreground="White" FontSize="20" FontFamily="Century Gothic" HorizontalAlignment="Center" Margin="454,272,253,143.6" Width="93"/>
  21. <Label Content="Резервирование" Foreground="White" FontSize="20" FontFamily="Century Gothic" HorizontalAlignment="Center" Margin="586,272,33,143.6" Width="181"/>
  22. <StackPanel Orientation="Horizontal" Margin="0,172,0,159.6" HorizontalAlignment="Center" VerticalAlignment="Center" Width="800" Height="118">
  23. <Button
  24. Style="{StaticResource MaterialDesignFloatingActionLightButton}" Margin="120,0,0,0">
  25. <materialDesign:PackIcon
  26. Kind="Door"
  27. Height="35"
  28. Width="35" />
  29. </Button>
  30. <Button
  31. Style="{StaticResource MaterialDesignFloatingActionLightButton}" Margin="120,0,0,0">
  32. <materialDesign:PackIcon
  33. Kind="Work"
  34. Height="35"
  35. Width="35" />
  36. </Button>
  37. <Button
  38. Style="{StaticResource MaterialDesignFloatingActionLightButton}" Margin="120,0,0,0">
  39. <materialDesign:PackIcon
  40. Kind="user"
  41. Height="35"
  42. Width="35" />
  43. </Button>
  44. <Button
  45. Style="{StaticResource MaterialDesignFloatingActionLightButton}" Margin="120,0,0,0">
  46. <materialDesign:PackIcon
  47. Kind="BagSuitcase"
  48. Height="35"
  49. Width="35" />
  50. </Button>
  51. </StackPanel>
  52. <Button
  53. Style="{StaticResource MaterialDesignIconButton}"
  54. ToolTip="Выход из приложения" Margin="742,10,10,391.6" Click="Close">
  55. <materialDesign:PackIcon
  56. Kind="ExitToApp" Foreground="White"/>
  57. </Button>
  58. </Grid>
  59. </Window>