comparison Translatable/TranslatableLabel.cs @ 25:f71693260828

Re #47: Add translatable GTK# widgets * Add TranslatableLabel class
author IBBoard <dev@ibboard.co.uk>
date Wed, 29 Dec 2010 16:57:25 +0000
parents
children 2d76577e28ff
comparison
equal deleted inserted replaced
24:3da8cf449717 25:f71693260828
1 // This file (TranslatableLabel.cs) is a part of the IBBoard.GtkSharp project and is copyright 2010 IBBoard
2 //
3 // // The file and the library/program it is in are licensed and distributed, without warranty, under the GNU LGPL license, either version 3 of the License or (at your option) any later version. Please see COPYING for more information and the full license.
4
5 using System;
6 using Gtk;
7 using IBBoard.Lang;
8
9 namespace IBBoard.GtkSharp.Translatable
10 {
11 [System.ComponentModel.ToolboxItem("Translatable Label")]
12 public class TranslatableLabel : Label, ITranslatable
13 {
14 //Do nothing special
15 }
16 }
17