ComponentFactory.Krypton.Toolkit.KryptonPaletteImagesTreeView.PopulateFromBase C# (CSharp) Method

PopulateFromBase() public method

Populate values from the base palette.
public PopulateFromBase ( ) : void
return void
        public void PopulateFromBase()
        {
            _plus = _redirect.GetTreeViewImage(false);
            _minus = _redirect.GetTreeViewImage(true);
        }

Usage Example

Esempio n. 1
0
 /// <summary>
 /// Populate values from the base palette.
 /// </summary>
 public void PopulateFromBase()
 {
     // Populate only the designated styles
     _imagesCheckBox.PopulateFromBase();
     _imagesContextMenu.PopulateFromBase();
     _imagesDropDownButton.PopulateFromBase();
     _imagesGalleryButtons.PopulateFromBase();
     _imagesRadioButton.PopulateFromBase();
     _imagesTreeView.PopulateFromBase();
 }