提交 73a04539 编写于 作者: D Dan Siegel

chore: adding xml docs

上级 b2bf48eb
......@@ -2,13 +2,23 @@
namespace Prism.Controls;
/// <summary>
/// Provides a wrapper for the NavigationPage to better handle the OnBackButtonPressed event with Prism Navigation
/// </summary>
public class PrismNavigationPage : NavigationPage
{
/// <summary>
/// Creates a new instance of the <see cref="PrismNavigationPage"/>
/// </summary>
public PrismNavigationPage()
{
BackButtonPressed += HandleBackButtonPressed;
}
/// <summary>
/// Creates a new instance of the <see cref="PrismNavigationPage"/> with a specified <see cref="Page"/> at the Root
/// </summary>
/// <param name="page"></param>
public PrismNavigationPage(Page page)
: base(page)
{
......@@ -18,7 +28,6 @@ public class PrismNavigationPage : NavigationPage
/// <inheritdoc/>
public event EventHandler BackButtonPressed;
/// <inheritdoc/>
protected override bool OnBackButtonPressed()
{
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册