(精华)2020年02月08日 WPF课程管理系统项目实战(首页界面-LiveCharts的使用)
【摘要】
1:首先引入第三方包
LiveCharts.Wpf
1
2:引入命名空间并使用
xmlns:lvc="clr-namespace:LiveCharts.Wpf;assembly=LiveCharts...
1:首先引入第三方包
LiveCharts.Wpf
- 1
2:引入命名空间并使用
xmlns:lvc="clr-namespace:LiveCharts.Wpf;assembly=LiveCharts.Wpf"
- 1
<Border CornerRadius="5" Background="White" Margin="10">
<Border.Effect>
<DropShadowEffect Color="#F2F2F2" ShadowDepth="10" BlurRadius="105" Opacity="0.4" Direction="270"/>
</Border.Effect>
<Grid>
<lvc:CartesianChart Margin="0,0,0,45">
<lvc:CartesianChart.Series>
<lvc:LineSeries Stroke="#FECC71" Fill="#FFF2DE"
PointGeometrySize="0"
Values="1,2,3,40,5,6,7"/>
</lvc:CartesianChart.Series>
<lvc:CartesianChart.AxisX>
<lvc:Axis ShowLabels="False"/>
</lvc:CartesianChart.AxisX>
<lvc:CartesianChart.AxisY>
<lvc:Axis ShowLabels="False" MinValue="0" MaxValue="100"/>
</lvc:CartesianChart.AxisY>
</lvc:CartesianChart>
<StackPanel Orientation="Horizontal" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="15">
<Border Width="20" Height="20" Background="#EDFAF0" CornerRadius="5">
<TextBlock Text="" FontFamily="../Assets/Fonts/#iconfont"
Foreground="#7ADA95" VerticalAlignment="Center" HorizontalAlignment="Center"/>
</Border>
<TextBlock Text="32%" VerticalAlignment="Center" Foreground="#7ADA95" Margin="5,0,0,0"/>
</StackPanel>
<StackPanel Orientation="Horizontal" VerticalAlignment="Bottom" Margin="15,3">
<Border Width="36" Height="36" Background="#FFF5E9" CornerRadius="10">
<TextBlock Text="" FontFamily="../Assets/Fonts/#iconfont"
VerticalAlignment="Center" HorizontalAlignment="Center"
FontSize="20" Foreground="#FFBC57"/>
</Border>
<StackPanel Margin="15,0,0,0">
<TextBlock Text="监控数据一" Foreground="#3F4C5D" FontSize="12"/>
<TextBlock Text="32%" FontWeight="Bold" Foreground="#3F4C5D" FontSize="16"/>
</StackPanel>
</StackPanel>
</Grid>
</Border>
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
文章来源: codeboy.blog.csdn.net,作者:愚公搬代码,版权归原作者所有,如需转载,请联系作者。
原文链接:codeboy.blog.csdn.net/article/details/113727454
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)