Share via

Maui android<helpview /> control issue

Haviv Elbsz 2,151 Reputation points
2023-01-23T10:25:17.8233333+00:00

Hello all. because there is no helpview control. Is someone here can give me a way to add help to my application. Thank you very much

Developer technologies | .NET | .NET Multi-platform App UI

Answer accepted by question author

Yonglun Liu (Shanghai Wicresoft Co,.Ltd.) 50,166 Reputation points Microsoft External Staff
2023-01-27T03:55:24.1633333+00:00

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.

Was this answer helpful?

0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.