摘要: 首先,创建一个用户控件实现动画Loading的功能: <UserControl x:Class="K.Controls.Controls.LoadingControl" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 阅读全文
posted @ 2023-09-08 19:09 潇潇烟雨 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 首先需要有一个Loading的图片,(白色背景,白色小圆圈,所以显示看不到): 创建一个用户控件,实现动画的功能: <UserControl x:Class="K.Controls.Controls.LoadingImage" xmlns="http://schemas.microsoft.com/ 阅读全文
posted @ 2023-09-08 18:56 潇潇烟雨 阅读(260) 评论(0) 推荐(0) 编辑
摘要: xmal文件中,写入对应转义符可以实现对应功能 字符 转义字符 & & > > < < " " ’ ' { {}{ 回车 &#x000D;或者&#13; 换行 &#x000A;或者&#10; Tab &#x0009;或者&#9; 空格 &#x0020;或者&#32; 如: <Border Corne 阅读全文
posted @ 2023-08-31 17:59 潇潇烟雨 阅读(18) 评论(0) 推荐(0) 编辑
摘要: 消除Run之前的空白是将Run标签布局时头尾相连,如下: <TextBlock > <Run Text="A"></Run> <Run Text="B"></Run> </TextBlock> 消除Run之间连接的空白格式,方式如下: <TextBlock > <Run Text="A"></Run 阅读全文
posted @ 2023-08-29 18:09 潇潇烟雨 阅读(37) 评论(0) 推荐(0) 编辑
摘要: How to close parent windows using WPF User Control 如何使用 WPF 用户控件关闭父窗口 【问题描述】 假设有两个WPF窗口:window1和window2。 window1有一个按钮,单击此按钮将打开window2。window2包含一个用户控件。 阅读全文
posted @ 2023-07-28 16:08 潇潇烟雨 阅读(512) 评论(0) 推荐(0) 编辑
摘要: C# 启动、关闭windows系统某个进程 private Dictionary<string, string> ServiceList = new Dictionary<string, string>();//服务文件对应服务名称 public void Init(){ ServiceList.A 阅读全文
posted @ 2023-07-15 10:03 潇潇烟雨 阅读(287) 评论(0) 推荐(0) 编辑
摘要: 学计算机的同学一定对虚拟机不陌生,很多用户还有在虚拟机上进行一下操作来完成自己的工作。很多小伙伴想要了解虚拟机怎么安装windows10,那么虚拟机安装windows10怎么操作? 虚拟机安装windows10的详细教程: 1、打开虚拟机,点击文件选择新建虚拟机。(首先我们准备下载一个WIN10系统 阅读全文
posted @ 2023-03-11 17:20 潇潇烟雨 阅读(885) 评论(0) 推荐(0) 编辑
摘要: 1、 PLSQL介绍我们常说的plsql指的是plsqldeveloper 这个oracle数据库客户端连接工具,这个工具以其方便和强大被广大开发者喜爱。这个工具是由allroundautomations公司开发,他的官网是https://www.allroundautomations.com/ 。 阅读全文
posted @ 2023-03-11 16:32 潇潇烟雨 阅读(4974) 评论(0) 推荐(0) 编辑
摘要: Oracle数据库中没有SCOTT用户解决办法: 一.问题出现 1.新装好oracle-11G先连接管理员账户 2.然后切换到Scott账户 每当这时候对于我这种新手来说头就有点大,怎么解决呢!不要紧张其实不难! 二.解决问题 1.出现上面问题是因为scott账户不存在数据库会自动断开连接,我们现在 阅读全文
posted @ 2023-03-11 16:13 潇潇烟雨 阅读(240) 评论(0) 推荐(0) 编辑
摘要: 一、第一种 Dictionary<string, object> dicJson = JsonConvert.DeserializeObject<Dictionary<string, object>>(要解析的字符串); string dicData = dicJson[类的属性字符串].ToStr 阅读全文
posted @ 2022-08-02 13:46 潇潇烟雨 阅读(8098) 评论(0) 推荐(0) 编辑