Vous devez être membre et vous identifier pour publier un article.
Les visiteurs peuvent toutefois commenter chaque article par une réponse.
JRibbon dualscreen
Article publié le 07/02/2010 17:36:23Si vous utilisez les JRibbon du projet flamingo, vous avez peut-être constaté qu’il existe un problème lorsque l’application est étirée sur deux écrans, mais pas en mode "plein écran".
Il est possible de corriger ceci en modifiant la classe JRibbon, vers la ligne 1804, où nous trouvons ceci :
Code Java (3 lignes)
if ((x + pw) › (scrBounds.x + scrBounds.width)) { x = scrBounds.x + scrBounds.width - pw; }
Il suffit d’ajouter un petit test comme ceci :
Code Java (4 lignes)
if ((x + pw) › (scrBounds.x + scrBounds.width)) { x = scrBounds.x + scrBounds.width - pw; if(x‹0)x=0; }
Pour ceux qui ne connaissent pas encore le projet flamingo, il propose les fonctionnalités des rubans (comme dans Office 2007) pour des applications Swing.
Voici quelques exemples :
Un article de Steph
Source : indéterminée
English translation
You have asked to visit this site in English. For now, only the interface is translated, but not all the content yet.If you want to help me in translations, your contribution is welcome. All you need to do is register on the site, and send me a message asking me to add you to the group of translators, which will give you the opportunity to translate the pages you want. A link at the bottom of each translated page indicates that you are the translator, and has a link to your profile.
Thank you in advance.
Document created the 13/09/2004, last modified the 26/10/2018
Source of the printed document:https://www.gaudry.be/en/ast-rf-451.html
The infobrol is a personal site whose content is my sole responsibility. The text is available under CreativeCommons license (BY-NC-SA). More info on the terms of use and the author.