Standard.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.Themes
19 {
20  internal class Standard : ThemeBase
21  {
22  public Standard(Form form)
23  : base(form)
24  {
25  }
26  }
27 }