Alexandria.Common.NavigationHelper.CanGoBack C# (CSharp) 메소드

CanGoBack() 공개 메소드

Virtual method used by the GoBackCommand property to determine if the Frame can go back.
public CanGoBack ( ) : bool
리턴 bool
        public virtual bool CanGoBack()
        {
            return this.Frame != null && this.Frame.CanGoBack;
        }