做上位机软件,经常会用到用箭头表示设备的连接次序,但是WPF似乎没有现成的箭头可用,所以只能通过Draw的方式自己画。其实可以通过VS Blend绘制,然后再导入到界面中,下面的这种方式也是这么实现的,只不过绘制出来之后直接可以以后用! 1. 首先导入Microsoft.Expression.Dra ...
java创建pdf CreatePDF package PDFUtil; import com.itextpdf.text.*; import com.itextpdf.text.pdf.*; import com.itextpdf.text.pdf.draw.DottedLineSeparator ...
分类:
编程语言 时间:
2020-11-07 17:17:18
阅读次数:
23
编码生成器 '' import os, time, string, random, tkinter, qrcode from pystrich.ean13 import EAN13Encoder import tkinter.filedialog # 文件对话框,其中tkinter模块为python ...
分类:
其他好文 时间:
2020-11-06 01:36:13
阅读次数:
15
Window中VB有InputBox的功能,但SDK、MFC、WTL等并未提供类似功能。 WTL有CIndirectDialogImpl,可以很简单的构建对话框。基于此,实现一个简单的InputBox功能 #define BUF_LEN MAX_PATH #define IDC_TEXT (100) ...
分类:
其他好文 时间:
2020-10-31 01:51:43
阅读次数:
17
新建主界面 xml <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas. ...
分类:
移动开发 时间:
2020-10-31 01:15:44
阅读次数:
27
alignment top_right #是否嵌入桌面 background yes #是否绘制窗口边框 draw_borders no #窗口边框 border_width 10 #cpu_avg_samples 2 #默认颜色 #default_color cornflowerblue #默认字 ...
分类:
其他好文 时间:
2020-10-29 10:29:31
阅读次数:
29
添加引用: ThoughtWorks.QRCode.dll System.Drawing using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using Mi ...
迭代,其实就是一个重复反馈的过程,利用旧值推新值,即:xn+1=f(xn)。 当我们要在一个平面上绘图的时候就需要一个坐标(x,y),我们只要把每一个迭代后的(xn+1,yn+1)绘制出来就好了。 下面给出了几个比较简单有趣的迭代函数(来源:http://paulbourke.net/fractal ...
分类:
编程语言 时间:
2020-10-26 11:16:08
阅读次数:
25
import numpy as np import cv2 as cv # Create a black image img = np.zeros((512,512,3), np.uint8) # Draw a diagonal blue line with thickness of 5 px cv ...
分类:
编程语言 时间:
2020-10-20 16:26:11
阅读次数:
32
import turtle, datetime def drawGap(): turtle.up() turtle.fd(5) def drawLine(draw): drawGap() if(draw): turtle.down() else: turtle.up() turtle.fd(40) ...
分类:
其他好文 时间:
2020-10-19 22:15:04
阅读次数:
25