注意:不同的浏览器会展示不同样式的控制面板。 1.video标签 支持firefox自动播放 谷歌、ie不支持自动播放 <video controls="controls" autoplay="autoplay" name="media"><source src="./img/music.mp3" ...
分类:
Web程序 时间:
2019-12-08 15:43:19
阅读次数:
133
第一个参数 : $1,第二个参数 :$2 test.sh 输出 例子 : 脚本会复制文件(arg1) 到目标地址(arg2) copy.sh 运行 ...
分类:
其他好文 时间:
2019-12-07 21:32:35
阅读次数:
273
输出 参考: https://www.cnblogs.com/strivepy/p/10436213.html https://www.cnblogs.com/jfl-xx/p/8024596.html https://www.runoob.com/python/func-number-choice ...
分类:
编程语言 时间:
2019-12-06 17:34:38
阅读次数:
402
var s = sender as ToolStripMenuItem; var m = s.Owner as ContextMenuStrip; m.SourceControl.BackColor = cf.Color; ...
前言: 如果想要了解非父子关系的组件传值,最好是在了解父传子和子传父的基础上在来了解非父子传值可能会有更透彻的思路。 因为非父子传值是通过定义事件总线来代理实现父传子+子传父从而实现的传值方式。 这是我总结的父子传值相关的知识,可供参考: https://www.cnblogs.com/ViavaC ...
分类:
其他好文 时间:
2019-12-05 01:26:17
阅读次数:
130
排序后取数组第k个元素,遍历需要n^2的复杂度,查找插入logn,时间复杂度O(n^2logn)。方法很笨,完全就是STL过于牛x运行通过的。 class Solution { public: int kthSmallest(vector<vector<int>>& matrix, int k) { ...
分类:
其他好文 时间:
2019-12-04 10:38:49
阅读次数:
104
*& * *& Report YCX_021 *& * *& *& * REPORT YCX_021. INCLUDE OLE2INCL . * * Global GUI Controls Variables / Structures * *--Data Definition of OLE DATA... ...
分类:
其他好文 时间:
2019-12-04 01:01:18
阅读次数:
134
1、运行git reflog命令查看你的历史变更记录 2.然后用git reset --hard HEAD@{n},(n是你要回退到的引用位置)回退。 比如上图可运行 git reset --hard 40a9a83 ...
分类:
其他好文 时间:
2019-12-03 11:46:00
阅读次数:
107
``` struct maxFormBuilderStruct ( theFrm = dotNetObject "MaxCustomControls.MaxForm" ,theBtn = dotNetObject "System.Windows.Forms.Button" ,fn theFunc =... ...
分类:
其他好文 时间:
2019-12-03 01:27:23
阅读次数:
112
this.DoubleBuffered = true;//设置本窗体 SetStyle(ControlStyles.UserPaint, true); SetStyle(ControlStyles.AllPaintingInWmPaint, true); // 禁止擦除背景. SetStyle(Co ...