Thanks Brian, I could do it. actually it needs all the three mouse
events - LeftDown, LeftUp and MouseMove.
with regards,
Ashoka
--
http://mail.python.org/mailman/listinfo/python-list
ash wrote:
> I have another query for you - how can i make a captionless frame
> draggable in wxWindows?
If you look at the wxPython demo, there's a Shaped Window demo under
Miscellaneous that does this. The key portion is on line 86 in my
version:
#v+
def OnMouseMove(self, evt):
if evt.Drag
Thanks Brian, that was a good introduction.
I have another query for you - how can i make a captionless frame
draggable in wxWindows?
--
http://mail.python.org/mailman/listinfo/python-list
Thanks Steve, i found out the solution to the problem. but a good
tutorial on sizers is still missing.
--
http://mail.python.org/mailman/listinfo/python-list
ash wrote:
> Thanks Steve, i found out the solution to the problem. but a good
> tutorial on sizers is still missing.
Try this article I wrote a while back. It should at least help you get
started. The code samples are written in C++, but they are trivially
translated to python. (Change -> to
Ashok wrote:
> hi,
> i am trying to develop a small gui app using boa constructor. say this
> app has one frame which has one static text control. i want the frame
> to resize itself to the width of the text contrl when i change the
> label of the text control via SetLabel(). how can i do this in b