Пример #1
0
        void IFormViewControl.Initialize(FormView parent)
        {
            _formView = (CertDetailsFormView)parent;

            var il = new ImageList();

            il.Images.AddStrip(MiscUtilsService.GetToolbarImage());
            lstCertDetails.SmallImageList = il;

            InitData();
        }
Пример #2
0
        public VMCertStoreSnapIn()
        {
            VMCertStoreSnapInEnvironment.Instance.LoadLocalData();

            var il = new ImageList();

            this.SmallImages.AddStrip(MiscUtilsService.GetToolbarImage());

            this.RootNode = new VMCertStoreRootNode();

            this.RootNode.ImageIndex = this.RootNode.SelectedImageIndex = (int)VMCertStoreImageIndex.VecsStore;
        }
Пример #3
0
 public VMCASnapIn()
 {
     VMCASnapInEnvironment.Instance.LoadLocalData();
     this.SmallImages.AddStrip(MiscUtilsService.GetToolbarImage());
     this.RootNode = new VMCARootNode();
 }