private void Messages_Tap_Tapped(object sender, EventArgs e) { //Calling The Chat page When Its Clicked. var page = new Chats(); Holder.Content = page.Content; MessageBox.IsVisible = true; SocialBox.IsVisible = false; }
public HomePage() { InitializeComponent(); Social_Tap.Tapped += Social_Tap_Tapped; Messages_Tap.Tapped += Messages_Tap_Tapped; //Calling The Chat Page Inside The HomePage as The initial Page var page = new Chats(); Holder.Content = page.Content; MessageBox.IsVisible = true; SocialBox.IsVisible = false; }