OutlookBarItemConverter.cs
上传用户:nnpulika
上传日期:2013-02-15
资源大小:597k
文件大小:1k
源码类别:

状态条

开发平台:

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. }