Forum |  HardWare.fr | News | Articles | PC | S'identifier | S'inscrire | Shop Recherche
759 connectés 

  FORUM HardWare.fr
  Programmation
  Python

  [wxpython] Pourquoi le SpinButton n'apparaît pas ?

 


 Mot :   Pseudo :  
 
Bas de page
Auteur Sujet :

[wxpython] Pourquoi le SpinButton n'apparaît pas ?

n°1361367
psychotek
Posté le 07-05-2006 à 18:08:24  profilanswer
 

Bonjour,
J'ai un problème avec un SpinButton que je mets dans une boîte de dialogue. Les flêches pour changer de valeur apparaîssent bien mais pas le contenu du SpinButton. Vous sauriez pourquoi ?
Merci
Voici mon code :

Code :
  1. class SpinDialog(Dialog):
  2.    
  3.     def __init__(self, parent, message, title, min, max):
  4.         Dialog.__init__(self, parent, NewId(), title)
  5.        
  6.         sizer = BoxSizer(VERTICAL)
  7.        
  8.         label = StaticText(self, NewId(), message)
  9.         sizer.Add(label, 0, ALIGN_CENTER_VERTICAL | ALL, 5)
  10.        
  11.         self.__spin = SpinButton(self, NewId(), style=SP_VERTICAL | SP_ARROW_KEYS)
  12.         self.__spin.SetRange(min, max)
  13.         self.__spin.SetValue(1)
  14.        
  15.         sizer.Add(self.__spin, 0, ALIGN_CENTER | ALL, 5)
  16.        
  17.         btnsizer = StdDialogButtonSizer()
  18.         btn = Button(self, ID_OK)
  19.         btn.SetDefault()
  20.         btnsizer.AddButton(btn)
  21.         btnsizer.AddButton(Button(self, ID_CANCEL))
  22.         btnsizer.Realize()
  23.        
  24.         sizer.Add(btnsizer, 0, ALIGN_CENTER_VERTICAL | ALL, 5)
  25.        
  26.         self.SetSizer(sizer)
  27.         sizer.Fit(self)

mood
Publicité
Posté le 07-05-2006 à 18:08:24  profilanswer
 

n°1361617
psychotek
Posté le 08-05-2006 à 12:05:09  profilanswer
 

Dans la démo de wxPython, il est écrit "Portable programs should try to use wx.SpinCtrl instead as wx.SpinButton is not  
implemented for all platforms (Win32 and GTK only currently)."
 
Tout est dit.


Aller à :
Ajouter une réponse
  FORUM HardWare.fr
  Programmation
  Python

  [wxpython] Pourquoi le SpinButton n'apparaît pas ?

 

Sujets relatifs
py2exe : pb avec la lib wxPython[wxPython] Screenshot d'un wxGLCanvas
Email HTML, php n'apparait pas[wxPython] Rafraichissement affichage
[wxPython] le DeleteAllPages() d'un Choicebook fait tout planterwxPython et Unicode
wxPython et checklistbox[Visual Basic 6] - Compter le nombre de fois qu'une lettre apparait
[résolu] spinbutton qui fait n'importe quoi .... 
Plus de sujets relatifs à : [wxpython] Pourquoi le SpinButton n'apparaît pas ?


Copyright © 1997-2022 Hardware.fr SARL (Signaler un contenu illicite / Données personnelles) / Groupe LDLC / Shop HFR