This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // This example shows how to use the new Gtk.ListView in GTK4. | |
| // Example object, wraps a string inside a GObject | |
| class MyObject : Object { | |
| public string s; | |
| public MyObject(string s) { | |
| this.s = s; | |
| } | |
| } |