Split UI code into separate files per page

This commit is contained in:
2020-02-29 23:08:03 +01:00
parent 429bc5b76b
commit 0da3e87a5d
5 changed files with 374 additions and 209 deletions

View File

@@ -0,0 +1,21 @@
using Gtk;
using UI = Gtk.Builder.ObjectAttribute;
namespace EstusShots.Gtk
{
internal partial class MainWindow
{
[UI] public readonly Box PlayersPage = null;
[UI] public readonly Overlay PlayersOverlay = null;
[UI] public readonly TreeView PlayersTreeView = null;
[UI] public readonly Button SavePlayerButton = null;
[UI] public readonly Button DeletePlayerButton = null;
[UI] public readonly Box PlayerEditorContainer = null;
private void InitPlayersPage()
{
}
}
}