摘要: 1、把需要更新文件放入指定文件夹:如Publish-Demo 2、新建 app_offline.htm文件、用作临时替换页 <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <ti 阅读全文
posted @ 2021-09-09 17:04 狂想NICE 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 下载Mysql zip包、解压[C:\mysql-8.0.18目录为例] https://dev.mysql.com/downloads/mysql/ 目录下创建 my.ini [mysqld]# 设置3306端口port=3306# 设置mysql的安装目录basedir=C:\mysql-8.0 阅读全文
posted @ 2020-12-25 22:03 狂想NICE 阅读(105) 评论(0) 推荐(0) 编辑
摘要: 初始化DbContext public partial class x1_Context : DbContext { public hw_siteContext() { } public hw_siteContext(DbContextOptions<hw_siteContext> options) 阅读全文
posted @ 2020-12-23 16:41 狂想NICE 阅读(1097) 评论(0) 推荐(1) 编辑
摘要: 动画效果如下: 源码如下: <UniformGrid> <Canvas x:Name="cvs1" Width="340" Height="215" Margin="0" HorizontalAlignment="Left"> <Path x:Name="path1" Margin="0" Hori 阅读全文
posted @ 2020-08-25 15:35 狂想NICE 阅读(1002) 评论(0) 推荐(0) 编辑
摘要: 动画效果如下: 源码如下: <UniformGrid Columns="2"> <!-- DropShadowEffect阴影效果 --> <Grid> <Ellipse x:Name="el" Width="100" Height="100" Fill="#5c6bff"> <Ellipse.Ef 阅读全文
posted @ 2020-08-25 15:01 狂想NICE 阅读(622) 评论(0) 推荐(0) 编辑
摘要: 基础动画:https://github.com/microsoft/WPF-Samples/tree/master/Animation 1、Effect 的 DropShadowEffect 和 BlurEffect及其动画 源码移步:https://www.cnblogs.com/kuangxia 阅读全文
posted @ 2020-08-20 17:35 狂想NICE 阅读(275) 评论(0) 推荐(0) 编辑
摘要: WPF基础图形: Line:直线,可设置笔触(Stroke) Rectangle:矩形,既有笔触(Stroke),又有填充(Fill) Ellipse:椭圆,有笔触和填充(包含正圆) Polygon:多边形(闭合),由多条直线段围成的闭合区域,有笔触和填充 Polyline:折线(不闭合),由多条首 阅读全文
posted @ 2020-08-20 17:13 狂想NICE 阅读(552) 评论(0) 推荐(0) 编辑
摘要: 原:git clone https://github.com/jinzhu/inflection.git 新:git clone https://gitclone.com/github.com/jinzhu/inflection.git 阅读全文
posted @ 2020-07-06 15:13 狂想NICE 阅读(622) 评论(0) 推荐(0) 编辑
摘要: 1.RabbitMQHelper.cs public class RabbitMQHelper { string exchangeName = "demoexchange"; string queueName = "demoqueue"; string exchangeType = Exchange 阅读全文
posted @ 2020-06-15 16:18 狂想NICE 阅读(2120) 评论(0) 推荐(0) 编辑
摘要: Marshal 类 msdn:https://docs.microsoft.com/zh-cn/dotnet/api/system.runtime.interopservices.marshal?redirectedfrom=MSDN&view=netframework-4.8#methods cs 阅读全文
posted @ 2020-02-26 10:52 狂想NICE 阅读(741) 评论(0) 推荐(0) 编辑