function palette(canvas,ctx){ //初始化画布内部元素默认样式 this.strokeColor = 'red'; //默认选中红色触发颜色 this.fillColor = 'green'; //默认选中绿色填充色 this.style = 'tablet'; //默认 ...
分类:
其他好文 时间:
2019-01-19 12:12:15
阅读次数:
225
问题情境: 给picturebox赋image属性,我用一下代码,出错: 困境辨析: 把bitmap赋给pictureBox1.Image不正确,应转为image再进行赋值。 ...
1. 基础的调色板的演示 color_palette() 设置传入的任何颜色,不传使用默认颜色,set_palette() 设置所有图的颜色# 6种主题 2. 圆形画板 # 使用sns.color_palette('hls', 8) 来设置, 'hls'表示颜色空间, 8表示颜色的个数 3. pat ...
分类:
其他好文 时间:
2019-01-09 14:18:48
阅读次数:
736
VsCode快捷键 [TOC] 常用 General | 按 Press | 功能 Function | | | | | Ctrl + Shift + P,F1 | 显示命令面板 Show Command Palette | | Ctrl + P | 快速打开 Quick Open | | Ctrl ...
分类:
其他好文 时间:
2019-01-07 21:04:39
阅读次数:
291
一、下载NPOI类库 使用Nuget在线搜索NPOI,下载安装 二、代码开撸 ...
分类:
其他好文 时间:
2019-01-05 16:39:55
阅读次数:
186
to change the color format Tip one The Colour Platters are customeised for you .they show colour for: Color Palettes Material CSS Variables Custome Ti ...
分类:
其他好文 时间:
2018-12-28 22:08:03
阅读次数:
188
一、事件流(捕获,冒泡) 事件流:指从页面中接收事件的顺序,有冒泡流和捕获流。 当页面中发生某种事件(比如鼠标点击,鼠标滑过等)时,毫无疑问子元素和父元素都会接收到该事件,可具体顺序是怎样的呢?冒泡和捕获则描述了两种不同的顺序。 DOM2级事件规定事件流包括三个阶段,如图: 假如我们点击一个div, ...
分类:
Web程序 时间:
2018-11-29 17:55:36
阅读次数:
190
Keyboard shortcuts for windows Keyboard Shortcut For Windows General Shortcut | Commands | Ctrl + Shift + P | Show command palette Ctrl + P | Go to fi ...
分类:
其他好文 时间:
2018-11-28 22:21:02
阅读次数:
667
安装matplotlib和seaborn https://blog.csdn.net/Jia_jinjin/article/details/80428598 seaborn pairplot:特征两两对比 参数说明: data:数据。 g = sns.pairplot(data) hue:根据指定的 ...
分类:
其他好文 时间:
2018-11-12 23:56:35
阅读次数:
223
#region 二值化02 public Bitmap binaryzation(Bitmap srcBitmap, Bitmap dstBitmap) { int threshold = 0; Byte[,] BinaryArray = ToBinaryArray(srcBitmap, out t... ...
分类:
其他好文 时间:
2018-10-26 10:43:13
阅读次数:
215