1 implementation of TransactionClosing
System.Windows.Forms.Design (1)
System\ComponentModel\Design\DesignerHost.cs (1)
906event DesignerTransactionCloseEventHandler IDesignerHost.TransactionClosing
9 references to TransactionClosing
System.ComponentModel.TypeConverter (1)
System\ComponentModel\Design\IDesignerHost.cs (1)
72/// Adds an event handler for the <see cref='System.ComponentModel.Design.IDesignerHost.TransactionClosing'/> event.
System.Windows.Forms.Design (2)
System\Windows\Forms\Design\TableLayoutPanelDesigner.cs (2)
802host.TransactionClosing -= OnTransactionClosing; 1162host.TransactionClosing += OnTransactionClosing;
System.Windows.Forms.Design.Tests (6)
System\ComponentModel\Design\DesignerHostTests.cs (4)
2029host.TransactionClosing += closingHandler; 2055host.TransactionClosing -= closingHandler; 2142host.TransactionClosing += closingHandler; 2168host.TransactionClosing -= closingHandler;
System\Windows\Forms\Design\TableLayoutPanelDesignerTests.cs (2)
121hostMock.SetupAdd(h => h.TransactionClosing += It.IsAny<DesignerTransactionCloseEventHandler>()); 140hostMock.VerifyAdd(h => h.TransactionClosing += It.IsAny<DesignerTransactionCloseEventHandler>(), Times.Once);