Hi all I am trying to use scrolled windows with wxhaskell, but it doesn't work,
Am I doing rightly? here is the code: ---------------------------------------------------- module Gui where import Graphics.UI.WXCore import Graphics.UI.WX main :: IO () main = start gui gui :: IO () gui = do f <- frame [text := "Frame"] pnl <- scrolledWindow f [scrollRate := sz 20 20] sal <- staticText pnl [text := "This is an example of using an scroll bar with wxhaskell, it looks like don't work, so it's true?"] set pnl [layout := widget sal] set f [layout := column 5 [widget pnl]] return () ---------------------------------------------------- --carlos
------------------------------------------------------------------------------ This SF.Net email is sponsored by the Verizon Developer Community Take advantage of Verizon's best-in-class app development support A streamlined, 14 day to market process makes app distribution fast and easy Join now and get one step closer to millions of Verizon customers http://p.sf.net/sfu/verizon-dev2dev
_______________________________________________ wxhaskell-users mailing list wxhaskell-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/wxhaskell-users