Exemplo n.º 1
0
 public NewViewEventArgs(IWebBrowserView view, BrowserWindowStartMode startMode, TargetAddressType addressType)
 {
     ArgumentUtility.CheckNotNull ("view", view);
       StartMode = startMode;
       AddressType = addressType;
       View = view;
 }
Exemplo n.º 2
0
 protected void ViewCreationDone(IWebBrowserView view, BrowserWindowStartMode startMode, TargetAddressType addressType)
 {
     if (ViewCreated != null)
     ViewCreated (this, new NewViewEventArgs (view, startMode, addressType));
 }