Skip to main content
All docs
V25.2
  • SkinManager.RegisterSkinPatch(String, Boolean) Method

    SECURITY-RELATED CONSIDERATIONS

    Using file paths sourced from untrusted input may expose unauthorized files or allow unintended file access. Always validate and normalize all external paths to prevent path manipulation.

    Loads a skin patch from the local storage file.

    Namespace: DevExpress.Skins

    Assembly: DevExpress.Utils.v25.2.dll

    NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core

    Declaration

    public void RegisterSkinPatch(
        string filePath,
        bool registerSkinPatchPalettes = false
    )

    Parameters

    Name Type Description
    filePath String

    The path to a file that stores a patch.

    Optional Parameters

    Name Type Default Description
    registerSkinPatchPalettes Boolean False

    true to register palettes from the patch, false to leave palettes of the default skin.

    Remarks

    See this article for more information: Skin Patches

    See Also