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