2

Excel で selectionchange イベントを呼び出そうとしましたが、2 回トリガーされます。マーシャリングで開いているExcelファイルに接続したので、コードは次のようになります

まず、Form1 のコードを投稿します。

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Reflection;
using System.Diagnostics;
using Excel = Microsoft.Office.Interop.Excel;

namespace Excel_Sol_Taraf_Onaylama_V._00
{
    public partial class Form1 : Form
    {


        public Form1()
        {
            InitializeComponent();
        }



        private void btn_Excele_Baglan_Classtan_Click(object sender, EventArgs e)
        {
            try
            {

                ExcelSinifveOlaylar myExcel = new ExcelSinifveOlaylar();

                Excel.Application oXL = (Excel.Application)myExcel.oXL1("Test.xlsx");

                try
                {
                    myExcel.Excel_OlaylariTanimla();
                    MessageBox.Show("Excel Olayları Tanımlandı");
                }
                catch (Exception)
                {

                    throw;
                }

            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.ToString());
                throw;
            }
        }
    }
}

以下はExcelSinifveOlaylarクラスです

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Excel = Microsoft.Office.Interop.Excel;
using System.Windows.Forms;
using System.Reflection;
using System.Threading;

namespace Excel_Sol_Taraf_Onaylama_V._00
{


    class ExcelSinifveOlaylar
    {

        //Marshalling ile excel bağlantısı için nesneler
        Excel.Application oXL;
        Excel._Workbook oWB;
        Excel.Worksheet oSheet;

        //Excel event delegate variables:
        Excel.AppEvents_WorkbookBeforeCloseEventHandler EventDel_BeforeBookClose; //
        Excel.DocEvents_ChangeEventHandler EventDel_CellsChange;
        Excel.DocEvents_SelectionChangeEventHandler EventDel_SelChange;
        int eventtrigger = 0;
        public Excel._Application oXL1(string strDosyaAdi)
        {
            oXL = (Excel.Application)System.Runtime.InteropServices.Marshal.GetActiveObject("Excel.Application");

            int intFileNr = 2;
            //This for statement part is only to connect to the test.xls
            for (int i = 1; i <= 3; i++)
            {
                intFileNr = i;
                try
                {
                    oWB = (Excel._Workbook)oXL.Workbooks.get_Item(i);
                    if (strDosyaAdi == oWB.Name)
                    {
                        oSheet = (Excel.Worksheet)oWB.ActiveSheet;
                        MessageBox.Show("Connected to " + strDosyaAdi + "Aktif Sayfa: " + oSheet.Name.ToString());
                    }

                    Excel_OlaylariTanimla();
                    break;
                }
                catch
                {
                    intFileNr = i;
                }
            }
            return oXL;
        }
        public void Excel_OlaylariTanimla()
        {
            try
            {
                EventDel_SelChange = new Excel.DocEvents_SelectionChangeEventHandler(SelChange);
                oSheet.SelectionChange += EventDel_SelChange;
               // EventDel_CellsChange = new Excel.DocEvents_ChangeEventHandler(CellsChange);
               // oSheet.Change += EventDel_CellsChange;
            }
            catch (Exception ex)
            {
                throw;
            }
        }
        private void SelChange(Excel.Range Target)
        {

            //MessageBox.Show("Selection Changed");
            eventtrigger++;
            MessageBox.Show(eventtrigger.ToString());
        }
}

Excel で選択したセルを変更すると、selectionchange イベントが 2 回トリガーされます。そのため、イベントトリガーは 1 ではなく 2 になります。

両方のクラスで以下の宣言がこの問題を引き起こしているのではないかと感じています

Excel を使用 = Microsoft.Office.Interop.Excel;

しかし、よくわかりません。ご支援いただきありがとうございます。

4

2 に答える 2

0

cell change1つのイベントだけ試してみませんか?内でイベントを作成する代わりに、次のコードを直接試してくださいdefine events

//Add an event handler for the Change event of both worksheet objects.
   EventDel_CellsChange = new Excel.DocEvents_ChangeEventHandler( CellsChange);

   xlSheet1.Change += EventDel_CellsChange;

private void CellsChange(Excel.Range Target )
{
   //This is called when any cell on a worksheet is changed.
   Debug.WriteLine("Delegate: You Changed Cells " + 
      Target.get_Address( Missing.Value, Missing.Value, 
      Excel.XlReferenceStyle.xlA1, Missing.Value, Missing.Value ) + 
      " on " + Target.Worksheet.Name);
}

参照 MSND : Visual C# .NET を使用して Excel のイベントを処理する

于 2012-12-19T07:58:45.493 に答える
0

取り除くだけ

    private void btn_Excele_Baglan_Classtan_Click(object sender, EventArgs e)
    {
        try
        {

            ExcelSinifveOlaylar myExcel = new ExcelSinifveOlaylar();

            Excel.Application oXL = (Excel.Application)myExcel.oXL1("Test.xlsx");

            try
            {
               //because of this its occuring 2 times as its already registered from class constructor //myExcel.Excel_OlaylariTanimla();
                MessageBox.Show("Excel Olayları Tanımlandı");
            }
            catch (Exception)
            {

                throw;
            }

        }
        catch (Exception ex)
        {
            MessageBox.Show(ex.ToString());
            throw;
        }
    }
于 2014-01-22T05:26:10.530 に答える