以下は、VSTO ベースの Word アドインからの私のコード (読みやすいように簡略化したバージョン) です。
問題は、ドキュメントとテンプレートなどの 2 つのドキュメントを開いている場合、アドインがテンプレートの開発を支援し、テンプレートを閉じて同じ Word インスタンスで再度開くまで正常に動作することです (ドキュメント ファイルは Word を有効に保ちます)。これが発生すると、リスナーがアタッチされていても (デバッガーで確認)、SelectionChange イベントは受信されません。
このコードに何か問題がありますか? 選択変更イベントをアタッチする他の方法はありますか?
void Application_DocumentOpen(Word.Document Doc)
{
// this method gets called as intended
Document vstoDoc = Globals.Factory.GetVstoObject(doc);
vstoDoc.SelectionChange += new Microsoft.Office.Tools.Word.SelectionEventHandler(ThisDocument_SelectionChange);
}
private void Application_DocumentBeforeClose(Word.Document doc, ref bool Cancel)
{
// this one also gets called as intended
Document vstoDoc = Globals.Factory.GetVstoObject(doc);
vstoDoc.SelectionChange -= new Microsoft.Office.Tools.Word.SelectionEventHandler(ThisDocument_SelectionChange);
}
void ThisDocument_SelectionChange(object sender, SelectionEventArgs e)
{
// this doesn't get called if the document is closed and open again within the same Word instance
Log("Selection changed");
}
更新: これは VSTO のバグのようです。
他のイベントへのアタッチは正常に機能します。ContentControlOnEnter/Exit を使用できます。
vstoDoc.SelectionChange += ThisDocument_SelectionChange; // doesn't work
vstoDoc.ContentControlOnEnter += vstoDoc_ContentControlOnEnter; // works
vstoDoc.ContentControlOnExit += vstoDoc_ContentControlOnExit; // works