通过对消息函数(SendMessage、PostMessage、Perform)的一般应用,来说明sendmessage、postmessage函数和perform 方法调用方式和结果的区别。 一、程序界面 二、程序代码及注释 unit Unit1; interface uses Windows, ...
1.联网 cd /ect/syscofig/network-scripts ls vi ifcfg-ens33 ONBOOT=yes reboot ping www.baidu.com 2.检查yum是否可用 3.install X Window System 4.yum groupinstall ...
分类:
其他好文 时间:
2020-01-13 23:41:56
阅读次数:
107
在写UWP应用时,通常会需要在代码里面判断当前是什么设备类型,以便在不同的设备上显示出不同的效果或者内容。 1. 通常我们都知道如何在C#代码里面去判断 public static DeviceFormFactorType GetDeviceFormFactorType() { switch (An ...
分类:
其他好文 时间:
2020-01-13 19:56:38
阅读次数:
75
网上的代码大部分是这样的: 1 auto matViewMatrix = camera->getViewMatrix(); 2 auto matProjectionMatrix = camera->getProjectionMatrix(); 3 auto wndMatrix = camera->g ...
分类:
其他好文 时间:
2020-01-13 01:07:10
阅读次数:
89
color: new echarts.graphic.LinearGradient(0, 0, 1, 0,[ { offset: 0, color: '#00ddff' }, { offset: 1, color: '#007db8' } ]), 1、使用颜色渐变生成器echarts.graphic ...
分类:
其他好文 时间:
2020-01-08 14:24:23
阅读次数:
254
刚好碰到有人问怎样把粒子特效放到 UI 上并且能正确被 Mask 裁剪, 首先想到给粒子效果的 Shader 添加模板模仿一般 UI 的模板方式, 应该就能正确裁剪了吧, 不过没那么简单, 我们看到在一般 UI 上, 没在 Mask 下的 UI 对比在 Mask 下的 UI, 它们的材质设置是不一样 ...
分类:
其他好文 时间:
2019-12-24 15:24:45
阅读次数:
202
原文:2019-11-29-WPF-使用-Win2d-渲染 title author date CreateTime categories WPF 使用 Win2d 渲染 lindexi 2019-11-29 08:45:46 +0800 2019-7-3 1... ...
原文:2018-9-30-win10-UWP-剪贴板-Clipboard title author date CreateTime categories win10 UWP 剪贴板 Clipboard lindexi 2018-09-30 18:54:23 +08... ...
//写在dataGridView1控件的CellPainting事件中 if (e.ColumnIndex==0 && e.RowIndex!= 1 || e.ColumnIndex==1 && e.RowIndex!= 1)//对第1列和第2列相同单元格进行合并 { Brush datagridB ...
series: [{ itemStyle: { normal: { 右 上 左 下 color: new echarts.graphic.LinearGradient(0, 1, 0, 0, [{ offset: 0, color: "red" // 0% 处的颜色 }, { offset: 0.6 ...
分类:
其他好文 时间:
2019-12-17 15:16:28
阅读次数:
285