ConvertEventHandler-Delegat
Stellt die Methode dar, die das Parse-Ereignis und das Format-Ereignis des Binding behandelt.
Namespace: System.Windows.Forms
Assembly: System.Windows.Forms (in system.windows.forms.dll)
Syntax
'Declaration
Public Delegate Sub ConvertEventHandler ( _
sender As Object, _
e As ConvertEventArgs _
)
'Usage
Dim instance As New ConvertEventHandler(AddressOf HandlerMethod)
public delegate void ConvertEventHandler (
Object sender,
ConvertEventArgs e
)
public delegate void ConvertEventHandler (
Object^ sender,
ConvertEventArgs^ e
)
/** @delegate */
public delegate void ConvertEventHandler (
Object sender,
ConvertEventArgs e
)
JScript unterstützt die Verwendung von Delegaten, aber nicht die Deklaration von neuen Delegaten.
Parameter
- sender
Die Quelle des Ereignisses.
- e
Eine Instanz von ConvertEventArgs, die die Ereignisdaten enthält.
Hinweise
Beim Erstellen eines ConvertEventHandler-Delegaten bestimmen Sie die Methode für die Ereignisbehandlung. Um das Ereignis dem Ereignishandler zuzuordnen, fügen Sie dem Ereignis eine Instanz des Delegaten hinzu. Der Ereignishandler wird bei jedem Eintreten des Ereignisses aufgerufen, sofern der Delegat nicht entfernt wird. Weitere Informationen über Delegaten für Ereignishandler finden Sie unter Ereignisse und Delegaten.
Beispiel
Im folgenden Code
beispiel wird ein Binding erstellt. Außerdem wird dem Parse-Ereignis und dem Format-Ereignis ein ConvertEventHandler-Delegat hinzugefügt, und das Binding wird über die DataBindings-Eigenschaft der BindingsCollection eines TextBox-Steuerelements hinzugefügt. Der DecimalToCurrency
-Ereignisdelegat formatiert, wenn er dem Format-Ereignis hinzugefügt wird, mithilfe der ToString-Methode den gebundenen Wert (ein Decimal-Typ) als Währung. Der CurrencyToDecimal
-Ereignisdelegat konvertiert, wenn er dem Parse-Ereignis hinzugefügt wird, den vom Steuerelement angezeigten Wert zurück in den Decimal-Typ.
Private Sub DecimalToCurrency(sender As Object, cevent As ConvertEventArgs)
' The method converts only to string type. Test this using the DesiredType.
If Not cevent.DesiredType Is GetType(String) Then
Return
End If
' Use the ToString method to format the value as currency ("c").
cevent.Value = CDec(cevent.Value).ToString("c")
End Sub
Private Sub CurrencyToDecimal(sender As Object, cevent As ConvertEventArgs)
' The method converts only to decimal type.
If Not cevent.DesiredType Is GetType(Decimal) Then
Return
End If
' Converts the string back to decimal using the static ToDecimal method.
cevent.Value = Convert.ToDecimal(cevent.Value.ToString())
End Sub
Private Sub BindControl()
' Creates the binding first. The OrderAmount is typed as Decimal.
Dim b As New Binding("Text", ds, "customers.custToOrders.OrderAmount")
' Adds the delegates to the events.
AddHandler b.Format, AddressOf DecimalToCurrency
AddHandler b.Parse, AddressOf CurrencyToDecimal
text1.DataBindings.Add(b)
End Sub
private void DecimalToCurrency(object sender, ConvertEventArgs cevent)
{
// The method converts only to string type. Test this using the DesiredType.
if (cevent.DesiredType != typeof(string)) return;
// Use the ToString method to format the value as currency ("c").
cevent.Value = ((decimal) cevent.Value).ToString("c");
}
private void CurrencyToDecimal(object sender, ConvertEventArgs cevent)
{
// ' The method converts only to decimal type.
if (cevent.DesiredType != typeof(decimal)) return;
// Converts the string back to decimal using the static ToDecimal method.
cevent.Value = Convert.ToDecimal(cevent.Value.ToString());
}
private void BindControl()
{
// Creates the binding first. The OrderAmount is typed as Decimal.
Binding b = new Binding
("Text", ds, "customers.custToOrders.OrderAmount");
// Add the delegates to the events.
b.Format += new ConvertEventHandler(DecimalToCurrency);
b.Parse += new ConvertEventHandler(CurrencyToDecimal);
text1.DataBindings.Add(b);
}
private:
void DecimalToCurrency( Object^ /*sender*/, ConvertEventArgs^ cevent )
{
// The method converts only to string type. Test this using the DesiredType.
if ( cevent->DesiredType != String::typeid )
{
return;
}
// Use the ToString method to format the value as currency ("c").
cevent->Value = ( (Decimal^)(cevent->Value) )->ToString( "c" );
}
void CurrencyToDecimal( Object^ /*sender*/, ConvertEventArgs^ cevent )
{
// ' The method converts only to decimal type.
if ( cevent->DesiredType != Decimal::typeid )
{
return;
}
// Converts the string back to decimal using the static ToDecimal method.
cevent->Value = Convert::ToDecimal( cevent->Value->ToString() );
}
void BindControl()
{
// Creates the binding first. The OrderAmount is typed as Decimal.
Binding^ b = gcnew Binding(
"Text",ds,"customers.custToOrders.OrderAmount" );
// Add the delegates to the events.
b->Format += gcnew ConvertEventHandler(
this, &Form1::DecimalToCurrency );
b->Parse += gcnew ConvertEventHandler(
this, &Form1::CurrencyToDecimal );
text1->DataBindings->Add( b );
}
private void DecimalToCurrency(Object sender, ConvertEventArgs cevent)
{
// The method converts only to string type.
// Test this using the DesiredType.
if (!(cevent.get_DesiredType().Equals(String.class.ToType()))) {
return ;
}
// Use the ToString method to format the value as currency ("c").
cevent.set_Value(((System.Decimal)cevent.get_Value()).ToString("c"));
} //DecimalToCurrency
private void CurrencyToDecimal(Object sender, ConvertEventArgs cevent)
{
// The method converts only to decimal type.
if (!(cevent.get_DesiredType().Equals(System.Decimal.class.ToType()))) {
return ;
}
// Converts the string back to decimal
// using the static ToDecimal method.
cevent.set_Value(Convert.ToDecimal(cevent.get_Value().ToString()));
} //CurrencyToDecimal
private void BindControl()
{
// Creates the binding first. The OrderAmount is typed as Decimal.
Binding b = new Binding("Text", ds,
"customers.custToOrders.OrderAmount");
// Add the delegates to the events.
b.add_Format(new ConvertEventHandler(DecimalToCurrency));
b.add_Parse(new ConvertEventHandler(CurrencyToDecimal));
text1.get_DataBindings().Add(b);
} //BindControl
Plattformen
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile für Pocket PC, Windows Mobile für Smartphone, 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
.NET Compact Framework
Unterstützt in: 2.0, 1.0