原文:在WPF(core版本)中引用外部字体不可用问题说明 这几天使用WPF写软件,想引用外部字体,于是下载了字体文件: 然后在App.xaml中添加了如下代码: pack://application:,,,/IVFTempMonitor;component/Fonts/Digital7Mono-B... ...
Lua 模块与包 模块类似于一个封装库,从 Lua 5.1 开始,Lua 加入了标准的模块管理机制,可以把一些公用的代码放在一个文件里,以 API 接口的形式在其他地方调用,有利于代码的重用和降低代码耦合度。 Lua 的模块是由变量、函数等已知元素组成的 table,因此创建一个模块很简单,就是创建 ...
分类:
其他好文 时间:
2020-04-19 10:34:18
阅读次数:
64
结合前篇easyUI前端ajax上传文件组件 读取Excel工具类 及springMVC上传文件 后台代码 controller @RequestMapping("/excelUploadItemList") @ResponseBody public CommonResponse excelUplo ...
分类:
Web程序 时间:
2020-04-19 01:14:53
阅读次数:
107
Pragmas Pragma instructions affect the properties of one or more variables regarding the compilation or precompilation process. Various categories of ...
分类:
其他好文 时间:
2020-04-18 23:11:37
阅读次数:
70
package work; public class Rectangle { int length; int width; public void showAll() { System.out.println("矩形长为:" + length + "矩形宽为:" + width); } public ...
分类:
编程语言 时间:
2020-04-18 20:08:08
阅读次数:
78
RESET is a flag in TCP packets to indicate that the conection is not longer working. So, if any of the two participants in a TCP connection send a pac ...
分类:
其他好文 时间:
2020-04-18 09:16:18
阅读次数:
74
package main import "fmt" func main() { for j := 1; j <= 9; j++ { for i := 1; i <= j; i++ { result := i * j fmt.Printf("%d * %d = %-2d ", i, j, result ...
分类:
编程语言 时间:
2020-04-17 23:20:56
阅读次数:
66
经过前面几个系列的洗礼,对SDL及OPENGL有了很粗浅的认识 这次我们要升级了,钟爱的Sprite的闪现,先做个没有Shader的Spite,什么? 还有Shader?Shader是神马东东,别急,下一系列就会出现Shader Sprite.h 1 #pragma once 2 #include ...
分类:
其他好文 时间:
2020-04-17 12:52:37
阅读次数:
80
I/O流·其他流 序列流 * A:什么是序列流 * 序列流可以把多个字节输入流整合成一个,从序列流中读取数据时,将从被整合的第一个流开始,读完后再读下一个 * B:使用方式 * 整合两个:SequenceInputStream(InputStream, InputStream) * 整合多个:Seq ...
分类:
编程语言 时间:
2020-04-16 22:24:06
阅读次数:
70
前言 本文的文字及图片来源于网络,仅供学习、交流使用,不具有任何商业用途,版权归原作者所有,如有问题请及时联系我们以作处理。 PS:如有需要Python学习资料的小伙伴可以加点击下方链接自行获取http://t.cn/A6Zvjdun 爬虫是什么? 网络爬虫,也叫网络蜘蛛(Web Spider)。它 ...
分类:
编程语言 时间:
2020-04-16 15:03:12
阅读次数:
113