会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
程序员老苏
666
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
13
14
15
16
17
18
19
20
21
···
29
下一页
2019年4月2日
WPF数字滚动效果
摘要: 和WPF数字滚动抽奖有区别,WPF数字滚动抽奖是随机的,而这里是确定的。 为了系统演示,这个效果通宵加班写了整整6个小时,中间就上了次厕所。 代码: RollingNumberItemCtrl.xaml代码: <UserControl x:Class="SunCreate.Common.Contro
阅读全文
posted @ 2019-04-02 05:07 0611163
阅读(1751)
评论(20)
推荐(8)
2019年3月29日
WPF简单的分页控件实现
摘要: XAML代码(使用ItemsControl控件实现): <UserControl x:Class="SunCreate.Vipf.Client.UI.CityDoor.PageControl" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/p
阅读全文
posted @ 2019-03-29 17:39 0611163
阅读(1351)
评论(8)
推荐(2)
2019年3月23日
WPF常用样式总结
摘要: 常用控件样式: <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
阅读全文
posted @ 2019-03-23 14:20 0611163
阅读(908)
评论(0)
推荐(0)
2018年12月20日
WPF实现可视化控件打印及打印预览
摘要: 打印预览XAML代码: <controls:WindowEx x:Class="SunCreate.Vipf.Client.UI.MapPrintPreview" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xm
阅读全文
posted @ 2018-12-20 10:15 0611163
阅读(3803)
评论(0)
推荐(0)
2018年12月15日
通过了信息系统项目管理师,写个博客庆祝一下
摘要: 通过了信息系统项目管理师,写个博客庆祝一下 上午选择题成绩:46 (好悬啊) 下午案例题成绩:52 (本以为会挂,运气好) 论文题成绩:48 (向来怕论文,没想到能及格) 满分75分,三门都是45分及格
阅读全文
posted @ 2018-12-15 22:58 0611163
阅读(383)
评论(2)
推荐(0)
2018年12月13日
CefSharp.v49.0.1浏览器控件完全WPF版,实现禁止弹出新窗口,在同一窗口打开链接,并且支持带type="POST" target="_blank"的链接
摘要: 需求场景:在查询页面,填写查询条件,查询条件包括上传的图片,根据图片的特征查询,这就需要在提交的时候,使用POST提交,因为GET提交无法提交图片数据,提交查询条件之后,在新的窗口展示查询结果。(当然查询结果页面可能不支持F5刷新页面) 表单HTML代码示意(注意method="post" targ
阅读全文
posted @ 2018-12-13 18:13 0611163
阅读(1981)
评论(0)
推荐(1)
2018年12月10日
C#动态调用WebService
摘要: WebServiceHelper代码: using Microsoft.CSharp; using System; using System.CodeDom; using System.CodeDom.Compiler; using System.Collections.Generic; using
阅读全文
posted @ 2018-12-10 15:27 0611163
阅读(476)
评论(0)
推荐(0)
2018年11月22日
WPF实现窗体中的悬浮按钮
摘要: WPF实现窗体中的悬浮按钮,按钮可拖动,吸附停靠在窗体边缘。 控件XAML代码: <Button x:Class="SunCreate.Common.Controls.FloatButton" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/p
阅读全文
posted @ 2018-11-22 16:43 0611163
阅读(6351)
评论(1)
推荐(2)
2018年11月21日
Oracle树结构查询按层级排序
摘要: SQL代码: SELECT t.* FROM pt_org_info t START WITH t.id = 1 CONNECT BY t.par_id = PRIOR t.id ORDER SIBLINGS BY t.id; 效果图:
阅读全文
posted @ 2018-11-21 14:40 0611163
阅读(2800)
评论(0)
推荐(0)
WPF自定义TabControl样式
摘要: WPF自定义TabControl,TabControl美化 XAML代码: <TabControl x:Class="SunCreate.Common.Controls.TabControlEx" xmlns="http://schemas.microsoft.com/winfx/2006/xaml
阅读全文
posted @ 2018-11-21 13:50 0611163
阅读(4391)
评论(8)
推荐(4)
上一页
1
···
13
14
15
16
17
18
19
20
21
···
29
下一页
公告