Herzlich Willkommen, lieber Gast!
  Sie befinden sich hier:

  Forum » Java » JButton

Forum | Hilfe | Team | Links | Impressum | > Suche < | Mitglieder | Registrieren | Einloggen
  Quicklinks: MSDN-Online || STL || clib Reference Grundlagen || Literatur || E-Books || Zubehör || > F.A.Q. < || Downloads   

Autor Thread - Seiten: > 1 <
000
08.06.2006, 12:11 Uhr
Patricia



Hallo

Ich schreibe gerade eine kleine Swinganwendung beider mich die Buttons ändern. Ich würde die Buttons gerne alle gleich groß ausgeben lasse. Das sollte auch gehen, da es ja setSize() gibt. Jedoch wird es leider einfach ignoriert was ich da reinschreibe ...

Hat jemand ne Idee woran das liegen könnte?

Grüße Patricia
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
001
08.06.2006, 13:50 Uhr
J-jayz-Z
Perl Crack ala Carte
(Operator)


Zeig mal etwas Code. Je nachdem wird es wohl am Layoutmanager liegen, weil sich das Layout verziehen würde oder so, wenn sich die Größe ändert. Ansonsten ist setSize() und evtl repaint() danach schon richtig ...
--
perl -Mstrict -Mwarnings -e 'package blub; sub new { bless {} } sub bar {my $self=shift; $self->{bla}="66756e2d736f66742e6465"; return $self->{bla};} my $foo=blub->new();print "Hallo ";print pack("H*",$foo->bar()); print "\n"'
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
002
08.06.2006, 15:28 Uhr
Patricia




Code:
    public myPanel(){

        btnLogin         = new JButton("Login");
        btn.setSize(200, 100);
        btn.addActionListener(listener);
        this.setLayout(layout)
        
        addComponent(layout, btnLogin, 1,0);
    }



    protected void addComponent( GridBagLayout layout, Component comp,int x, int y) {
        GridBagConstraints layoutConst = new GridBagConstraints();
        layoutConst.fill = GridBagConstraints.BOTH;
        layoutConst.insets = new Insets(10,10,10,10);
        layoutConst.gridx = x;
        layoutConst.gridy = y;
        layoutConst.gridwidth = 1;
        layoutConst.gridheight = 1;
        layoutConst.weightx = 1.0;
        layoutConst.weighty = 1.0;
        layout.setConstraints( comp, layoutConst );
        this.add( comp );
    }


das panel wird in ein Jframe geladen daher denke ich sollte es ohne repaint gehen. da das frame erst nach dem hinzufügen des panels gezeichnet wird.
 
Profil || Private Message || Suche Download || Zitatantwort || Editieren || Löschen || IP
Seiten: > 1 <     [ Java ]  


ThWBoard 2.73 FloSoft-Edition
© by Paul Baecher & Felix Gonschorek (www.thwboard.de)

Anpassungen des Forums
© by Flo-Soft (www.flo-soft.de)

Sie sind Besucher: