ImageGlass.frmMain.mnuMainImageLocation_Click C# (CSharp) Method

mnuMainImageLocation_Click() private method

private mnuMainImageLocation_Click ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        private void mnuMainImageLocation_Click(object sender, EventArgs e)
        {
            if (GlobalSetting.ImageList.Length > 0)
            {
                System.Diagnostics.Process.Start("explorer.exe", "/select,\"" +
                    GlobalSetting.ImageList.GetFileName(GlobalSetting.CurrentIndex) + "\"");
            }
        }
frmMain