-
VC助手软件,帮助您快速编写VC程序!VC助手,用过都说好,就不用多介绍了!...
VC助手软件,帮助您快速编写VC程序!VC助手,用过都说好,就不用多介绍了!-VC assistant software that helps you to quickly process the preparation of VC! VC assistant, used that well, do not have to introduce a!
- 2022-03-13 13:05:26下载
- 积分:1
-
workpiece machining, the process of machining the general algorithm question1 qu...
工件加工问题,本程序提供了工件加工问题的一般算法question1 question2 question3经过调试能成功运行-workpiece machining, the process of machining the general algorithm question1 question2 question3 after the successful operation Debugging
- 2022-02-24 22:22:12下载
- 积分:1
-
Data Acquisition System in the choice of filter [Author: Microchip Inc. Bonnie C...
数据采集系统中滤波器的选择 [ 作者:Microchip公司 Bonnie C. Baker |-Data Acquisition System in the choice of filter [Author: Microchip Inc. Bonnie C. Baker |
- 2022-06-15 04:40:37下载
- 积分:1
-
Thax所有亚麻非常…
thax for all...thax very much-thax for all...thax very much...
- 2022-03-21 16:54:58下载
- 积分:1
-
java 实现的焰火效果,效果不错,可能需要重新编译
java 实现的焰火效果,效果不错,可能需要重新编译-achieve the pyrotechnic effect, the effect is true, it may be necessary to recompile
- 2023-02-21 08:40:04下载
- 积分:1
-
贪吃蛇的源代码,里面有比较好的12864液晶的显示代码。
贪吃蛇的源代码,里面有比较好的12864液晶的显示代码。-Snake&39 s source code, which has a better LCD display of the code 12864.
- 2022-03-15 07:18:01下载
- 积分:1
-
加性高斯白噪声信道下,OFDM系统仿真程序,调制方式为16QAM
加性高斯白噪声信道下,OFDM系统仿真程序,调制方式为16QAM-additive white Gaussian noise channels, OFDM system simulation program, the modulation method for 16QAM
- 2022-04-11 16:41:21下载
- 积分:1
-
under normal circumstances require first running WIN2000 procedures under the mi...
在一般情况下需要先运行win2000下的扫雷程序,然后再运行本程序,否则会提示“扫雷程序没有启动”。-under normal circumstances require first running WIN2000 procedures under the mine and then run this program, otherwise it would suggest "mine procedures did not start."
- 2022-10-22 05:10:04下载
- 积分:1
-
CSS3设计制作的网页常用ICO图标
CSS3设计制作的网页常用ICO图标,非常多的图标素材,用CSS3来实现的,没有任何图片,网页上使用图标修饰,可起到很好的美化作用,用CSS代码来生成图标,可减少HTML对资源的调用,加载速度变快。
- 2023-05-26 18:30:04下载
- 积分:1
-
Java自定义鼠标光标
super("自定义光标"); //调用父类构造函数
int[] cursor={Cursor.DEFAULT_CURSOR,Cursor.HAND_CURSOR,Cursor.MOVE_CURSOR,Cursor.N_RESIZE_CURSOR,Cursor.W_RESIZE_CURSOR,Cursor.WAIT_CURSOR,Cursor.TEXT_CURSOR}; //预定义光标数组
Container container=getContentPane(); //得到容器
container.setLayout(new FlowLayout()); //设置容器布局管理器
for (int i=0;i JTextArea jta=new JTextArea(3,6); //实例化一个文本框对象
jta.setCursor(Cursor.getPredefinedCursor(cursor[i])); //设置文本框的光标
container.add(jta); //增加组件到容器上
}
Toolkit toolkit=Toolkit.getDefaultToolkit(); //得到默认的ToolKit对象
Image image=toolkit.getImage("cursor.gif"); //得到图像
Cursor customCursor=toolkit.createCustomCursor(image,new Point(6,6),"MyCursor"); //实例化自定义光标对象
JTextArea jta=new JTextArea(3,6); //实例化文本框
jta.setCursor(customCursor); //设置文本框光标
container.add(jta); //增加组件
setSize(300,160); //设置窗口大小
setVisible(true); //窗口可视
- 2022-03-06 15:35:47下载
- 积分:1