navigation-services

Macintosh C Creating a navigation window to choose an app

I'm writing a C program for mac, and I need to allow the user to choose an application to send an apple event to. I can create a navigation window, using NavCreateChooseFileDialog, but I can't get it to enable any .app files. If I restrict the types using NavDialogSetFilterTypeIdentifiers, it will only allow me to select applications lik...

How to keep page with full state in navigation wpf app

I'm building a WPF app using pages and the navigation service. One of the pages take an object as a constructor Sub New(ByVal o As Object) ' This call is required by the Windows Form Designer. InitializeComponent() .... So, to navigate to it I do Dim MyPage As New Page1(MyObject) MyBase.NavigationService.Navigate...