An interesting little issue that we came across. After adding the ‘TitleBarWebPart‘ there wasn’t an obvious way to remove it from the Workspace in SharePoint. What we had to do was load up SharePoint Designer and remove it from the source code which ended up being quite easy. Basically your looking for this tag:
<WebPartPages:TitleBarWebPart runat="server"
ZoneID="Center" PartImageLarge=""
MissingAssembly="Cannot import this Web Part." IsIncluded="True"
Description="" PartOrder="3" AllowHide="True"
ChromeType="None" AllowMinimize="False" DetailLink=""
PartImageSmall="" FrameState="Normal"
AllowRemove="False" ExportMode="All"
AllowConnect="True" IsVisible="True"
FrameType="None" AllowClose="False"
HelpLink="" IsIncludedFilter="" HelpMode="Modeless"
ConnectionID="00000000-0000-0000-0000-000000000000"
AllowZoneChange="True" ID="g_32a8b37d_41f8_4151_931b_57b53ccc8c11"
Title="TitleBarWebPart" ExportControlledProperties="True"
SuppressWebPartChrome="False" Dir="Default"
AllowEdit="True" __MarkupType="vsattributemarkup"
__WebPartId="{32A8B37D-41F8-4151-931B-57B53CCC8C11}"
WebPart="true" Height="" Width="">
</WebPartPages:TitleBarWebPart>
Simply deleting this tag will remove the ‘TitleBarWebPart‘ from your page.