CSPspEmu.Gui.GtkSharp.GtkProgram.FileChooserDialog_FileActivated C# (CSharp) Method

FileChooserDialog_FileActivated() private method

private FileChooserDialog_FileActivated ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        void FileChooserDialog_FileActivated(object sender, EventArgs e)
        {
            FileChooserDialog.HideAll();
            var Path = new Uri(FileChooserDialog.Uri).LocalPath;
            Console.WriteLine("GtkProgram.FileChooserDialog_FileActivated(): {0}", Path);
            IGuiExternalInterface.LoadFile(Path);
            //throw new NotImplementedException();
        }