mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 19:35:42 +00:00
f3ad31837b
* TestCheckButton.cs: * TestDialog.cs: * TestFileSelection.cs: * TestFlipping.cs: * TestMenus.cs: * TestRadioButton.cs: * TestRange.cs: * TestStatusbar.cs: * TestTooltip.cs: Removed erroneous references to SignalArgs, and changed EventHandlers to more appropriate specialized Handlers instead. svn path=/trunk/gtk-sharp/; revision=5869
38 lines
569 B
C#
38 lines
569 B
C#
//
|
|
// TestToolTip.cs
|
|
//
|
|
// Author: Duncan Mak (duncan@ximian.com)
|
|
//
|
|
// Copyright (C) 2002, Duncan Mak, Ximian Inc.
|
|
//
|
|
|
|
using System;
|
|
|
|
using Gtk;
|
|
using GtkSharp;
|
|
|
|
namespace WidgetViewer {
|
|
public class TestToolTip
|
|
{
|
|
static Window window = null;
|
|
static Tooltips tooltips = null;
|
|
|
|
public Gtk.Window Create ()
|
|
{
|
|
window = new Window ("Tooltips");
|
|
window.Width = 200;
|
|
tooltips = new Tooltips ();
|
|
|
|
window.Data ("tooltips", tooltip);
|
|
|
|
return window;
|
|
}
|
|
|
|
static void Window_Delete (object o, EventArgs args)
|
|
{
|
|
window.Destroy ();
|
|
}
|
|
}
|
|
}
|
|
|