我如何阻止 jtattoo 让我的第二个 jframe 进入全屏?
How do i stop jtattoo from making my second jframe go full screen?
最近开始使用 jframe。
我的应用程序包含 2 个 jframes 登录和菜单。
当登录成功时,菜单 jframe 被实例化。
使用 jtattoo 我使用纹理 Laf 所以我可以自定义所有内容
菜单屏幕目前总是以全屏打开,因为它甚至隐藏了 windows 任务栏。
我想让它最大化而不是全屏。
登录框构造函数中的jtattoo代码:
Properties props = new Properties();
props.put("textureSet", "Custom");
props.put("backgroundTexture", ImageHelper.loadImage("../images/f.jpg"));
props.put("alterBackgroundTexture",ImageHelper.loadImage("../images/RolloverTexture.gif"));
props.put("rolloverTexture", ImageHelper.loadImage("../images/k.gif"));
props.put("selectedTexture", ImageHelper.loadImage("../images/DarkBackgroundTexture.jpg"));
props.setProperty("buttonColorLight", "240 240 240");
props.setProperty("buttonColorDark", "220 220 220");=
props.setProperty("centerWindowTitle", "on");
TextureLookAndFeel.setCurrentTheme(props);
UIManager.setLookAndFeel("com.jtattoo.plaf.texture.TextureLookAndFeel");
写setExtendedState(JFrame.MAXIMIZED_BOTH);在菜单框架的组件可见之前
最近开始使用 jframe。 我的应用程序包含 2 个 jframes 登录和菜单。 当登录成功时,菜单 jframe 被实例化。 使用 jtattoo 我使用纹理 Laf 所以我可以自定义所有内容 菜单屏幕目前总是以全屏打开,因为它甚至隐藏了 windows 任务栏。 我想让它最大化而不是全屏。
登录框构造函数中的jtattoo代码:
Properties props = new Properties();
props.put("textureSet", "Custom");
props.put("backgroundTexture", ImageHelper.loadImage("../images/f.jpg"));
props.put("alterBackgroundTexture",ImageHelper.loadImage("../images/RolloverTexture.gif"));
props.put("rolloverTexture", ImageHelper.loadImage("../images/k.gif"));
props.put("selectedTexture", ImageHelper.loadImage("../images/DarkBackgroundTexture.jpg"));
props.setProperty("buttonColorLight", "240 240 240");
props.setProperty("buttonColorDark", "220 220 220");=
props.setProperty("centerWindowTitle", "on");
TextureLookAndFeel.setCurrentTheme(props);
UIManager.setLookAndFeel("com.jtattoo.plaf.texture.TextureLookAndFeel");
写setExtendedState(JFrame.MAXIMIZED_BOTH);在菜单框架的组件可见之前