11 2018 档案

摘要: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 阅读(6298) 评论(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 阅读(2793) 评论(0) 推荐(0)
摘要: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 阅读(4378) 评论(8) 推荐(4)
摘要:资源文件代码: <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"> 阅读全文
posted @ 2018-11-21 13:41 0611163 阅读(5907) 评论(5) 推荐(2)