namespace 药品信息管理系统 { public partial class frm_SupplyTable : Form { public frm_SupplyTable() { InitializeComponent(); this.StartPosition = FormStartPos ...
分类:
其他好文 时间:
2020-03-02 23:07:33
阅读次数:
87
1. 交叉类型-& 将多个类型合并成一个大类型 interface Bird { name: string, fly(): void } interface Person { age: number, talk(): void; } type BirdMan = Bird & Person; let ...
分类:
其他好文 时间:
2020-03-02 22:45:14
阅读次数:
78
异步调用进度条窗体弹出 public partial class LoadProgressBar : Form { int losttime = 0; /// <summary> /// 是否可以关闭窗体 /// </summary> public bool ClosedFlag = false; ...
C#设置一个控件可以鼠标拖动: 新建一个C#项目, 创建一个label控件, 设置label的鼠标按下和抬起事件分别为:label1_MouseDown和label1_MouseUp。 对代码进行如下修改。 public partial class Form1 : Form { private Po ...
Paper——SIGCOMM 17 : Reading SketchVisor Robust Network Measurement for Sofeware Packet Processing A Partial User-space Implementation of SketchVisor's ...
分类:
其他好文 时间:
2020-02-25 18:13:19
阅读次数:
81
1.报错信息 Caused by: java.lang.IllegalStateException: The remote endpoint was in state [TEXT_PARTIAL_WRITING] which is an invalid state for called method ...
分类:
其他好文 时间:
2020-02-21 23:55:39
阅读次数:
149
using Microsoft.Reporting.WinForms; using System; using System.Data; using System.Windows.Forms; namespace WindowsFormsApp13 { public partial class Fo ...
分类:
其他好文 时间:
2020-02-21 20:31:14
阅读次数:
64
Webdriver提供了八种元素定位方法: Webdriver提供了八种元素定位方法,对应Java语法: id findElement(By.id()); 或者 findElements(By.id()); name findElement(By.name()); class name findEl ...
基本概念 进程:进程是一个具有独立功能的程序关于某个数据集合的一次运行活动。进程是操作系统动态执行的基本单元。 线程:一个进程中包含若干线程,当然至少有一个线程,线程可以利用进程所拥有的资源。线程是独立运行和独立调度的基本单元。 协程:协程是一种用户态的轻量级线程。协程无需线程上下文切换的开销,也无 ...
分类:
编程语言 时间:
2020-02-18 23:21:33
阅读次数:
153
- ``` python @app.route('/test/', methods=['GET', 'POST'], endpoint='test01') def test(): getData = request.args # 利用request对象获取GET请求数据 print('获取的GET数... ...
分类:
其他好文 时间:
2020-02-17 21:22:20
阅读次数:
93