码迷,mamicode.com
首页 >  
搜索关键字:color    ( 180498个结果
每日代码系列(15)
1 abstract class Shape { 2 public abstract float area(); 3 public abstract void printArea(); 4 } 5 class Rectangle extends Shape { 6 int width; 7 int ...
分类:其他好文   时间:2020-12-17 12:36:17    阅读次数:3
winform中设置控件的透明度
Control.BackColor=System.Drawing.Color.FromArgb(10,Color.LightGray); Control.BackColor = System.Drawing.Color.FromArgb(100, Color.LightGray); 这两种设置控件的 ...
分类:Windows程序   时间:2020-12-17 12:35:46    阅读次数:6
设置word的字体样式
from docx.shared import Pt,RGBColor from docx.oxml.ns import qn #word中字体的颜色、大小、字体def style(tt,tsize,color,rfont): for ii in tt: for run1 in ii.runs: f ...
分类:其他好文   时间:2020-12-16 12:37:51    阅读次数:2
【leetcode】56. 合并区间
int cmp(const void*a, const void*b){ return (*(int**)a)[0] > (*(int**)b)[0]; } int** merge(int** intervals, int intervalsSize, int* intervalsColSize, ...
分类:其他好文   时间:2020-12-16 12:28:04    阅读次数:3
视频@轻松入门SpringSecurity(一)
![](https://s4.51cto.com/images/blog/202012/10/778edb1fb296310281acdd51748fce3a.png?x-oss-process=image/watermark,size_16,text_QDUxQ1RP5Y2a5a6i,color_FFFFFF,t_100,g_se,x_10,y_10,shadow_90,type_ZmFuZ3p
分类:编程语言   时间:2020-12-16 12:20:17    阅读次数:5
linux下python版本升级
1、下载python版本 wget https://www.python.org/ftp/python/3.7.2/Python-3.7.2.tgz 2、编译,防止出现安装错误 yum install gcc-c++ gcc make cmake zlib-devel bzip2-devel ope ...
分类:编程语言   时间:2020-12-15 12:43:45    阅读次数:4
CSS:var变量的局部作用域(继承)特性
一、css变量非全局 最近做项目,发现css变量一个有意思的特性,那就是变量作用域非全局。 举个例子,如下html和CSS: <div> <div>测试a</div> <div>测试b</div> <div>测试c</div> </div> .box { --color: red; color: v ...
分类:Web程序   时间:2020-12-15 12:26:37    阅读次数:4
C# 定时器:方法
#region 定时器 //1 分钟 =60000 毫秒 1 时(小时)= 3600000 毫秒 1 天=86400000 毫秒 System.Timers.Timer myTimer = new System.Timers.Timer(60000); myTimer.Elapsed += new ...
分类:Windows程序   时间:2020-12-15 12:11:33    阅读次数:3
kata rootfs
AGENT_DIR="${ROOTFS_DIR}/usr/bin" AGENT_DEST="${AGENT_DIR}/${AGENT_BIN}" ...
分类:Web程序   时间:2020-12-15 11:44:32    阅读次数:4
力扣#5 最长回文子串
1 class Solution { 2 public String longestPalindrome(String s) { 3 if(s.equals("")) return ""; 4 String origin = s; 5 String reverse = new StringBuffe ...
分类:其他好文   时间:2020-12-14 13:43:53    阅读次数:4
180498条   上一页 1 ... 83 84 85 86 87 ... 18050 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!