Skip to content

Instantly share code, notes, and snippets.

@proteux
Last active December 12, 2015 03:08
Show Gist options
  • Save proteux/4704000 to your computer and use it in GitHub Desktop.
Save proteux/4704000 to your computer and use it in GitHub Desktop.
RNT AddIn - Overloaded WorkspaceControl Constructor
/// <summary>
/// AddIn constructor: stores the design mode flag
/// and lets the standard constructor create the UI
/// </summary>
/// <param name="inDesignMode">true if we're on a workspace designer</param>
public WorkspaceControl(bool inDesignMode) : this()
{
this.inDesignMode = inDesignMode;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment