Пример #1
0
        public WebViewApp(ViewModelLocatorBase viewModelLocator, IBridge bridge, Action onAppReady)
        {
            this.viewModelLocator = viewModelLocator;
            this.onAppReady       = onAppReady;

            this.bridgeMapper = new BridgeMapper(bridge, this);
        }
Пример #2
0
 public BindingInfo(string rootPath, WebViewApp webViewApp, bool insideCollection, object observableObject, BridgeMapper bridgeMapper)
 {
     this.RootPath         = rootPath;
     this.webViewApp       = webViewApp;
     this.bridgeMapper     = bridgeMapper;
     this.ObservableObject = observableObject;
     this.InsideCollection = insideCollection;
 }