资源简介
1.java GUI界面课程设计 2.数据库为SQL server2008,有数据库脚本 3.运行已成功并答辩完毕

代码片段和文件信息
package whsdu.se.Common;
import java.awt.Dimension;
import java.awt.Insets;
import javax.swing.DefaultDesktopManager;
import javax.swing.JComponent;
import javax.swing.JInternalframe;
import javax.swing.JScrollPane;
import javax.swing.JViewport;
//多界面加滚动条
class MDIDesktopManager extends DefaultDesktopManager {
private MDIDesktopPane desktop;
public MDIDesktopManager(MDIDesktopPane desktop) {
this.desktop = desktop;
}
public void endResizingframe(JComponent f) {
super.endResizingframe(f);
resizeDesktop();//重新调整窗口大小
}
public void endDraggingframe(JComponent f) {
super.endDraggingframe(f);
resizeDesktop();//拖动窗口
}
public void setNormalSize() {
JScrollPane scrollPane = getScrollPane();
int x = 0;
int y = 0;
Insets scrollInsets = getScrollPaneInsets();
if (scrollPane != null) {
Dimension d = scrollPane.getVisibleRect().getSize();
if (scrollPane.getBorder() != null) {
d.setSize(d.getWidth() - scrollInsets.left - scrollInsets.right d.getHeight()
- scrollInsets.top - scrollInsets.bottom);
}
d.setSize(d.getWidth() - 20 d.getHeight() - 20);
desktop.setAllSize(x y);
scrollPane.invalidate();
scrollPane.validate();
}
}
private Insets getScrollPaneInsets() {
JScrollPane scrollPane = getScrollPane();
if (scrollPane == null)
return new Insets(0 0 0 0);
else
return getScrollPane().getBorder().getBorderInsets(scrollPane);
}
private JScrollPane getScrollPane() {
if (desktop.getParent() instanceof JViewport) {
JViewport viewPort = (JViewport) desktop.getParent();
if (viewPort.getParent() instanceof JScrollPane)
return (JScrollPane) viewPort.getParent();
}
return null;
}
protected void resizeDesktop() {
int x = 0;
int y = 0;
JScrollPane scrollPane = getScrollPane();
Insets scrollInsets = getScrollPaneInsets();
if (scrollPane != null) {
JInternalframe allframes[] = desktop.getAllframes();
for (int i = 0; i < allframes.length; i++) {
if (allframes[i].getX() + allframes[i].getWidth() > x) {
x = allframes[i].getX() + allframes[i].getWidth();
}
if (allframes[i].getY() + allframes[i].getHeight() > y) {
y = allframes[i].getY() + allframes[i].getHeight();
}
}
Dimension d = scrollPane.getVisibleRect().getSize();
if (scrollPane.getBorder() != null) {
d.setSize(d.getWidth() - scrollInsets.left - scrollInsets.right d.getHeight()
- scrollInsets.top - scrollInsets.bottom);
}
if (x <= d.getWidth())
x = ((int) d.getWidth()) - 20;
if (y <= d.getHeight())
y = ((int) d.getHeight()) - 20;
desktop.setAllSize(x y);
scrollPane.invalidate();
scrollPane.validate();
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2019-08-29 23:17 C停车场管理系统\
文件 36045 2015-04-18 21:15 C停车场管理系统\java实训.xmind
文件 118 2015-04-18 21:15 C停车场管理系统\README.md
目录 0 2019-08-29 23:17 C停车场管理系统\数据库\
文件 3145728 2015-04-18 21:15 C停车场管理系统\数据库\cardmange.mdf
文件 1048576 2015-04-18 21:15 C停车场管理系统\数据库\cardmange_log.ldf
文件 725 2019-07-05 21:54 C停车场管理系统\数据库\第三阶段及第四阶段设计.sql
目录 0 2019-08-29 23:17 C停车场管理系统\源码\
目录 0 2019-08-29 23:17 C停车场管理系统\源码\carsituation_man\
文件 356 2019-07-02 23:36 C停车场管理系统\源码\carsituation_man\.classpath
目录 0 2019-08-29 23:17 C停车场管理系统\源码\carsituation_man\.myeclipse\
目录 0 2019-08-29 23:17 C停车场管理系统\源码\carsituation_man\.myeclipse\profiler\
文件 873 2015-04-18 21:15 C停车场管理系统\源码\carsituation_man\.myeclipse\profiler\Loginfr
文件 841 2015-04-18 21:15 C停车场管理系统\源码\carsituation_man\.myeclipse\profiler\Mdif
文件 375 2015-04-18 21:15 C停车场管理系统\源码\carsituation_man\.project
目录 0 2019-08-29 23:17 C停车场管理系统\源码\carsituation_man\.settings\
文件 617 2015-04-18 21:15 C停车场管理系统\源码\carsituation_man\.settings\org.eclipse.jdt.core.prefs
文件 85790 2019-07-03 15:33 C停车场管理系统\源码\carsituation_man\123.jpg
目录 0 2019-08-29 23:17 C停车场管理系统\源码\carsituation_man\bin\
目录 0 2019-08-29 23:17 C停车场管理系统\源码\carsituation_man\bin\whsdu\
目录 0 2019-08-29 23:17 C停车场管理系统\源码\carsituation_man\bin\whsdu\se\
目录 0 2019-08-29 23:17 C停车场管理系统\源码\carsituation_man\bin\whsdu\se\Common\
文件 3075 2019-07-05 09:45 C停车场管理系统\源码\carsituation_man\bin\whsdu\se\Common\MDIDesktopManager.class
文件 3752 2019-07-05 08:09 C停车场管理系统\源码\carsituation_man\bin\whsdu\se\Common\MDIDesktopPane.class
目录 0 2019-08-29 23:17 C停车场管理系统\源码\carsituation_man\bin\whsdu\se\DAL\
文件 10183 2019-07-05 07:57 C停车场管理系统\源码\carsituation_man\bin\whsdu\se\DAL\Dal.class
目录 0 2019-08-29 23:17 C停车场管理系统\源码\carsituation_man\bin\whsdu\se\DAO\
文件 942 2019-07-03 13:40 C停车场管理系统\源码\carsituation_man\bin\whsdu\se\DAO\charger.class
文件 1881 2019-07-03 13:40 C停车场管理系统\源码\carsituation_man\bin\whsdu\se\DAO\park.class
文件 763 2019-07-03 13:40 C停车场管理系统\源码\carsituation_man\bin\whsdu\se\DAO\sit_infor.class
文件 1861 2019-07-03 13:40 C停车场管理系统\源码\carsituation_man\bin\whsdu\se\DAO\users.class
............此处省略79个文件信息
相关资源
- java串口通信全套完整代码-导入eclip
- jsonarray所必需的6个jar包.rar
- 三角网构TIN生成算法,Java语言实现
- java代码编写将excel数据导入到mysql数据
- Java写的cmm词法分析器源代码及javacc学
- JAVA JSP公司财务管理系统 源代码 论文
- JSP+MYSQL旅行社管理信息系统
- 推荐算法的JAVA实现
- 基于Java的酒店管理系统源码(毕业设
- java-图片识别 图片比较
- android毕业设计
- java23种设计模式+23个实例demo
- java Socket发送/接受报文
- JAVA828436
- java界面美化 提供多套皮肤直接使用
- 在线聊天系统(java代码)
- 基于Java的图书管理系统807185
- java中实现将页面数据导入Excel中
- java 企业销售管理系统
- java做的聊天系统(包括正规课程设计
- Java编写的qq聊天室
- 商店商品管理系统 JAVA写的 有界面
- JAVA开发聊天室程序
- 在linux系统下用java执行系统命令实例
- java期末考试试题两套(答案) 选择(
- JAVA3D编程示例(建模、交互)
- Java 文件加密传输
- java做的房产管理系统
- 基于jsp的bbs论坛 非常详细
- [免费]java实现有障碍物的贪吃蛇游戏
评论
共有 条评论