代码如下: <Window.Resources> <Style x:Key="ColumnHeaderStyle" TargetType="DataGridColumnHeader"> <Setter Property="HorizontalContentAlignment" Value="Cent ...
pages 页面路径的存放列表 通过手写页面路径可以在对应目录下自动创建对应文件 "pages": [ "pages/demo3/demo3", "pages/demo1/demo1", "pages/index/index", windows 全局的默认窗口表现 "window": { // 设置 ...
分类:
移动开发 时间:
2021-02-01 11:47:32
阅读次数:
0
1、开启防火墙 systemctl start firewalld 2、开放指定端口 `` firewall-cmd --zone=public --add-port=1935/tcp --permanent `` 命令含义: --zone #作用域 --add-port=1935/tcp #添加端 ...
分类:
系统相关 时间:
2021-02-01 11:42:08
阅读次数:
0
Labelary Engine Documentation ZPL Command Support ZPL Extensions for Simulating Colored Label Stock Configuration via System Properties 1. ZPL Command ...
分类:
移动开发 时间:
2021-02-01 11:41:41
阅读次数:
0
测试/调试 Servlet 始终是开发使用过程中的难点。Servlet 往往涉及大量的客户端/服务器交互,可能会出现错误但又难以重现。 这里有一些提示和建议,可以帮助您调试。 System.out.println() System.out.println() 是作为一个标记来使用的,用来测试一段特定 ...
分类:
移动开发 时间:
2021-01-30 12:15:06
阅读次数:
0
1、sql规范 库名、表名、字段名,必须使用小写字母,不得超过30个字符 库名、表名、字段名,必须尽量见名知意,使用下划线分割,禁止使用mysql保留字 建表时表必须有主键,使用bigint unsigned类型,并使用auto_increment自增标记 所有字段及表都必须有注释,存储引擎必须使用 ...
分类:
数据库 时间:
2021-01-30 12:04:05
阅读次数:
0
【zombie】如何查看并杀死僵尸进程? 赏金Micheal关注 2019.03.31 19:40:15字数 1,016阅读 4,373 僵尸进程定义 In UNIX System terminology, a process that has terminated,but whose parent ...
分类:
系统相关 时间:
2021-01-30 11:48:16
阅读次数:
0
前言 带界面软件可以分两部分:界面显示和消息处理。前面介绍了界面解析绘制和消息处理,而绘制管理器类(CPaintManagerUI)两部分都管理:处理了大部分的绘制工作、控件消息分发处理。 示例 class CDuilibWnd : public CWindowWnd, public INotify ...
分类:
其他好文 时间:
2021-01-30 11:47:21
阅读次数:
0
1. 使用java8 的Instant //获取秒long unixTime = Instant.now().getEpochSecond();//161189992 将时间戳转为日期 long unixTime = 1611901474; Instant instant = Instant.ofE ...
分类:
编程语言 时间:
2021-01-30 11:46:37
阅读次数:
0
“在Window窗体程序开发的时候,如果使用多线程编程,在子线程中访问主线程窗体内的控件,就需要使用控件的Control.Invoke方法或者BeginInvoke方法。但是有时候因为Window执行速度太快,尤其是你写代码的时候在InitializeComponent();完成之前起了一个线程去执 ...
分类:
其他好文 时间:
2021-01-30 11:41:03
阅读次数:
0