20211010_CZPM_upperpc/Chen.Controls/Parameter.xaml
2023-07-27 11:01:29 +08:00

39 lines
2.4 KiB
XML

<UserControl x:Class="Chen.Controls.Parameter"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:Chen.Controls"
xmlns:lvc="clr-namespace:LiveCharts.Wpf;assembly=LiveCharts.Wpf"
mc:Ignorable="d"
d:DesignHeight="180" d:DesignWidth="320">
<Grid>
<Border CornerRadius="5" Background="White">
<Border.Effect>
<!--ShadowDepth阴影的深度 BlurRadius阴影的虚化效果 Opacity阴影的透明效果 Direction阴影的方向-->
<DropShadowEffect Color="#F2F2F2" ShadowDepth="10" BlurRadius="105" Opacity="0.4" Direction="270" />
</Border.Effect>
<Grid>
<lvc:CartesianChart Name="Chart" Margin="0,0,0,45" DisableAnimations="True" FontSize="20">
</lvc:CartesianChart>
<StackPanel Orientation="Horizontal" VerticalAlignment="Top" HorizontalAlignment="Left">
<Border Width="20" Height="20" Background="#EDFAF0" Margin="15">
<TextBlock Name="TB2" Text="&#xeb96;" FontFamily="/Assets/Fonts/#iconfont" VerticalAlignment="Center" HorizontalAlignment="Center"/>
</Border>
<TextBlock Name="Cs_Name2" VerticalAlignment="Center" HorizontalAlignment="Center" Margin="5,0,0,0"/>
</StackPanel>
<StackPanel Orientation="Horizontal" VerticalAlignment="Bottom" Margin="15,3">
<Border Width="36" Height="36" Background="#FFF5E9" CornerRadius="10">
<TextBlock Name="TB" FontFamily="/Assets/Fonts/#iconfont" VerticalAlignment="Center" HorizontalAlignment="Center" FontSize="20"/>
</Border>
<StackPanel Margin="15,0,0,0">
<TextBlock Name="Cs_Name1" Foreground="#3F4C5D" FontSize="12"/>
<TextBlock Name="_value" FontWeight="Bold" Foreground="#3F4C5D" FontSize="16"/>
</StackPanel>
</StackPanel>
</Grid>
</Border>
</Grid>
</UserControl>