上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 29 下一页
摘要: var aaa = this.viewer.Document.CreateBitmap(pageIndex, 1500); SaveImageToFile(aaa, @"C: \Users\wjx\Desktop\图书\b" + pageIndex + ".png"); private void S 阅读全文
posted @ 2020-07-27 16:30 星星c# 阅读(491) 评论(0) 推荐(0) 编辑
摘要: 引用如下: 代码如下: <Window x:Class="TestGeneratePdf.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.mic 阅读全文
posted @ 2020-07-27 16:24 星星c# 阅读(869) 评论(0) 推荐(0) 编辑
摘要: 一、定义样式 <style> .blueBack { background-color: blue; } .yellowBack { background-color: yellow; } </style> 二、定义两个按钮,一个div <div id="vueFirst"> <div :class 阅读全文
posted @ 2020-07-19 12:32 星星c# 阅读(19106) 评论(0) 推荐(0) 编辑
摘要: 一、初始化容器 每个vue对象,都对应着一个容器 <div id="vueFirst"> </div> 二、引用vlue.js <script type="text/javascript" src="js/vue.js"></script> 三、添加vue对象 <script type="text/ 阅读全文
posted @ 2020-07-19 12:11 星星c# 阅读(660) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/yizufengdou/article/details/103985709 后台试了这个有效: https://www.cnblogs.com/qdkfyym/p/11289233.html 阅读全文
posted @ 2020-07-19 11:15 星星c# 阅读(270) 评论(0) 推荐(0) 编辑
摘要: GalleryItem item = galleryControl1.Gallery.GetCheckedItem(); if (item != null) galleryControl1.Gallery.Groups[0].Items.Remove(item); 阅读全文
posted @ 2020-07-06 10:40 星星c# 阅读(480) 评论(0) 推荐(0) 编辑
摘要: 资料来源于网上: public static Bitmap ImageRotate(Bitmap bmp, float angle, Color bkColor) { int w = bmp.Width + 2; int h = bmp.Height + 2; PixelFormat pf; if 阅读全文
posted @ 2020-07-04 16:21 星星c# 阅读(1251) 评论(2) 推荐(0) 编辑
摘要: 1、添加Gbase官方提供的dll文件 “GBase.Data.dll”的引用 添加完如下图: 2、添加引用“Microsoft.Extensions.Configuration.Json” 3、添加连接字符串 { "ConnectionStrings": {"DefaultConnectionGB 阅读全文
posted @ 2020-06-22 11:31 星星c# 阅读(1388) 评论(5) 推荐(0) 编辑
摘要: 现象 string t1 = "bedf812f-2311-4717-a749-8b1272fc3c86"; string t2 = "bedf812f-2311-4717-a749-8b1272fc3c86"; var len1 = t1.Length; var len2 = t2.Length; 阅读全文
posted @ 2020-06-17 19:44 星星c# 阅读(941) 评论(0) 推荐(0) 编辑
摘要: 一、根据原表创建临时表 CREATE TEMP TABLE temp_testbulkcopy as (select * from testbulkcopy limit 0); 二、本次使用完临时表后自动删除 CREATE TEMP TABLE temp_testbulkcopy ON COMMIT 阅读全文
posted @ 2020-06-17 19:31 星星c# 阅读(4164) 评论(0) 推荐(0) 编辑
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 29 下一页