RebarDesigner.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.Drawing;
  3. using System.Collections;
  4. using System.ComponentModel;
  5. using System.ComponentModel.Design;
  6. using System.Windows.Forms;
  7. using System.Windows.Forms.Design;
  8. using System.Reflection;
  9. namespace UtilityLibrary.Designers
  10. {
  11. /// <summary>
  12. /// Summary description for ReBarDesigner.
  13. /// </summary>
  14. public class ReBarDesigner : System.Windows.Forms.Design.ControlDesigner
  15. {
  16. #region Helper functions
  17. internal void PassMsg(ref Message m)
  18. {
  19. UtilityLibrary.CommandBars.ReBar rebar = 
  20. Control as UtilityLibrary.CommandBars.ReBar;
  21. if ( rebar != null )
  22. WndProc(ref m);
  23. }
  24. #endregion
  25. }
  26. }