You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@nicholas-brooks We don't currently have this functionality, though we would consider adding it when time permits. As a work-around, you can use JavaScript to monitor navigation events and send those to C# via window.external.sendMessage() calls and save the current value for use upon closing.
@nicholas-brooks We have to implement the feature in the C++ code for Windows (Win32), Linux (GTK) and Mac (Cocoa) in the Photino.Native project. In each case we'll have to hook into the native web view control and handle the navigation events, and store the URL in a local variable. Then we can add a call like the one you described to the interface to retrieve that value. Are you a C++ developer? We always appreciate help!
Is there a way of retrieving the current url of a
PhotinoWindow
instance? Something like:mainWindow.GetCurrentUrl()
We're looking to save the current state when the user closes the app so we can restore it when they launch it again.
The text was updated successfully, but these errors were encountered: