string resourceDictionaryFormat =
@"<UserControl
xmlns=""http://schemas.microsoft.com/winfx/2006/xaml/presentation""
xmlns:x=""http://schemas.microsoft.com/winfx/2006/xaml""
xmlns:vsm=""clr-namespace:System.Windows;assembly=System.Windows"">
<UserControl.Resources>
{0}
</UserControl.Resources>
</UserControl>";
_content.Replace(@"xmlns=""http://schemas.microsoft.com/winfx/2006/xaml/presentation""", "");
_content.Replace(@"xmlns:x=""http://schemas.microsoft.com/winfx/2006/xaml""", "");
_content.Replace(@"xmlns:vsm=""clr-namespace:System.Windows;assembly=System.Windows""", "");
return String.Format(resourceDictionaryFormat, _content.ToString());
}