コード例 #1
0
 /// <summary>
 /// Raises the shared ExcelJoinClicked event
 /// </summary>
 public void Raise_ExcelJoin(object sender, FeatureSetEventArgs e)
 {
     if (ExcelJoinClicked != null)
     {
         ExcelJoinClicked(sender, e);
     }
 }
コード例 #2
0
        private static void ExcelJoinClicked(object sender, FeatureSetEventArgs e)
        {
            JoinDialog jd = new JoinDialog(e.FeatureSet);

            if (jd.ShowDialog() != DialogResult.OK)
            {
                return;
            }
        }