Hi,
I have been attempting to perform the following
public override ToolPart[] GetToolParts()
{
ToolPart[] toolparts = new ToolPart[1];
WebPartToolPart wptp = new WebPartToolPart();
CustomPropertyToolPart custom = new CustomPropertyToolPart();
toolparts[1] = custom;
return toolparts;
}
which allows me to only show the webpart settings I create. However, to do this I need to derive from Microsoft.SharePoint.WebPartPages.ToolPart.
http://msdn.microsoft.com/en-us/library/ms948930.aspx
Is their anyway to do the samething, but using the recommended System.Web.UI.WebControls?
Hope that makes sense?
Kind Regards