Todd Berman wrote:
I believe there is a signal called OpenUri or OpenUrl or something that
can be used for that.

One would think so, but then again... Here's the relevant stuff:

class WebControl {
    public event Gecko.OpenUriHandler OpenUri;
}

public delegate void OpenUriHandler (object o, Gecko.OpenUriArgs args)

public class OpenUriArgs {
    public object [] Args { get; set; }
    public string AURI { get; }
    public object RetVal { get; set; }
}

If you can see how to go from there to sending the control data... (Other related events are just as opaque.)

--
- Joshua Tauberer

http://taubz.for.net

** Nothing Unreal Exists **


_______________________________________________ Mono-docs-list maillist - [EMAIL PROTECTED] http://lists.ximian.com/mailman/listinfo/mono-docs-list

Reply via email to