Exemple #1
0
 private void miOpenFile_Click(object sender, EventArgs e)
 {
     if (fDataMap.CurrentItem != null)
     {
         DTHelper.LoadExtFile(fDataMap.CurrentItem.Name);
     }
 }
Exemple #2
0
 private void miExplore_Click(object sender, EventArgs e)
 {
     if (fDataMap.CurrentItem != null)
     {
         string path = Path.GetDirectoryName(fDataMap.CurrentItem.Name);
         DTHelper.LoadExtFile(path);
     }
 }
Exemple #3
0
        private void lblMail_Click(object sender, EventArgs e)
        {
            Label lbl = sender as Label;

            if (lbl != null)
            {
                DTHelper.LoadExtFile(lbl.Text);
            }
        }