123456789101112131415161718192021 |
- using Adw;
- using Gtk;
- namespace Publicate {
- public class FileCreat8ionPopover : Popover {
- private ViewerWindow toplevel;
- public FileCreat8ionPopover(ViewerWindow window) {
- toplevel = window;
- var box = new Box(Orientation.VERTICAL, 8);
- child = box;
-
- }
- }
- }
|