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