Skip to content

budul100/PrismTaskPanes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PrismTaskPanes

Wrapper for PRISM based task panes in Microsoft Office

DryIoc

The NuGet packages for DryIoc can be found on the following locations:

These elements must be registered by using regasm.exe with the parameter /codebase.

View

The relevant view packages can be found on the following locations:

How-To

These two register functions must be added to each Excel addin:

[ComRegisterFunction]
public static void Register(Type type)
{
    RegisterFunction(type);

    ExcelProvider.RegisterProvider<AddIn>();
}

[ComUnregisterFunction]
public static void Unregister(Type type)
{
    UnregisterFunction(type);

    ExcelProvider.UnregisterProvider<AddIn>();
}

These two register functions must be added to each PowerPoint addin:

[ComRegisterFunction]
public static void Register(Type type)
{
    RegisterFunction(type);

    PowerPointProvider.RegisterProvider<AddIn>();
}

[ComUnregisterFunction]
public static void Unregister(Type type)
{
    UnregisterFunction(type);

    PowerPointProvider.UnregisterProvider<AddIn>();
}

About

Wrapper for PRISM based task panes in Microsoft Office

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published