A Microsoft open-source framework for building native device applications spanning mobile, tablet, and desktop.
Hello,
Thanks for your feedback.
According to your description, using popup in CommunityToolkit can meet your needs.
You can use it to customize the HelpPage that pops up, please refer to Popup for more details.
The following is a simple code sample:
<Image Source="your_icon_path">
<Image.GestureRecognizers>
<TapGestureRecognizer Tapped="TapGestureRecognizer_Tapped"/>
</Image.GestureRecognizers>
</Image>
private void TapGestureRecognizer_Tapped(object sender, TappedEventArgs e)
{
var popup = new PopUpPage();
this.ShowPopup(popup);
}
Best Regards,
Alec Liu.
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our [documentation][1] to enable e-mail notifications if you want to receive the related email notification for this thread.