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