上一页 1 ··· 8 9 10 11 12 13 14 下一页
摘要: 参考:https://www.cnblogs.com/tianciliangen/p/5303049.html 阅读全文
posted @ 2021-06-05 20:12 microsoft-zhcn 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 关于NotifyIcon1、创建全局对象2、未登录时图标3、正在登录图标4、登录成功图标5、收到消息心态图标6、图标右键菜单7、单击/双击图标事件 1、创建全局对象 public class Globle { public static void Init() { NotifyIconInit(); 阅读全文
posted @ 2021-06-04 17:02 microsoft-zhcn 阅读(318) 评论(0) 推荐(0) 编辑
摘要: 属性名 属性类名 功能 Style Style 定义控件自身的样式,可包含(ItemContainerStyle、Template、ItemsPanel、ItemTemplate、ItemsPresenter) ItemContainerStyle Style 每个集合控件的Item的样式,可包含( 阅读全文
posted @ 2021-06-03 10:25 microsoft-zhcn 阅读(654) 评论(0) 推荐(0) 编辑
摘要: WPF Brush 参考:https://www.cnblogs.com/xietianjiao/p/7640858.html 阅读全文
posted @ 2021-05-30 17:02 microsoft-zhcn 阅读(40) 评论(0) 推荐(0) 编辑
摘要: WPF Effect 造成的字体模糊,有时候使用不恰当,容易出现各种字体模糊。 例如: XAML 代码: <StackPanel Orientation="Horizontal"> <Border Width="200" Height="100" Background="#5Eb978"> <Bor 阅读全文
posted @ 2021-05-30 17:00 microsoft-zhcn 阅读(443) 评论(0) 推荐(0) 编辑
摘要: 参考:https://blog.csdn.net/zxlstudio/article/details/11561571 阅读全文
posted @ 2021-05-29 13:22 microsoft-zhcn 阅读(94) 评论(0) 推荐(0) 编辑
摘要: WPF ToolTip 参考:https://www.cnblogs.com/hsiang/p/17927272.html 阅读全文
posted @ 2021-05-29 13:16 microsoft-zhcn 阅读(37) 评论(0) 推荐(0) 编辑
摘要: 参考:https://docs.microsoft.com/zh-cn/dotnet/api/system.windows.controls?view=net-5.0 阅读全文
posted @ 2021-05-28 18:36 microsoft-zhcn 阅读(204) 评论(0) 推荐(0) 编辑
摘要: WPF中使用TextBlock的Inlines属性来完成复杂的文字内容 参考:https://blog.csdn.net/zhangjiyehandsom/article/details/5498845 1、WPF TextBlock文子超出在最后加上省略号 加上这个属性:TextTrimming= 阅读全文
posted @ 2021-05-28 18:10 microsoft-zhcn 阅读(319) 评论(0) 推荐(0) 编辑
摘要: WPF ListView 参考:https://www.cnblogs.com/tommy-huang/p/4984624.html https://www.cnblogs.com/xiao-bei/p/4549320.html <Style TargetType="{x:Type GridView 阅读全文
posted @ 2021-05-28 17:59 microsoft-zhcn 阅读(91) 评论(0) 推荐(0) 编辑
摘要: WPF ProgressBar 参考:https://www.cnblogs.com/tommy-huang/p/4610330.html 圆形进度条: 参考:https://www.cnblogs.com/dipwater/p/4011553.html https://www.cnblogs.co 阅读全文
posted @ 2021-05-28 17:54 microsoft-zhcn 阅读(73) 评论(0) 推荐(0) 编辑
摘要: 默认弹出当前日期 <HeaderedContentControl Header="默认弹出当前日期"> <StackPanel> <DatePicker/> </StackPanel> </HeaderedContentControl> 默认弹出指定日期 <HeaderedContentContro 阅读全文
posted @ 2021-05-28 17:53 microsoft-zhcn 阅读(58) 评论(0) 推荐(0) 编辑
摘要: WPF 布局 参考:https://www.cnblogs.com/tommy-huang/p/4609646.html https://www.cnblogs.com/niyw/archive/2010/10/31/1863908.html WPF 实现阴影效果 https://blog.csdn 阅读全文
posted @ 2021-05-28 17:52 microsoft-zhcn 阅读(26) 评论(0) 推荐(0) 编辑
摘要: 1、WPF点击空白区域,文本失去焦点1)默认 2)进入焦点 3、点击空白区域,文本失去焦点 MouseDown += (s, e) => { txtTitle.MoveFocus(new TraversalRequest(FocusNavigationDirection.Next)); }; 让页面 阅读全文
posted @ 2021-05-28 17:29 microsoft-zhcn 阅读(585) 评论(0) 推荐(0) 编辑
摘要: WPF ComboBox,可编辑 <Window ...> <Window.Resources> <!--ToggleButton 样式--> <ControlTemplate x:Key="LoginComboBoxToggleButton" TargetType="ToggleButton"> 阅读全文
posted @ 2021-05-28 17:23 microsoft-zhcn 阅读(958) 评论(0) 推荐(0) 编辑
摘要: WPF RadioButton 单选框 参考:https://www.cnblogs.com/Leozi/p/10798576.html 参考:https://www.cnblogs.com/xpvincent/p/10267320.html WPF中RadioButton绑定数据的正确方法 参考: 阅读全文
posted @ 2021-05-28 17:21 microsoft-zhcn 阅读(64) 评论(0) 推荐(0) 编辑
摘要: Thumb 类,表示可由用户拖动的控件。其主要三个事件分别DragDelta,DragStarted,DragCompleted。 DragDelta —— 当 Thumb 控件具有逻辑焦点和鼠标捕获时,随着鼠标位置更改发生一次或多次。 DragStarted —— 在 Thumb 控件接收逻辑焦点 阅读全文
posted @ 2021-05-28 17:16 microsoft-zhcn 阅读(1345) 评论(0) 推荐(0) 编辑
摘要: 后台设置Image的Souce 方法一: BitmapImage imgSource = new BitmapImage(new Uri("location",UriKind.Relative)); Image image = new Image(); image.Souce = imgSource 阅读全文
posted @ 2021-05-28 17:12 microsoft-zhcn 阅读(408) 评论(0) 推荐(0) 编辑
摘要: WPF DoubleAnimation 参考:https://blog.csdn.net/nodeman/article/details/80842280 WPF在XAML中实现持续动画的暂停、恢复、停止 参考:https://www.cnblogs.com/tommy-huang/p/649674 阅读全文
posted @ 2021-05-28 17:10 microsoft-zhcn 阅读(256) 评论(0) 推荐(0) 编辑
摘要: 源码下载:PrismCore.zip 安装程序包Prism.DryIoc 设置模块 regionManager.Regions["LoginRegion"].RequestNavigate(obj); 无参数导航 regionManager.RequestNavigate("LoginRegion" 阅读全文
posted @ 2021-05-28 16:46 microsoft-zhcn 阅读(150) 评论(0) 推荐(0) 编辑
摘要: <Canvas Height="200"> <Border Canvas.Left="10" Canvas.Top="10" Background="#ccc"> <TextBlock Text="(10,10)"/> </Border> <Border Canvas.Left="120" Canv 阅读全文
posted @ 2021-05-28 16:33 microsoft-zhcn 阅读(125) 评论(0) 推荐(0) 编辑
摘要: WPF TemplateBinding 阅读全文
posted @ 2021-05-28 16:32 microsoft-zhcn 阅读(79) 评论(0) 推荐(0) 编辑
摘要: WPF Binding WPF中一个控件绑定另一个控件的属性 参考: https://www.cnblogs.com/tommy-huang/p/6516093.html https://www.cnblogs.com/xieyong_198510/p/3437217.html 绑定模板控件 <Se 阅读全文
posted @ 2021-05-28 16:31 microsoft-zhcn 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 参考: https://www.cnblogs.com/callyblog/p/8044963.html https://www.cnblogs.com/zhoujg/archive/2009/12/04/1616713.html <Window.Resources> <!-- 启用虚拟化 --> 阅读全文
posted @ 2021-05-28 16:30 microsoft-zhcn 阅读(253) 评论(0) 推荐(0) 编辑
摘要: 参考:https://www.cnblogs.com/MyWPF/p/14734681.html 阅读全文
posted @ 2021-05-28 16:25 microsoft-zhcn 阅读(72) 评论(0) 推荐(0) 编辑
摘要: 一、ContextMenu 如图,基本样式结构 <Style TargetType="{x:Type ContextMenu}"> <Setter Property="Template"> <Setter.Value> <ControlTemplate TargetType="{x:Type Con 阅读全文
posted @ 2021-05-28 16:20 microsoft-zhcn 阅读(2093) 评论(0) 推荐(0) 编辑
摘要: 此图片为Base64字符串,如何做到的呢?以下内容将介绍实现步骤; 1、创建Base64字符串转换器: public class Base64ToImage : IValueConverter { public object Convert(object value, Type targetType 阅读全文
posted @ 2021-05-28 16:17 microsoft-zhcn 阅读(1853) 评论(0) 推荐(0) 编辑
摘要: WPF PasswordBox 参考:https://blog.csdn.net/candy_zkn/article/details/9383007 WPF 将TextBox更改为PasswordBox样式(文字显示方式为密码) 参考:https://www.cnblogs.com/callyblo 阅读全文
posted @ 2021-05-28 16:14 microsoft-zhcn 阅读(159) 评论(0) 推荐(0) 编辑
摘要: WPF path - WPF 使用 SVG 参考:https://blog.csdn.net/badxnui/article/details/111529265 阅读全文
posted @ 2021-05-28 16:11 microsoft-zhcn 阅读(515) 评论(0) 推荐(0) 编辑
摘要: WPF pack uri 参考:https://www.cnblogs.com/denghejun/p/3794670.html 阅读全文
posted @ 2021-05-28 16:09 microsoft-zhcn 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 使用参考: https://www.cnblogs.com/lindexi/p/12932701.html https://www.cnblogs.com/hicolin/p/8804722.html 阅读全文
posted @ 2021-05-28 16:08 microsoft-zhcn 阅读(63) 评论(0) 推荐(0) 编辑
摘要: WPF Hyperlink 参考:https://www.cnblogs.com/dino623/p/WPF_HyperlinkButton.html 阅读全文
posted @ 2021-05-28 16:02 microsoft-zhcn 阅读(56) 评论(0) 推荐(0) 编辑
摘要: WPF Template、ControlTemplate、ContentTemplate、DataTemplate、ContentControl 参考:https://www.cnblogs.com/tommy-huang/p/5911140.html 阅读全文
posted @ 2021-05-28 16:00 microsoft-zhcn 阅读(179) 评论(0) 推荐(0) 编辑
摘要: WPF ContentPresenter 参考:https://www.cnblogs.com/MyWPF/p/14262883.html 阅读全文
posted @ 2021-05-28 15:58 microsoft-zhcn 阅读(200) 评论(0) 推荐(0) 编辑
摘要: 一、标准Window 二、WindowChrome的基本概念 若要自定义窗口,同时保留其标准功能,可以使用WindowChrome类。 WindowChrome类窗口框架的功能分离开来视觉对象,并允许您控制的客户端和应用程序窗口的非工作区之间的边界。 <WindowChrome.WindowChro 阅读全文
posted @ 2021-05-28 15:41 microsoft-zhcn 阅读(620) 评论(0) 推荐(1) 编辑
摘要: 一、WPF TabControl 数据绑定 WPF TabItem绑定 参考:http://cn.voidcc.com/question/p-qqyuxlvm-ex.html WPF如何绑定tabitem与列表 参考:http://cn.voidcc.com/question/p-faompnxo- 阅读全文
posted @ 2021-05-28 15:39 microsoft-zhcn 阅读(895) 评论(0) 推荐(0) 编辑
摘要: WPF Button 控件 一、WPF Button 添加图片 <Button> <Button.Content> <Image Stretch="Fill" Source="pack://application:,,,/程序集;component/images/demo.png"/> </Butt 阅读全文
posted @ 2021-05-28 15:32 microsoft-zhcn 阅读(446) 评论(0) 推荐(0) 编辑
摘要: 参考:https://www.cnblogs.com/xinyf/p/10148515.html 阅读全文
posted @ 2021-05-28 10:59 microsoft-zhcn 阅读(99) 评论(0) 推荐(0) 编辑
摘要: 参考:WPF 开源gif控件WpfAnimatedGif的使用方法 https://www.cnblogs.com/liunlls/p/wpf-gif.html https://blog.csdn.net/xinlingjun2007/article/details/80833378 阅读全文
posted @ 2021-05-28 10:57 microsoft-zhcn 阅读(190) 评论(0) 推荐(0) 编辑
摘要: WPF开发微信二、微信登录界面 登录界面 尺寸: 外围:318 X 438 可视化:280 X400 登录按钮:140X 38 文本框:* X 28 设置按钮:56 X 28 颜色: 登录按钮背景色:#1aad19 鼠标经过背景色:#129611 账户文字前色:#878787文字前色:#436895 阅读全文
posted @ 2021-05-28 09:19 microsoft-zhcn 阅读(854) 评论(0) 推荐(0) 编辑
上一页 1 ··· 8 9 10 11 12 13 14 下一页