From 735c99ee961eb55bbc9549dc28ceaec03b55c85c Mon Sep 17 00:00:00 2001 From: Radek Doulik Date: Tue, 21 Jan 2003 21:41:10 +0000 Subject: [PATCH] new file, adds Frame () constructor which creates a frame without label svn path=/trunk/gtk-sharp/; revision=10790 --- gtk/Frame.custom | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 gtk/Frame.custom diff --git a/gtk/Frame.custom b/gtk/Frame.custom new file mode 100644 index 000000000..43bc5a88b --- /dev/null +++ b/gtk/Frame.custom @@ -0,0 +1,13 @@ + // + // Gtk.ScrolledWindow.custom - Gtk ScrolledWindow class customizations + // + // Author: Radek Doulik (rodo@ximian.com) + // + // Copyright (C) 2002 Ximian, Inc. + // + // This code is inserted after the automatically generated code. + // + public Frame() + { + Raw = gtk_frame_new (null); + }