public ContextMenu(NotificationBrowser browser, INotificationInterface notificationInterface) : base(browser.browserComponent)
 {
     this.notificationInterface = notificationInterface;
 }
Exemple #2
0
 private static BrowserSetup CreateSetupObject(NotificationBrowser browser)
 {
     return(BaseBrowser.CreateSetupObject(browser.browserComponent));
 }
 private static BrowserSetup CreateSetupObject(NotificationBrowser browser, INotificationInterface notificationInterface)
 {
     return(BaseBrowser.CreateSetupObject(browser.browserComponent, new BrowserSetup {
         ContextMenuHandler = new ContextMenu(browser, notificationInterface)
     }));
 }