上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 36 下一页
摘要: 一、MWC开源飞控固件: 程序开源,但是并不简单。它里面的内容不单单针对四旋翼,而是涵盖了小型无人机中几乎所有的内容,四轴,八轴,直升机,阿凡达等等。 MWC固件是用Arduino IDE来编写,支持Arduino发布的几种主要的AVR开发板Pro Mini/Pro Micro/Mega等,也可支持 阅读全文
posted @ 2022-07-20 14:02 ꧁执笔小白꧂ 阅读(1461) 评论(0) 推荐(0)
摘要: 网摘一 原文网址:https://zhuanlan.zhihu.com/p/304315391,备份如下: Siemens Simatic TIA Portal V16简称博途V16,是一款由西门子于2019年12月3日推出的一款自动化编程软件。 一、硬件要求 安装 STEP 7 Basic / P 阅读全文
posted @ 2022-06-04 14:44 ꧁执笔小白꧂ 阅读(7425) 评论(0) 推荐(0)
摘要: 方法一:官方下载Nuget包(格式.nupkg) 1、新建C:\Users\{你的用户}\AppData\Local\NuGet\v3-cache的文件夹;将下载的包源(.nupkg)放在这个里面,下载地址:https://www.nuget.org/ 2、打开VS-工具-Nuget包管理源-程序包 阅读全文
posted @ 2022-05-26 17:01 ꧁执笔小白꧂ 阅读(4849) 评论(0) 推荐(3)
摘要: TextBox样式(放到<Window.Resources/>里): <SolidColorBrush x:Key="TextBox.Static.Border" Color="#FFABAdB3"/> <SolidColorBrush x:Key="TextBox.MouseOver.Border 阅读全文
posted @ 2022-05-23 14:30 ꧁执笔小白꧂ 阅读(638) 评论(0) 推荐(0)
摘要: 一、样式一:方型 1、样式代码: <Style x:Key="CheckBoxStyle" TargetType="{x:Type CheckBox}"> <Setter Property="Background" Value="#FF26405B"/> <Setter Property="Temp 阅读全文
posted @ 2022-05-23 14:20 ꧁执笔小白꧂ 阅读(191) 评论(0) 推荐(0)
摘要: 代码如下: <Style x:Key="ButtonStyle" TargetType="{x:Type Button}"> <Setter Property="Cursor" Value="Hand"/> <Setter Property="Template"> <Setter.Value> <C 阅读全文
posted @ 2022-05-23 14:11 ꧁执笔小白꧂ 阅读(382) 评论(0) 推荐(0)
摘要: 对策一: 1、卸载旧的node-sass,命令npm uninstall node-sass 2、下载最新版的node-sass,命令npm i -D node-sass --sass_binary_site=https://npm.taobao.org/mirrors/node-sass/ 对策二 阅读全文
posted @ 2022-05-21 17:45 ꧁执笔小白꧂ 阅读(349) 评论(0) 推荐(0)
摘要: 说明node sass版本在当前环境运行不了,解决方法如下:1、卸载当前版本node sass,命令npm uninstall --save node-sass2、重新安装node sass,命令npm install --save node-sass 阅读全文
posted @ 2022-05-21 17:34 ꧁执笔小白꧂ 阅读(1699) 评论(0) 推荐(0)
摘要: 一、错误信息: 二、对策: 1、cmd查看wsl状态: 2、运行wsl --install -d Ubuntu试试没什么用。 唔,安装了一个ubuntu虚拟系统。 算了,先不搞了。 阅读全文
posted @ 2022-05-19 21:59 ꧁执笔小白꧂ 阅读(385) 评论(0) 推荐(0)
摘要: 一、错误信息: 二、对策: 1、CMD查看Docker版本 Docker Version 2、删除数据并重启 网上的对策是将 C:\Users\YourUser\AppData\Roaming 目录下Docker目录重命名。比如改为Docker_backup。重启docker desktop,启动之 阅读全文
posted @ 2022-05-19 21:24 ꧁执笔小白꧂ 阅读(674) 评论(0) 推荐(0)
摘要: 1、cmd命令 dotnet --info 查看自己使用的SDK版本; 2、修改global.json文件中的版本为本机的SDK版本; 阅读全文
posted @ 2022-05-17 23:05 ꧁执笔小白꧂ 阅读(857) 评论(0) 推荐(0)
摘要: // 添加NuGet包:System.IO.Compression.ZipFile /** *┌──────────────────────────────────────────────────────────────┐ *│ 描 述:Zip相关的工具类 *│ 作 者:执笔小白 *│ 版 本:1. 阅读全文
posted @ 2022-04-09 00:20 ꧁执笔小白꧂ 阅读(440) 评论(0) 推荐(0)
摘要: 打开 this.instance = this.$notify({ //type: "success", title: '消息', message: '请联系xxx软件开发部', duration: 3000, position:'top-right' }); 关闭 this.instance.cl 阅读全文
posted @ 2022-03-28 21:47 ꧁执笔小白꧂ 阅读(153) 评论(0) 推荐(0)
摘要: 取值(字符串): string str = new TextRange(richtextbox.Document.ContentStart, richtextbox.Document.ContentEnd).Text; 赋值: // 方式一 string srt="12356457"; Paragr 阅读全文
posted @ 2022-03-25 18:06 ꧁执笔小白꧂ 阅读(729) 评论(0) 推荐(0)
摘要: /************************************************************ * Description: Base64 加密、解密 * Create Time: 2019-02-25 * Author:zh.z * Version: v1.0.1 ** 阅读全文
posted @ 2022-03-21 15:47 ꧁执笔小白꧂ 阅读(222) 评论(0) 推荐(0)
摘要: /************************************************************ * Description: RSA 非对称 加密、解密 * Create Time: 2021-05-18 * Author:huioo * Version: v1.0.1 阅读全文
posted @ 2022-03-21 15:42 ꧁执笔小白꧂ 阅读(568) 评论(0) 推荐(0)
摘要: /************************************************************ * Description: Guid帮助类,用于生产连续的Guid * Create Time: 2019-02-25 * Author:zh.z * Version: v1 阅读全文
posted @ 2022-03-21 14:16 ꧁执笔小白꧂ 阅读(217) 评论(0) 推荐(0)
摘要: DBHelper是在以前写的MSSQL和SQLite的SQLHelper基础上做了数据库传参类型适配,内容已停更;内容如下: 1.DBHelper主类 /** *┌──────────────────────────────────────────────────────────────┐ *│ 描 阅读全文
posted @ 2022-03-18 17:56 ꧁执笔小白꧂ 阅读(708) 评论(0) 推荐(0)
摘要: 第一步:DataGrid添加LoadingRow="ApplicationRunLogDataGrid_LoadingRow" <DataGrid x:Name="ApplicationRunLogDataGrid" AutoGenerateColumns="False" CanUserAddRow 阅读全文
posted @ 2022-03-17 16:08 ꧁执笔小白꧂ 阅读(516) 评论(0) 推荐(0)
摘要: 一、安装Arduino IDE 1、下载Arduino IDE 一直下一步安装就好了。 2、汉化 菜单“File”-“Preference”,选择中文即可。 二、安装Esp32 1、在线安装法: (1)添加Esp32附加管理器网址(文件-首选项): https://dl.espressif.com/ 阅读全文
posted @ 2022-03-15 23:55 ꧁执笔小白꧂ 阅读(4740) 评论(0) 推荐(0)
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 36 下一页