码迷,mamicode.com
首页 >  
搜索关键字:controls    ( 1635个结果
网页添加音乐视频方式
注意:不同的浏览器会展示不同样式的控制面板。 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
python3 获取当前日期的时间戳,以及n天后的日期时间戳
输出 参考: 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
c# winform 获取ToolStripMenuItem的SourceControl
var s = sender as ToolStripMenuItem; var m = s.Owner as ContextMenuStrip; m.SourceControl.BackColor = cf.Color; ...
分类:Windows程序   时间:2019-12-06 00:22:28    阅读次数:158
Vue组件通信之非父子组件传值
前言: 如果想要了解非父子关系的组件传值,最好是在了解父传子和子传父的基础上在来了解非父子传值可能会有更透彻的思路。 因为非父子传值是通过定义事件总线来代理实现父传子+子传父从而实现的传值方式。 这是我总结的父子传值相关的知识,可供参考: https://www.cnblogs.com/ViavaC ...
分类:其他好文   时间:2019-12-05 01:26:17    阅读次数:130
leetcode378 有序矩阵中第k小的元素
排序后取数组第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
ABAP DEMO ole示例程序
*& * *& 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
git撤销pull命令
1、运行git reflog命令查看你的历史变更记录 2.然后用git reset --hard HEAD@{n},(n是你要回退到的引用位置)回退。 比如上图可运行 git reset --hard 40a9a83 ...
分类:其他好文   时间:2019-12-03 11:46:00    阅读次数:107
MaxScript 一些结构的记录
``` 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 ...
分类:Windows程序   时间:2019-12-01 16:46:19    阅读次数:107
1635条   上一页 1 ... 23 24 25 26 27 ... 164 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!