From: Eric <er...@ma...> - 2009-07-08 19:00:31
|
Dear all, I have written the following program: import Graphics.UI.WX main = start $ do f <- frame [text := "Traqer"] p <- panel f [] t <- textCtrl p [text := "\x3008\x3009", clientSize := sz 300 300] set f [layout := container p $ fill $ widget t, clientSize := sz 400 400] return() However a box appears instead of the unicode characters '\x3008' and '\x3009'. Does wxhaskell not support these unicode characters? |