BlueSky.Window1.RecentItem_Click C# (CSharp) Method

RecentItem_Click() private method

private RecentItem_Click ( string fullpathfilename ) : void
fullpathfilename string
return void
        private void RecentItem_Click(string fullpathfilename)
        {
            //MessageBox.Show("Finally Opening up a file ..");
            BlueSky.Commands.File.FileOpenCommand fopen = new BlueSky.Commands.File.FileOpenCommand();
            fopen.FileOpen(fullpathfilename);
        }