コード例 #1
0
ファイル: WebViewApp.cs プロジェクト: llenroc/openmvvm
        public WebViewApp(ViewModelLocatorBase viewModelLocator, IBridge bridge, Action onAppReady)
        {
            this.viewModelLocator = viewModelLocator;
            this.onAppReady       = onAppReady;

            this.bridgeMapper = new BridgeMapper(bridge, this);
        }
コード例 #2
0
ファイル: BindingInfo.cs プロジェクト: stankonikolic/openmvvm
 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;
 }