摘要: 属性: RadianStart:开始弧度,默认值-90,即从最上面开始顺时针画。 Radian:弧度,默认值0。 IsSector:是否扇形,默认值False,默认是弧形。 IsAutoAnimate:是否自动使用动画,默认值False,若为True,则RadianStart和Radian的值变化时 阅读全文
posted @ 2021-07-14 10:10 孤独成派 阅读(1499) 评论(4) 推荐(2) 编辑
摘要: OpenXml源码test目录下有大量参考例子,有时间的同学可以结合例子和官方文档深入研究,本人也只是学到能解决项目需求的程度。 一、首先讲一下如何设置单元格格式,与CellFormat这个类相关,下图的属性都可以设置: 先贴出初始化Excel文档的代码,后续提到的方法在里面查找: using Do 阅读全文
posted @ 2021-07-05 11:36 孤独成派 阅读(3897) 评论(1) 推荐(0) 编辑
摘要: 演示效果: 有两个分页控件可供选择,第一种是通用分页控件Pager,输入总条数和页面大小,监听PageIndexChanged事件手动刷新数据;第二种是自动分页控件ListPager,输入数据源和页面大小,自动输出显示的数据,相比第一种页面信息等数据,前提是先拿到全部数据; 一、通用分页控件Page 阅读全文
posted @ 2021-05-06 18:07 孤独成派 阅读(703) 评论(0) 推荐(1) 编辑
摘要: 效果图: Xaml文件: <DockPanel Margin="10"> <WrapPanel DockPanel.Dock="Top" Margin="10"> <DockPanel Margin="6"> <TextBlock VerticalAlignment="Center">滚动条样式:< 阅读全文
posted @ 2021-03-17 12:14 孤独成派 阅读(550) 评论(0) 推荐(0) 编辑
摘要: 效果图: 鼠标拖动选择ListBoxItem的单独演示: 使用方式:修改ListBox模板,使用自定义面板ListBoxDragSelectViewer替代ScrollViewer;ListBoxDragSelectViewer里面封装了ScrollViewer; <ControlTemplate 阅读全文
posted @ 2021-01-19 17:48 孤独成派 阅读(846) 评论(0) 推荐(2) 编辑
摘要: 效果图: 效果图代码: <pp:CornerClip xmlns:pp="https://www.cnblogs.com/pumbaa" Margin="6" CornerRadius="20"> <Rectangle Fill="{DynamicResource PP.Brushes.Themes 阅读全文
posted @ 2021-01-19 17:09 孤独成派 阅读(2149) 评论(2) 推荐(2) 编辑
摘要: 控件已封装在自己写的控件库:https://github.com/LowPlayer/PP.Wpf RunningText:滚动文字,支持一下属性: Text:显示的文本; Space:首尾间距,负值或NaN时,首尾间距为整个容器宽度; Speed:滚动速度; Direction:滚动方向,支持四个 阅读全文
posted @ 2021-01-19 16:52 孤独成派 阅读(4613) 评论(14) 推荐(4) 编辑
摘要: 官方文档:https://docs.microsoft.com/zh-cn/windows/win32/directshow/directshow 创建CLR类库项目(CSharpDirectShow),编写托管的DirectShow类库,右键项目属性-->链接器--> 输入-->附加依赖项;添加静 阅读全文
posted @ 2021-01-09 17:56 孤独成派 阅读(840) 评论(0) 推荐(0) 编辑
摘要: 添加Nuget引用:Accord.Video.FFMPEG、Accord.Video.DirectShow; 发现电脑的视频采集设备,及获取视频采集设备的采集参数: /// <summary> /// 枚举视频设备 /// </summary> /// <returns></returns> pub 阅读全文
posted @ 2021-01-08 18:04 孤独成派 阅读(3409) 评论(2) 推荐(2) 编辑
摘要: 使用第三方开源库iText7.pdfHtml,将html和css转成pdf,官方:https://itextpdf.com/en/demos/convert-html-css-to-pdf-free-online; 官方示例: using System.IO; using iText.Html2pd 阅读全文
posted @ 2020-12-17 16:40 孤独成派 阅读(2126) 评论(0) 推荐(1) 编辑