maui-linux/Xamarin.Forms.Core/NavigationEventArgs.cs

17 строки
267 B
C#

using System;
namespace Xamarin.Forms
{
public class NavigationEventArgs : EventArgs
{
public NavigationEventArgs(Page page)
{
if (page == null)
throw new ArgumentNullException("page");
Page = page;
}
public Page Page { get; private set; }
}
}