Ejemplo n.º 1
0
            public void NewWindow3(ref object ppDisp, ref bool cancel, UInt32 dwFlags, string bstrUrlContext, string bstrUrl)
            {
                var e = new WebBrowserNewWindow3EventArgs(ref ppDisp, bstrUrlContext, bstrUrl);

                parent.OnNewWindow3(e);
                ppDisp = e.ppDisp;
                cancel = e.Cancel;
            }
Ejemplo n.º 2
0
 protected virtual void OnNewWindow3(WebBrowserNewWindow3EventArgs e)
 {
     NewWindow3(this, e);
 }
Ejemplo n.º 3
0
		protected virtual void OnNewWindow3(WebBrowserNewWindow3EventArgs e)
		{
			NewWindow3(this, e);
		}
Ejemplo n.º 4
0
			public void NewWindow3(ref object ppDisp, ref bool cancel, UInt32 dwFlags, string bstrUrlContext, string bstrUrl)
			{
				var e = new WebBrowserNewWindow3EventArgs(ref ppDisp, bstrUrlContext, bstrUrl);
				parent.OnNewWindow3(e);
				ppDisp = e.ppDisp;
				cancel = e.Cancel;
			}