private void MenuItem4_Clicked(object sender, System.EventArgs e)
        {
            Detail = new NavigationPage(CreateWindow.Create(4))
            {
                BarBackgroundColor = Color.Red
            };

            IsPresented = false;
        }
        public MasterDetail()
        {
            InitializeComponent();

            Detail = new NavigationPage(CreateWindow.Create(1))
            {
                BarBackgroundColor = Color.Red
            };
        }