mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2025-01-12 12:05:29 +00:00
51 lines
1 KiB
C#
51 lines
1 KiB
C#
|
// GladeViewer.cs - Tests for LibGlade in C#
|
|||
|
//
|
|||
|
// Author: Ricardo Fern<72>ndez Pascual <ric@users.sourceforge.net>
|
|||
|
//
|
|||
|
// (c) 2002 Ricardo Fern<72>ndez Pascual
|
|||
|
|
|||
|
namespace GladeSamples {
|
|||
|
using System;
|
|||
|
|
|||
|
using Gtk;
|
|||
|
using Gnome;
|
|||
|
using Glade;
|
|||
|
using GtkSharp;
|
|||
|
|
|||
|
public class GladeTest : Program
|
|||
|
{
|
|||
|
public static void Main (string[] args)
|
|||
|
{
|
|||
|
new GladeTest (args).Run ();
|
|||
|
}
|
|||
|
public GladeTest (string[] args, params object[] props)
|
|||
|
: base ("GladeTest", "0.1", Modules.UI, args, props)
|
|||
|
{
|
|||
|
Glade.XML gxml = new Glade.XML ("test.glade", "main_window", null);
|
|||
|
gxml.Autoconnect (this);
|
|||
|
}
|
|||
|
|
|||
|
public void OnWindowDeleteEvent (object o, DeleteEventArgs args)
|
|||
|
{
|
|||
|
Quit ();
|
|||
|
args.RetVal = true;
|
|||
|
}
|
|||
|
|
|||
|
public void OnButton1Clicked (Object b, EventArgs e)
|
|||
|
{
|
|||
|
Console.WriteLine ("Button 1 clicked");
|
|||
|
}
|
|||
|
|
|||
|
public static void OnButton2Clicked (Object b, EventArgs e)
|
|||
|
{
|
|||
|
Console.WriteLine ("Button 2 clicked");
|
|||
|
}
|
|||
|
|
|||
|
public void OnButton2Entered (Object b, EventArgs e)
|
|||
|
{
|
|||
|
Console.WriteLine ("Button 2 entered");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|