上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 27 下一页
摘要: 效果图: ActiveFunItem.xaml代码: <UserControl x:Class="SunCreate.Vipf.Client.UI.ActiveFunItem" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentat 阅读全文
posted @ 2019-04-12 10:21 0611163 阅读(1235) 评论(0) 推荐(1) 编辑
摘要: 和WPF数字滚动抽奖有区别,WPF数字滚动抽奖是随机的,而这里是确定的。 为了系统演示,这个效果通宵加班写了整整6个小时,中间就上了次厕所。 代码: RollingNumberItemCtrl.xaml代码: <UserControl x:Class="SunCreate.Common.Contro 阅读全文
posted @ 2019-04-02 05:07 0611163 阅读(1622) 评论(20) 推荐(7) 编辑
摘要: 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 阅读(1311) 评论(8) 推荐(2) 编辑
摘要: 常用控件样式: <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 阅读(865) 评论(0) 推荐(0) 编辑
摘要: 打印预览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 阅读(3635) 评论(0) 推荐(0) 编辑
摘要: 通过了信息系统项目管理师,写个博客庆祝一下 上午选择题成绩:46 (好悬啊) 下午案例题成绩:52 (本以为会挂,运气好) 论文题成绩:48 (向来怕论文,没想到能及格) 满分75分,三门都是45分及格 阅读全文
posted @ 2018-12-15 22:58 0611163 阅读(373) 评论(2) 推荐(0) 编辑
摘要: 需求场景:在查询页面,填写查询条件,查询条件包括上传的图片,根据图片的特征查询,这就需要在提交的时候,使用POST提交,因为GET提交无法提交图片数据,提交查询条件之后,在新的窗口展示查询结果。(当然查询结果页面可能不支持F5刷新页面) 表单HTML代码示意(注意method="post" targ 阅读全文
posted @ 2018-12-13 18:13 0611163 阅读(1861) 评论(0) 推荐(1) 编辑
摘要: 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 阅读(458) 评论(0) 推荐(0) 编辑
摘要: 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 阅读(5993) 评论(1) 推荐(2) 编辑
摘要: 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 阅读(2781) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 27 下一页