view Windows/Forms/IBBToolStripButton.cs @ 12:7274f305eb49

Fixes #28: Create translatable toolbar items for new toolbars * Create translatable toolstrip button and split toolstrip button (we already had old-school toolbar buttons and needed toolstrip buttons)
author IBBoard <dev@ibboard.co.uk>
date Tue, 09 Mar 2010 21:00:42 +0000
parents
children
line wrap: on
line source

// This file (IBBToolStripButton.cs) is a part of the IBBoard.Windows.Forms library and is copyright 2009 IBBoard.
//
// The file and the library/program it is in are licensed under the GNU LGPL license, either version 3 of the License or (at your option) any later version. Please see COPYING.LGPL for more information and the full license.

using System;
using System.Collections;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Windows.Forms;
using IBBoard.Lang;

namespace IBBoard.Windows.Forms
{
	/// <summary>
	/// A translatable ToolStripButton using IBBoard's ITranslatable interface.
	/// </summary>
	public class IBBToolStripButton : System.Windows.Forms.ToolStripButton, ITranslatable
	{
		//Marker interface for translations
	}
}