annotate Windows/Forms/Delegates.cs @ 21:031354c2a34c default tip

* Add Hyperlink that does sensible stuff by default
author IBBoard <dev@ibboard.co.uk>
date Sat, 19 May 2012 16:45:19 +0100
parents 02a7c7aaf2c1
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4
1acdb0aff4a7 Re #8 - LGPL license all libraries
IBBoard <dev@ibboard.co.uk>
parents: 0
diff changeset
1 // This file (ColorableStatusBar.cs) is a part of the IBBoard.Windows.Forms library and is copyright 2009 IBBoard.
1acdb0aff4a7 Re #8 - LGPL license all libraries
IBBoard <dev@ibboard.co.uk>
parents: 0
diff changeset
2 //
1acdb0aff4a7 Re #8 - LGPL license all libraries
IBBoard <dev@ibboard.co.uk>
parents: 0
diff changeset
3 // 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.
1acdb0aff4a7 Re #8 - LGPL license all libraries
IBBoard <dev@ibboard.co.uk>
parents: 0
diff changeset
4
7
02a7c7aaf2c1 * Fix line terminators
IBBoard <dev@ibboard.co.uk>
parents: 4
diff changeset
5 using System;
02a7c7aaf2c1 * Fix line terminators
IBBoard <dev@ibboard.co.uk>
parents: 4
diff changeset
6 using System.Windows.Forms;
02a7c7aaf2c1 * Fix line terminators
IBBoard <dev@ibboard.co.uk>
parents: 4
diff changeset
7
02a7c7aaf2c1 * Fix line terminators
IBBoard <dev@ibboard.co.uk>
parents: 4
diff changeset
8 namespace IBBoard.Windows.Forms
02a7c7aaf2c1 * Fix line terminators
IBBoard <dev@ibboard.co.uk>
parents: 4
diff changeset
9 {
02a7c7aaf2c1 * Fix line terminators
IBBoard <dev@ibboard.co.uk>
parents: 4
diff changeset
10 public delegate void ToolBarButtonRangeDelegate(ToolBarButton[] buttons);
02a7c7aaf2c1 * Fix line terminators
IBBoard <dev@ibboard.co.uk>
parents: 4
diff changeset
11 public delegate void ToolBarButtonDelegate(ToolBarButton button);
02a7c7aaf2c1 * Fix line terminators
IBBoard <dev@ibboard.co.uk>
parents: 4
diff changeset
12 }