Exemple #1
0
 public void Show(TabDestination showMe)
 {
     if (currentlyVisible != null)
     {
         currentlyVisible.IsSelected = false;
     }
     currentlyVisible = showMe;
     Monitor.Debug($"Showing: {showMe.View.GetType()}");
     view.Show(showMe);
     currentlyVisible.IsSelected = true;
 }
Exemple #2
0
 public SexyTabbedItemView(TabDestination viewModel)
 {
     BindingContext = viewModel;
     InitializeComponent();
 }
Exemple #3
0
 public void Show(TabDestination showMe)
 {
     currentTabView.Content = showMe.View;
 }