ActiveMenu.cs
1 /*=============================================================================
2 *
3 * (C) Copyright 2011, Michael Carlisle (mike.carlisle@thecodeking.co.uk)
4 *
5 * http://www.TheCodeKing.co.uk
6 *
7 * All rights reserved.
8 * The code and information is provided "as-is" without waranty of any kind,
9 * either expresed or implied.
10 *
11 *-----------------------------------------------------------------------------
12 * History:
13 * 01/09/2007 Michael Carlisle Version 1.0
14 *=============================================================================
15 */
16 using System.Windows.Forms;
17 
18 namespace sage.ew.formul.ButtonTittle
19 {
41  public static class ActiveMenu
42  {
46  public static IActiveMenu GetInstance(Form form)
47  {
48  return ActiveMenuImpl.GetInstance(form);
49  }
50  }
51 }