摘要: 解决办法 打开项目工程文件 ( project.csproj) 在 标签添加 下面红色的三句话 <Deterministic>true</Deterministic> <ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0 阅读全文
posted @ 2024-06-22 09:08 qiutian-hao 阅读(12) 评论(0) 推荐(0) 编辑
摘要: <Style x:Key="ButtonAnimationBlueStyle" BasedOn="{x:Null}" TargetType="{x:Type Button}"> <Setter Property="Template"> <Setter.Value> <ControlTemplate 阅读全文
posted @ 2024-06-20 09:33 qiutian-hao 阅读(61) 评论(0) 推荐(0) 编辑
摘要: <Button x:Name="Button_UserManage" Width="30" Height="30" Content="&#xe73e;" Cursor="Hand" FontFamily="/Resources/#iconfont" FontSize="30" ToolTip="设置 阅读全文
posted @ 2024-06-19 08:42 qiutian-hao 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 第一步:创建资源词典实现自定义textbox水印提示 <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com 阅读全文
posted @ 2024-06-19 08:39 qiutian-hao 阅读(79) 评论(0) 推荐(0) 编辑
摘要: 创建NuGet服务网站工程 打开vs2019,新建一个空的web项目,如图所示 至此,创建一个空白的web项目已完成 安装NuGet.Server服务 选择 工具-->NuGet程序包管理器-->程序包管理器控制台, 打开NuGet命令行控制台,安装nuget.server服务,如图所示 在控制台输 阅读全文
posted @ 2024-06-12 10:27 qiutian-hao 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 第一步:.h文件代码 #ifndef LOGMANAGE_H #define LOGMANAGE_H #include <QObject> #include <QFile> #include <QTextStream> #include <QDateTime> #include <QDebug> # 阅读全文
posted @ 2024-06-05 08:44 qiutian-hao 阅读(66) 评论(0) 推荐(0) 编辑
摘要: 第一步:.pro工程文件添加 QT += network 第二步:.h文件添加代码 #ifndef TCPCLIENT_H #define TCPCLIENT_H #include <QException> #include <QDebug> #include <QTcpSocket> #inclu 阅读全文
posted @ 2024-05-30 15:22 qiutian-hao 阅读(141) 评论(0) 推荐(0) 编辑
摘要: 第一步:.h文件代码 #ifndef SOCKETMAP_H #define SOCKETMAP_H #include <QHash> #include <QDebug> #include <QTcpSocket> #include <QException> class SocketMap: pub 阅读全文
posted @ 2024-05-30 14:17 qiutian-hao 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 第一步:.pro工程文件添加 QT += network 第二步:.h文件添加 #ifndef TCPSERVER_H #define TCPSERVER_H #include <QException> #include <QDebug> #include <QTcpServer> #include 阅读全文
posted @ 2024-05-30 08:29 qiutian-hao 阅读(31) 评论(0) 推荐(0) 编辑
摘要: 第一步:在工程文件.pro中添加以下代码 QT += core gui serialport 第二步:在.h文件中添加以下代码 // 引入串口通信的两个头文件(第一步) #include <QtSerialPort/QSerialPort> // 提供访问串口的功能 #include <QtSeri 阅读全文
posted @ 2024-05-29 11:06 qiutian-hao 阅读(252) 评论(0) 推荐(0) 编辑