mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 03:55:28 +00:00
fba841b1af
svn path=/trunk/gtk-sharp/; revision=46558
35 lines
537 B
C#
35 lines
537 B
C#
//
|
|
// TestToolTip.cs
|
|
//
|
|
// Author: Duncan Mak (duncan@ximian.com)
|
|
//
|
|
// Copyright (C) 2002, Duncan Mak, Ximian Inc.
|
|
//
|
|
|
|
using System;
|
|
|
|
using Gtk;
|
|
|
|
namespace WidgetViewer {
|
|
public class TestToolTip
|
|
{
|
|
static Window window = null;
|
|
static Tooltips tooltips = null;
|
|
|
|
public Gtk.Window Create ()
|
|
{
|
|
window = new Window ("Tooltips");
|
|
window.DefaultSize = new Gdk.Size (200, 150);
|
|
tooltips = new Tooltips ();
|
|
|
|
return window;
|
|
}
|
|
|
|
static void Window_Delete (object o, EventArgs args)
|
|
{
|
|
window.Destroy ();
|
|
}
|
|
}
|
|
}
|
|
|