Split UI code into separate files per page
This commit is contained in:
21
EstusShots.Gtk/Pages/PlayersPage.cs
Normal file
21
EstusShots.Gtk/Pages/PlayersPage.cs
Normal 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()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user