Am Montag, 3. Dezember 2007 19:04 schrieben Sie:
> Gdk.CursorType.Watch is what we use in our Cross-platform application,
> and it works as expected for us.  Cursors are set on a GdkWindow, so
> make sure your cursor is inside the window to see it change.
>
I've already taken that into account:

                ///<summary>
                ///true, if this form is locked and the cursor has the
                ///shape of an hourglass (Windows) or watch (Linux).
                ///</summary>
                public bool Hourglass {

                        set {
                                if (value == true) {
                                        this.GdkWindow.Cursor = new Cursor
                                                (Gdk.CursorType.Watch);
                                }
                                else {
                                        this.GdkWindow.Cursor = new Cursor
                                                (Gdk.CursorType.LeftPtr);
                                }
                        }
                }


> What Gtk+ version are you using?
>
1.2.10-926

Regards
Jacek

Attachment: pgprX09y3voLE.pgp
Description: PGP signature

_______________________________________________
Gtk-sharp-list maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/gtk-sharp-list

Reply via email to