DesignerTransactionCloseEventArgs-Klasse
Stellt Daten für das TransactionClosed-Ereignis und das TransactionClosing-Ereignis bereit.
Namespace: System.ComponentModel.Design
Assembly: System (in system.dll)
Syntax
'Declaration
<ComVisibleAttribute(True)> _
Public Class DesignerTransactionCloseEventArgs
Inherits EventArgs
'Usage
Dim instance As DesignerTransactionCloseEventArgs
[ComVisibleAttribute(true)]
public class DesignerTransactionCloseEventArgs : EventArgs
[ComVisibleAttribute(true)]
public ref class DesignerTransactionCloseEventArgs : public EventArgs
/** @attribute ComVisibleAttribute(true) */
public class DesignerTransactionCloseEventArgs extends EventArgs
ComVisibleAttribute(true)
public class DesignerTransactionCloseEventArgs extends EventArgs
Hinweise
Das TransactionClosed-Ereignis tritt ein, wenn ein Designer eine Transaktion abschließt.
Hinweis
Das auf diese Klasse angewendete HostProtectionAttribute-Attribut besitzt den Resources-Eigenschaftenwert SharedState. Das HostProtectionAttribute hat keine Auswirkungen auf Desktopanwendungen (die normalerweise durch Doppelklicken auf ein Symbol, Eingeben eines Befehls oder eines URL in einem Browser gestartet werden). Weitere Informationen finden Sie unter der HostProtectionAttribute-Klasse oder unter SQL Server-Programmierung und Hostschutzattribute.
Beispiel
Das folgende Codebeispiel veranschaulicht das Erstellen einer DesignerTransactionCloseEventArgs-Klasse.
' This example method creates a DesignerTransactionCloseEventArgs using the specified argument.
' Typically, this type of event args is created by a design mode subsystem.
Public Function CreateDesignerTransactionCloseEventArgs(ByVal commit As Boolean) As DesignerTransactionCloseEventArgs
' Creates a component changed event args with the specified arguments.
Dim args As New DesignerTransactionCloseEventArgs(commit, False)
' Whether the transaction has been committed: args.TransactionCommitted
Return args
End Function
// This example method creates a DesignerTransactionCloseEventArgs using the specified argument.
// Typically, this type of event args is created by a design mode subsystem.
public DesignerTransactionCloseEventArgs CreateDesignerTransactionCloseEventArgs(bool commit)
{
// Creates a component changed event args with the specified arguments.
DesignerTransactionCloseEventArgs args = new DesignerTransactionCloseEventArgs(commit, false);
// Whether the transaction has been committed: args.TransactionCommitted
return args;
}
public:
// This example method creates a DesignerTransactionCloseEventArgs using the specified argument.
// Typically, this type of event args is created by a design mode subsystem.
DesignerTransactionCloseEventArgs^ CreateDesignerTransactionCloseEventArgs( bool commit )
{
// Creates a component changed event args with the specified arguments.
DesignerTransactionCloseEventArgs^ args = gcnew DesignerTransactionCloseEventArgs( commit );
// Whether the transaction has been committed: args.TransactionCommitted
return args;
}
// This example method creates a DesignerTransactionCloseEventArgs
// using the specified argument.
// Typically, this type of event args is created by a design mode subsystem.
public DesignerTransactionCloseEventArgs
CreateDesignerTransactionCloseEventArgs(boolean commit)
{
// Creates a component changed event args with the specified arguments.
DesignerTransactionCloseEventArgs args
= new DesignerTransactionCloseEventArgs(commit);
// Whether the transaction has been committed:
// args.TransactionCommitted
return args;
} //CreateDesignerTransactionCloseEventArgs
.NET Framework-Sicherheit
- NamedPermissionSet für Vollzugriff auf Systemressourcen. Anforderungswerte: LinkDemand, InheritanceDemand. Zugeordneter Zustand: FullTrust
Vererbungshierarchie
System.Object
System.EventArgs
System.ComponentModel.Design.DesignerTransactionCloseEventArgs
Threadsicherheit
Alle öffentlichen statischen (Shared in Visual Basic) Member dieses Typs sind threadsicher. Bei Instanzmembern ist die Threadsicherheit nicht gewährleistet.
Plattformen
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.
Versionsinformationen
.NET Framework
Unterstützt in: 2.0, 1.1, 1.0
Siehe auch
Referenz
DesignerTransactionCloseEventArgs-Member
System.ComponentModel.Design-Namespace
DesignerTransactionCloseEventHandler