-
分界控制器保护原理.内部资料.对电力行业做一点小的贡献.
分界控制器保护原理.内部资料.对电力行业做一点小的贡献.-good
- 2023-08-08 09:10:03下载
- 积分:1
-
益智游戏,贴方块,J2ME开发,这是MOTOV300版本,160关,好玩。...
益智游戏,贴方块,J2ME开发,这是MOTOV300版本,160关,好玩。-puzzle games, and pasted chunks and J2ME development, which is MOTOV300 version, 160 customs and fun.
- 2022-07-03 11:50:12下载
- 积分:1
-
VxWorks下设备驱动程序及BSP开发指南
说明: To learn VxWorks driver and boot learning, this article can still see, the introduction is good
- 2020-12-15 20:02:16下载
- 积分:1
-
FePt-Fe
说明: 微磁学模拟6层纳米线磁矩翻转过程,用于oommf计算软件(This is a micromagnetic simulation program file used in oommf, which can be use to calculaue the six layer's nano line.)
- 2017-10-30 09:59:44下载
- 积分:1
-
Splashy是基于Linux系统的下一代的Boot Splash。它不需要打补丁而且就象正常的包一样安装。用Splashy能使你的启动过程变得赏心悦目。...
Splashy是基于Linux系统的下一代的Boot Splash。它不需要打补丁而且就象正常的包一样安装。用Splashy能使你的启动过程变得赏心悦目。-Splashy is based on the Linux system, the next generation of the Boot Splash. It does not need patching and package the same as a normal installation. Splashy will enable you to use the boot process has become a pleasure.
- 2022-01-21 20:39:41下载
- 积分:1
-
给人写的毕设,但没过
给人写的毕设,但没过-people wrote Albert located, but after
- 2022-05-29 09:21:08下载
- 积分:1
-
基于哈日日食的角点检测程序,使用ZNCC进行匹配
基于哈日日食的角点检测程序,使用ZNCC进行匹配-yet the solar eclipse on the corner detection, the use of matching ZNCC
- 2022-05-30 00:44:16下载
- 积分:1
-
矩陣相乘
矩陣相乘
#include
#include
int m,n,o,p,i,j,k,l;
int main()
{
printf("輸入矩陣A之列數m、行數n及矩陣B之列數o、行數p");
printf("
m=");scanf("%d",&m);
printf("n=");scanf("%d",&n);
printf("
o=");scanf("%d",&o);
printf("p=");scanf("%d",&p);
float a[m][n],b[o][p],c[m][p];
请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报
- 2023-07-05 11:05:03下载
- 积分:1
-
图片宫格切换聚光灯效果
这是一款九宫格样式的图片展示效果,鼠标分别移动到右侧图片上后,左侧显示对应的大图标(This is a nine-pane style image display effect. After the mouse moves to the right picture, the left side shows the corresponding large icon.)
- 2018-12-06 20:12:20下载
- 积分: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