1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <Window x:Class="HotelCalifornia.Variant"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
- xmlns:local="clr-namespace:HotelCalifornia"
- mc:Ignorable="d"
- Title="Variant" Height="450" Width="800" WindowStartupLocation="CenterScreen" ResizeMode="NoResize" WindowStyle="None" Icon="image/h1.png">
- <Grid>
- <Grid.Background>
- <LinearGradientBrush StartPoint="0.1,0" EndPoint="0.9,1">
- <GradientStop Color="#7E42F5" Offset="1" />
- <GradientStop Color="#383E7A" Offset="0"/>
- </LinearGradientBrush>
- </Grid.Background>
- <Label Content="Выберите нужную функцию" Foreground="White" FontSize="35" FontFamily="Century Gothic" HorizontalAlignment="Center" Margin="148,54,148,336.6"/>
- <Label Content="Комнаты" Foreground="White" FontSize="20" FontFamily="Century Gothic" HorizontalAlignment="Center" Margin="100,272,604,143.6"/>
- <Label Content="Работники" Foreground="White" FontSize="20" FontFamily="Century Gothic" HorizontalAlignment="Center" Margin="266,272,418,143.6" Width="116"/>
- <Label Content="Клиенты" Foreground="White" FontSize="20" FontFamily="Century Gothic" HorizontalAlignment="Center" Margin="454,272,253,143.6" Width="93"/>
- <Label Content="Резервирование" Foreground="White" FontSize="20" FontFamily="Century Gothic" HorizontalAlignment="Center" Margin="586,272,33,143.6" Width="181"/>
- <StackPanel Orientation="Horizontal" Margin="0,172,0,159.6" HorizontalAlignment="Center" VerticalAlignment="Center" Width="800" Height="118">
- <Button
- Style="{StaticResource MaterialDesignFloatingActionLightButton}" Margin="120,0,0,0">
- <materialDesign:PackIcon
- Kind="Door"
- Height="35"
- Width="35" />
- </Button>
- <Button
- Style="{StaticResource MaterialDesignFloatingActionLightButton}" Margin="120,0,0,0">
- <materialDesign:PackIcon
- Kind="Work"
- Height="35"
- Width="35" />
- </Button>
- <Button
- Style="{StaticResource MaterialDesignFloatingActionLightButton}" Margin="120,0,0,0">
- <materialDesign:PackIcon
- Kind="user"
- Height="35"
- Width="35" />
- </Button>
- <Button
- Style="{StaticResource MaterialDesignFloatingActionLightButton}" Margin="120,0,0,0">
- <materialDesign:PackIcon
- Kind="BagSuitcase"
- Height="35"
- Width="35" />
- </Button>
- </StackPanel>
- <Button
- Style="{StaticResource MaterialDesignIconButton}"
- ToolTip="Выход из приложения" Margin="742,10,10,391.6" Click="Close">
- <materialDesign:PackIcon
- Kind="ExitToApp" Foreground="White"/>
- </Button>
- </Grid>
- </Window>
|