public LiveClipboardComponentDisplay(ContentSourceInfo contentSource)
 {
     // if this format handler is "built-in" then override the content-source to
     // list it as "windows-live writer"
     if (ContentSourceManager.ContentSourceIsPlugin(contentSource.Id))
     {
         _icon = contentSource.Image;
         _name = contentSource.Name;
     }
     else
     {
         _icon = _writerLogoBitmap;
         _name = ApplicationEnvironment.ProductName;
     }
 }