Looking to start learning Python?

Begin Here

Tag: wxPython

wxPython: Creating a Simple Tic-Tac-Toe Game

July 30, 2013 by Mike
I recently became aware of a Tic-Tac-Toe challenge on github where the programmer is supposed to create a Tic-Tac-Toe game that let's the player win every time. You have to code it in Python, although the people behind this challenge prefer you do it with Django. I don't know Django very well, so I decided […]

wxPython: Creating a Grid with XRC

July 24, 2013 by Mike
I recently tried to help someone (on the wxPython mailing list) figure out how to use a Grid widget (wx.grid.Grid) via XRC. It should be simple, but if you run the code below, you'll discover a weird issue: import wx from wx import xrc ######################################################################## class MyApp(wx.App): def OnInit(self): self.res = xrc.XmlResource("grid.xrc") frame = self.res.LoadFrame(None, […]

Using Python to Teach About Finding the Digital Root

July 16, 2013 by Mike
My wife teaches 3rd grade math and she recently learned about the process of obtaining the digital root of numbers. The digital root is a single digit number found by summing the individual digits. So for 15, you would add 1+5 to get 6. Thus 6 is the digital root of 15. The trainer that […]

wxPython: Updating Your Application with Esky

July 12, 2013 by Mike
Today we're going to learn about one of wxPython's newer features: wx.lib.softwareupdate. It was actually added a couple of years ago. What this allows you to do is add update abilities to your software. As far as I can tell, this mixin only allows prompted updates, not silent updates. Getting Started It's built into wxPython […]

wxPython: Making your Frame Maximize or Full Screen

July 12, 2013 by Mike
This topic comes up from time to time every year. Someone will ask about how to make their application full screen or how to just make it maximize when it first loads. So we'll spend a little time showing you how to do each of these activities.

wxPython: How to Minimize to System Tray

July 12, 2013 by Mike
I see people asking about this topic from time to time in various places on the internet. Making wxPython minimize to the tray is really quite simple, but there is at least one thing you need to watch out for. We'll get to that, but first we need to spend some time looking at some […]
1 12 13 14 15 16 28
View More

End of content

No more pages to load

Copyright © 2024 Mouse Vs Python | Powered by Pythonlibrary