弹来弹去跑马灯!

上一页 1 2 3 4 5 6 7 8 9 10 ··· 36 下一页
摘要: .C# Task.WhenAll 有时候我们需要同时执行一些操作,然后把这些操作的结果进行汇总,以达到用异步处理降低操作耗时的效果,此时我们会考虑使用Task,而Task.WhenAll则排上了用场。 async void TestTaskWhenAll() { var total =10; Tas 阅读全文
posted @ 2022-03-22 11:38 wgscd 阅读(426) 评论(0) 推荐(0) 编辑
摘要: 准备软件: 1.Ps cs4 2.QuickTime Player 7.74 开始: 1. 2.弹出文件选择框,但是发现不能选择GIF格式。 3.没关系,在文件名框输入*.*回车,就发现可以选择GIF了 4.载入GIF图片,直接点确定 5.选择如下图菜单 6.设置格式为GIF ,并勾上透明色 7.最 阅读全文
posted @ 2022-03-21 09:25 wgscd 阅读(1580) 评论(0) 推荐(0) 编辑
摘要: <Window x:Class="WpfApp1.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/200 阅读全文
posted @ 2022-03-17 22:51 wgscd 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 微软的Edge 浏览器里的大声朗读里-“晓晓” 很接近自然人,比起其它平台的强很多。 在AZURE 可免费体验,每月限额50万字,每个语音转换不超过10分钟长度。 C# 调用: using System; using System.Collections.Generic; using System. 阅读全文
posted @ 2022-02-13 13:38 wgscd 阅读(2250) 评论(0) 推荐(0) 编辑
摘要: The error you are getting is usually a sign that you have not set abortConnect=false in your connection string. The default value for abortConnect is  阅读全文
posted @ 2022-01-18 15:03 wgscd 阅读(1918) 评论(0) 推荐(0) 编辑
摘要: 这个是需要证书导致无法连接,临时解决办法是设置 npm set strict-ssl=false 在 Dockerfile文件里的 RUN npm install 之前添加 RUN npm set strict-ssl=false FROM node:12 # Create app director 阅读全文
posted @ 2021-11-24 10:47 wgscd 阅读(1680) 评论(0) 推荐(0) 编辑
摘要: <Window x:Class="TestWPF.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/200 阅读全文
posted @ 2021-11-16 14:42 wgscd 阅读(32) 评论(0) 推荐(0) 编辑
摘要: using Newtonsoft.Json; using System; using System.Collections.Generic; using System.IO; using System.Linq; using System.Net; using System.Text; using 阅读全文
posted @ 2021-10-21 15:05 wgscd 阅读(255) 评论(1) 推荐(0) 编辑
摘要: WindowsCommunityToolkit: https://github.com/CommunityToolkit/WindowsCommunityToolkit You can also preview the capabilities of the toolkit by downloadi 阅读全文
posted @ 2021-09-29 15:17 wgscd 阅读(93) 评论(0) 推荐(0) 编辑
摘要: 加个属性: btn.SetValue(Stylus.IsPressAndHoldEnabledProperty,false); 或者在样式里设置: <Style x:Key="MyButtonStyle" TargetType="{x:Type Button}"> <Setter Property= 阅读全文
posted @ 2021-09-23 10:48 wgscd 阅读(90) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 36 下一页