Skip to content

Instantly share code, notes, and snippets.

@jasondown
Created August 3, 2021 07:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jasondown/5fdc1bfed149f9592c867c8ec8f89994 to your computer and use it in GitHub Desktop.
Save jasondown/5fdc1bfed149f9592c867c8ec8f89994 to your computer and use it in GitHub Desktop.
namespace Jason.Down.Blog.MutliImageAddinDemo.Controls
{
/// <summary>
/// This class wraps a custom multi-image WPF control so that it can be exposed to NAV.
/// </summary>
[ControlAddInExport("Jason.Down.Blog.MultiImageAddinDemo.Controls.MultiImageAddinHostControl")]
public class MultiImageAddinHostControl : WinFormsControlAddInBase
{
/// <summary>
/// Creates the Windows Forms control for the control add-in.
/// </summary>
/// <returns>Returns the Windows Forms control.</returns>
protected override Control CreateControl()
{
throw new NotImplementedException();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment