예제 #1
0
        public void Initialize(IDsLoaderContentProvider content, Window window, IAppCommandLineArgs appArgs)
        {
            this.window     = window;
            this.appArgs    = appArgs;
            dsLoaderControl = new DsLoaderControl();
            this.content    = content;
            this.content.SetLoadingContent(dsLoaderControl);

            this.window.ContentRendered += Window_ContentRendered;
            this.window.IsEnabled        = false;
        }
예제 #2
0
 public void Initialize(IDsLoaderContentProvider content, Window window, IAppCommandLineArgs args)
 {
     Debug.Assert(!(windowLoader is null));
     windowLoader.Initialize(content, window, args);
 }
예제 #3
0
		public void Initialize(IDsLoaderContentProvider content, Window window, IAppCommandLineArgs appArgs) {
			this.window = window;
			this.appArgs = appArgs;
			dsLoaderControl = new DsLoaderControl();
			this.content = content;
			this.content.SetLoadingContent(dsLoaderControl);

			this.window.ContentRendered += Window_ContentRendered;
			this.window.IsEnabled = false;
		}
예제 #4
0
		public void Initialize(IDsLoaderContentProvider content, Window window, IAppCommandLineArgs args) {
			Debug.Assert(windowLoader != null);
			windowLoader.Initialize(content, window, args);
		}