taking your examples I declared the following:

 def init_password(self):

 

 l = GtkLabel("User/Password")

self.w_vbox.pack_end(l)

l.show()

 

 user = GtkEntry()

self.w_vbox.pack_end(l)

user.show()

 

 password = GtkEntry()

self.w_vbox.pack_end(l)

password.show()

 

I want to show them on the same row.

I want the password entry to show * when written on.

can someone help me? 

 

Reply via email to