Exemple #1
0
        public RepositoryExplorerViewFactory(IWorkingEnvironment environment)
            : base(Guids.RepositoryExplorerView, Resources.StrRepositoryExplorer, CachedResources.Bitmaps["ImgRepositoryExplorer"], true)
        {
            Verify.Argument.IsNotNull(environment, nameof(environment));

            RootItem            = new RepositoryRootItem(environment, null);
            DefaultViewPosition = ViewPosition.Left;
        }
Exemple #2
0
        public RepositoryExplorerViewFactory(IWorkingEnvironment environment)
            : base(Guids.RepositoryExplorerView, Resources.StrRepositoryExplorer, CachedResources.Bitmaps["ImgRepositoryExplorer"], true)
        {
            Verify.Argument.IsNotNull(environment, "environment");

            _rootItem = new RepositoryRootItem(environment, null);
            DefaultViewPosition = ViewPosition.Left;
        }