예제 #1
0
 public SidebarViewModel()
 {
     // Populate bindings.
     Page = Page.None;
     PopulateProcesses();
     _watcher = new ProcessWatcher();
     _watcher.OnNewProcess     += OnNewProcess;
     _watcher.OnRemovedProcess += OnRemovedProcess;
 }
예제 #2
0
 public PopupWaiting(Pages.Page parent)
 {
     PanelParent = parent;
     InitializeComponent();
 }
예제 #3
0
 public PopupChoosePrintAction(Pages.Page parent)
 {
     PanelParent = parent;
     InitializeComponent();
 }
예제 #4
0
 public PopupTellCashDrawer(Pages.Page parent, Action callback)
 {
     action      = callback;
     PanelParent = parent;
     InitializeComponent();
 }
 public DomProvider(IHtmlDocument documentDom, Pages.Page invokedPageLink)
 {
     this.document    = documentDom;
     this.invokedPage = invokedPageLink;
     extractor        = new PageInfoExtractor();
 }
예제 #6
0
 public PopupChooseForm(Pages.Page parent, Action <int> callback)
 {
     action      = callback;
     PanelParent = parent;
     InitializeComponent();
 }