design: 에너지, 온실가스 화면 레이아웃

hhsung_work
HyungJune Kim 10 months ago
parent 3ac0255008
commit d6391fbbc5

@ -5,12 +5,37 @@
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:SmartAquaViewer.View" xmlns:local="clr-namespace:SmartAquaViewer.View"
mc:Ignorable="d" mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800"> d:DesignHeight="940" d:DesignWidth="1650">
<Grid> <Grid Background="#243851">
<TextBlock Text="Energy View" <Grid.RowDefinitions>
FontSize="24" FontWeight="Bold" <RowDefinition Height="160"/>
HorizontalAlignment="Center" <RowDefinition Height="*"/>
VerticalAlignment="Center" <RowDefinition Height="*"/>
Foreground="Black"/> </Grid.RowDefinitions>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="650"/>
</Grid.ColumnDefinitions>
<Border Grid.ColumnSpan="2" Margin="20" BorderBrush="#3E4C60" BorderThickness="1" CornerRadius="10">
<Border.Background>
<ImageBrush ImageSource="/Resources/Images/top_bg.png" Stretch="Fill"/>
</Border.Background>
</Border>
<Grid Grid.Row="1" Grid.RowSpan="2" Margin="20 0 20 20">
</Grid>
<Border Grid.Row="1" Grid.Column="1" Margin="0 0 20 20" CornerRadius="10"
Background="#384659" BorderBrush="#404F63" BorderThickness="1">
</Border>
<Border Grid.Row="2" Grid.Column="1" Margin="0 0 20 20" CornerRadius="10"
Background="#384659" BorderBrush="#404F63" BorderThickness="1">
</Border>
</Grid> </Grid>
</UserControl> </UserControl>

@ -5,12 +5,29 @@
xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:SmartAquaViewer.View" xmlns:local="clr-namespace:SmartAquaViewer.View"
mc:Ignorable="d" mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800"> d:DesignHeight="940" d:DesignWidth="1650">
<Grid> <Grid Background="#243851">
<TextBlock Text="Green House View" <Grid.RowDefinitions>
FontSize="24" FontWeight="Bold" <RowDefinition Height="*"/>
HorizontalAlignment="Center" <RowDefinition Height="*"/>
VerticalAlignment="Center" </Grid.RowDefinitions>
Foreground="Black"/> <Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="650"/>
</Grid.ColumnDefinitions>
<Grid Grid.RowSpan="2" Margin="20">
</Grid>
<Border Grid.Row="0" Grid.Column="1" Margin="0 20 20 20" CornerRadius="10"
Background="#384659" BorderBrush="#404F63" BorderThickness="1">
</Border>
<Border Grid.Row="1" Grid.Column="1" Margin="0 0 20 20" CornerRadius="10"
Background="#384659" BorderBrush="#404F63" BorderThickness="1">
</Border>
</Grid> </Grid>
</UserControl> </UserControl>

Loading…
Cancel
Save