using OperationControl.Models; using System.Windows; using Application = System.Windows.Application; namespace OperationControl { /// /// Interaction logic for App.xaml /// public partial class App : Application { public AppShell Shell { get; private set; } private void Application_Startup(object sender, StartupEventArgs e) { // Cria o “controlador”/janela raiz Shell = new AppShell(); Shell.Inicializar(); } } }