Hi to all, i am using the following code in order to set a custom image on top of a Gtk Button widget in order to be used for a touch-screen application.
Gdk.Pixbuf pixBuf = new Gdk.Pixbuf(byte[]); pixBuf = pixBuf.ScaleSimple(btn.WidthRequest, btn.HeightRequest, Gdk.InterpType.Nearest); btn.Image = new Image(pixBuf); the button is of 'Text and image" type, but i clear the text propery in order for the image to be displayed alone. The image is fetched from a byte[] inside my application and I would like to cover the whole button area, this is the reason for scaling it to the button width and height properties. Everything should work as expected but the result is not perfect. The image cannot cover the whole button area. A top-left offset is displayed instead, leaving part of the button control surface uncovered. Any ideas on how to set the image cover the whole button area? thanks in advance and i wish you all a happy and creative new year!!! -- View this message in context: http://old.nabble.com/Issue-concerning-button-image-tp26977415p26977415.html Sent from the Mono - Gtk# mailing list archive at Nabble.com. _______________________________________________ Gtk-sharp-list maillist - [email protected] http://lists.ximian.com/mailman/listinfo/gtk-sharp-list
