1 implementation of TransactionClosing
System.Windows.Forms.Design (1)
System\ComponentModel\Design\DesignerHost.cs (1)
906
event 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)
802
host.
TransactionClosing
-= OnTransactionClosing;
1162
host.
TransactionClosing
+= OnTransactionClosing;
System.Windows.Forms.Design.Tests (6)
System\ComponentModel\Design\DesignerHostTests.cs (4)
2029
host.
TransactionClosing
+= closingHandler;
2055
host.
TransactionClosing
-= closingHandler;
2142
host.
TransactionClosing
+= closingHandler;
2168
host.
TransactionClosing
-= closingHandler;
System\Windows\Forms\Design\TableLayoutPanelDesignerTests.cs (2)
121
hostMock.SetupAdd(h => h.
TransactionClosing
+= It.IsAny<DesignerTransactionCloseEventHandler>());
140
hostMock.VerifyAdd(h => h.
TransactionClosing
+= It.IsAny<DesignerTransactionCloseEventHandler>(), Times.Once);