码迷,mamicode.com
首页 >  
搜索关键字:controls    ( 1635个结果
winform 中 label透明化
label1.BackColor = Color.Transparent;//设置背景颜色为透明 label1.Parent = pictureBox1;//将pictureBox1设为标签的父控件,也可以设置其他控件作为父类 //pictureBox1.Controls.Add(label1);/ ...
分类:Windows程序   时间:2021-05-24 03:58:59    阅读次数:0
vue 视频播放
<template> <div> <video id="my-video" class="video-js vjs-default-skin vjs-big-play-centered box" controls preload="none" > <source src="" type="appli ...
分类:其他好文   时间:2021-05-24 01:58:51    阅读次数:0
【2021-05-02】人生十三信条
23:59 人应该有翅膀,假如我们这一代不能达到这个愿望,下一代也会实现。人是万物之灵,必定会像天神一样在天空飞翔。 ——达·芬奇 1、节制:食不可过饱,饮不得过量。 2、缄默:避免无谓闲扯,言谈必须对人有益。 3、秩序:生活物品要放置有序,工作时间要合理安排。 4、决心:要做的事就下决心去做,决心 ...
分类:其他好文   时间:2021-05-24 01:31:20    阅读次数:0
html修改视频速度
<!DOCTYPE html> <html> <head> <script type="text/javascript"> window.onload=function(){ document.getElementById("too").playbackRate=10; } </script> </ ...
分类:Web程序   时间:2021-04-19 15:53:42    阅读次数:0
C# WinForm遍历窗体控件的3种方法
1.循环遍历 private void GetControls(Control fatherControl) { Control.ControlCollection sonControls = fatherControl.Controls; foreach (Control control in s ...
分类:Windows程序   时间:2021-04-10 13:07:49    阅读次数:0
flv.js播放flv
flv cdn https://www.bootcdn.cn/flv.js/ 举例 <script src="dist/js/flv.min.js"></script> <video id="videoElement" controls autoplay width="1024" height="5 ...
分类:Web程序   时间:2021-04-07 11:39:38    阅读次数:0
JS 常见函数分类
一 函数定义: 高阶函数:一个函数可以接收其他函数作为参数,这种函数便称为高阶函数;常用高阶函数:Array: map(); reduce(); filter()等等; 函数柯理化(Currying):是把接受多个参数的函数变换成接受一个单一参数(最初函数的第一个参数)的函数,并且返回接受余下的参数 ...
分类:Web程序   时间:2021-04-06 14:24:51    阅读次数:0
188. 买卖股票的最佳时机IV
题目链接 解题思路:动态规划 使用一系列变量存储买入的状态,再用一系列变量存储卖出的状态。buy[j]表示恰好进行第j笔交易,并且当前手上持有一支股票,这种情况下的最大利润;sell[j]表示恰好进行第j笔交易,并且当前手上不持有股票,这种情况下的最大利润。 C++: #include <vecto ...
分类:其他好文   时间:2021-04-02 12:52:37    阅读次数:0
vue的 Mixins (混入)
组件 <template> <div> <div>{{val}}</div> <el-button type="success" @click="getClick">点击</el-button> </div> </template> <script> import mixins from '@/mi ...
分类:其他好文   时间:2021-04-01 13:18:02    阅读次数:0
Delphi用数字访问相关的内存(此处数字要为有效地址,且知道该地址的类型)
Delphi XE 仅仅是学习记录 unit 开始 unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; typ ...
分类:Windows程序   时间:2021-03-17 14:08:06    阅读次数:0
1635条   上一页 1 2 3 4 ... 164 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!