-
C# 监控Windows剪贴板程序
C# 编写的监控Windows剪贴板的小程序,这里面有计时器的相关创建方法,设置计时器间隔为1000毫秒并启动计时器,监控剪切板并判断剪贴板中是否存在文本数据,然后将剪贴板中的内容显示在richTextBox1控件中。下面的代码是本程序的核心:
private void Frm_Main_Load(object sender, EventArgs e)
{
timer1.Interval = 1000;//设置计时器间隔为1000毫秒
timer1.Start();//启动计时器
}
private void timer1_Tick(object sender, EventArgs e)
{
if (Clipboard.ContainsText())//判断剪贴板中是否存在文本数据
richTextBox1.Text = Clipboard.GetText();//将剪贴板中的内容显示在richTextBox1控件中
}
- 2023-08-14 00:35:02下载
- 积分:1
-
multisim9shuzidianlu.rar,压缩包无法解压密码。
Multisim9shuzidianlu.rar,
压缩包解压时不能有密码。-Multisim9shuzidianlu.rar, compressed packets can not extract the password.
- 2022-01-26 07:26:26下载
- 积分:1
-
基本操作的基本操作是四大操作,符号…
浮点数基本运算 浮点数的基本运算主要有四则运算、符号处理、大小比较,以及浮点数分柝等。 包含头文件 "fn.hpp" #include "fn.hpp" 浮点数基本运算 浮点数的基本运算中有加、减、乘、除、取负、绝对值、相等比较等。 加减乘除 加、减、乘、除四个运算极为相似,都是需要两个参数,结果当然也是浮点数了。 例子: // 加 减 乘 除 btil::fn::plus::value // f1+f2 的结果 btil::fn::minus::value // f1-f2 的结果 btil::fn::multiplies::value // f1*f2 的结果 btil::fn::divides::value // f1/f2 的结果 plus::value::f_val // f1+f2 的结果的值 struct one { static const double f_val = 1.0 } // 两个浮点数 struct two { static const double f_val = 2.0 } minus::value::f_val == 0.5 取负 取负运算就是取一个浮点数的负数。-float basic operations of the basic operations are four major operations, symbols, sizes, and float-watchman"s rattle so. The first document contains "fn.hpp"# include "fn.hpp" float float basic operations of the basic operations are, plus or minus, riding, except from negative, in absolute terms, a comparison of the same. The a
- 2022-05-22 17:45:03下载
- 积分:1
-
利用Timer_A输出周期为15.625ms、占空比为75% PWM矩形波
利用Timer_A输出周期为15.625ms、占空比为75% PWM矩形波-use Timer_A output cycle 15.625ms, for the 75% duty cycle rectangular wave PWM
- 2022-09-04 17:30:03下载
- 积分:1
-
该软件实现键盘锁定功能,当你暂时离开不想关机,但又不想让别人动你的电脑的时候可以试着用该软件...
该软件实现键盘锁定功能,当你暂时离开不想关机,但又不想让别人动你的电脑的时候可以试着用该软件-The software realize the keyboard lock feature, when you do not want to leave the country temporarily shut down, but do not want others to move the computer when you try to use the software
- 2022-02-09 10:44:20下载
- 积分:1
-
通过雪花飞舞这个小例子学习怎么制作控制动画
通过雪花飞舞这个小例子学习怎么制作控制动画-snowflakes fluttering through the small examples to learn how to control animation production
- 2022-05-23 22:43:55下载
- 积分:1
-
判断表达式中括号是否配对的小程序
判断表达式中括号是否配对的小程序-judgment regular expression matching brackets whether the small program
- 2022-07-16 11:36:32下载
- 积分:1
-
简单点对点通信源代码,有服务器和客户端二种
简单点对点通信源代码,有服务器和客户端二种-simple point-to-point communications source code, server and client two species
- 2022-08-18 13:51:50下载
- 积分:1
-
Ellipse fitting to introduce the relevant mathematical calculations and methods,...
椭圆拟合的相关介绍与数学运算方法,包括说明文档及源码、和测试数据-elliptical fitting related presentations and mathematical methods, including documentation, and -Ellipse fitting to introduce the relevant mathematical calculations and methods, including documentation and source code, and test data-elliptical fitting related presentations and mathematical methods, including documentation, and
- 2022-03-30 12:58:00下载
- 积分:1
-
Android AirPlus飞行历 飞行模式自动切换功能
Android AirPlus飞行模式自动切换工具,可以根据设定的时间自动进入和退出飞行模式,在无需关机的情况下让手机更加省电,减少睡眠时间手机的辐射作用。
Android飞行模式自动切换工具实现的功能如下:
1.快速进入和快速退出飞行模式
2.自定义添加,删除,启用,禁用飞行时间段
3.设置自动切换飞行模式的时间和重复日期
4.设置控制不受飞行模式控制的无线硬件
5.设置是否在切换飞行时进行震动提示
6.进入切换飞行模式10秒钟提示(延迟飞行,立即飞行,取消飞行)
7.可以进行延迟飞行操作
8.检测通话状态,防止正在通话时切换飞行模式
9.设置延迟飞行的提醒间隔
10.设置音量键在飞行切换中的作用
- 2022-01-27 18:46:44下载
- 积分:1