mirror of
https://github.com/Ryujinx/GtkSharp.git
synced 2024-12-26 12:55:31 +00:00
8fc739e12c
and add missing descriptions svn path=/trunk/gtk-sharp/; revision=38236
51 lines
1.2 KiB
C#
51 lines
1.2 KiB
C#
/* Entry Completion
|
|
*
|
|
* GtkEntryCompletion provides a mechanism for adding support for
|
|
* completion in GtkEntry.
|
|
*
|
|
*/
|
|
using System;
|
|
using Gtk;
|
|
|
|
namespace GtkDemo
|
|
{
|
|
[Demo ("Entry Completion", "DemoEntryCompletion.cs")]
|
|
public class DemoEntryCompletion : Dialog
|
|
{
|
|
public DemoEntryCompletion () : base ("Demo Entry Completion", null, DialogFlags.DestroyWithParent)
|
|
{
|
|
this.BorderWidth = 10;
|
|
this.Resizable = false;
|
|
|
|
Label label = new Label ("Completion demo, try writing <b>total</b> or <b>gnome</b> for example.");
|
|
label.UseMarkup = true;
|
|
this.VBox.PackStart (label, false, true, 0);
|
|
|
|
Entry entry = new Entry ();
|
|
entry.Completion = new EntryCompletion ();
|
|
entry.Completion.Model = CreateCompletionModel ();
|
|
entry.Completion.TextColumn = 0;
|
|
this.VBox.PackStart (entry, false, true, 0);
|
|
|
|
this.AddButton (Stock.Close, ResponseType.Close);
|
|
|
|
this.ShowAll ();
|
|
this.Run ();
|
|
this.Hide ();
|
|
this.Destroy ();
|
|
}
|
|
|
|
TreeModel CreateCompletionModel ()
|
|
{
|
|
ListStore store = new ListStore (typeof (string));
|
|
|
|
store.AppendValues ("GNOME");
|
|
store.AppendValues ("total");
|
|
store.AppendValues ("totally");
|
|
|
|
return store;
|
|
}
|
|
}
|
|
}
|
|
|