コード例 #1
0
ファイル: DsLoaderService.cs プロジェクト: xisuo67/dnSpy
        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
ファイル: DsLoaderService.cs プロジェクト: xisuo67/dnSpy
 public void Initialize(IDsLoaderContentProvider content, Window window, IAppCommandLineArgs args)
 {
     Debug.Assert(!(windowLoader is null));
     windowLoader.Initialize(content, window, args);
 }
コード例 #3
0
ファイル: DsLoaderService.cs プロジェクト: manojdjoshi/dnSpy
		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
ファイル: DsLoaderService.cs プロジェクト: manojdjoshi/dnSpy
		public void Initialize(IDsLoaderContentProvider content, Window window, IAppCommandLineArgs args) {
			Debug.Assert(windowLoader != null);
			windowLoader.Initialize(content, window, args);
		}