OutlookBarItemConverter.cs
Upload User: nnpulika
Upload Date: 2013-02-15
Package Size: 597k
Code Size: 1k
Category:

StatusBar

Development Platform:

C#

  1. using System;
  2. using System.ComponentModel;
  3. using System.Globalization;
  4. using System.ComponentModel.Design.Serialization;
  5. using System.Windows.Forms;
  6. namespace UtilityLibrary.Designers
  7. {
  8. /// <summary>
  9. /// A custom TypeConvert for OutlookBarItem.  
  10. /// </summary>
  11. /// <remarks>
  12. /// We need this class in order to tell the VS.NET code generator how 
  13. /// to create OutlookBarItem objects, because we don't want them to be 
  14. /// created with a default constructor.
  15. /// </remarks>
  16. class OutlookBarItemConverter: TypeConverter 
  17. {
  18. }
  19. }