autoscroll wxTreeCtrl

BlitzMax Forums/Brucey's Modules/autoscroll wxTreeCtrl

Warner(Posted 2009) [#1]
Edit: Posting on this forum really helps somehow. I figured something out now. This is a real basic version, but if you combine it with a timer, it seems to work allright:



Brucey(Posted 2009) [#2]
btw, if you do this, the code looks a little cleaner :
	Function OnLeave(evt:wxEvent)
		MyApp(evt.parent)._OnLeave(wxMouseEvent(evt))
	End Function

	Method _OnLeave(evt:wxMouseEvent)
		....
	End Method


Oh, and Strict / SuperStrict is your friend ;-)


Warner(Posted 2009) [#3]
Thank you Brucey!