私はMSDN にControl.ParentChangedイベントについてhttp://msdn.microsoft.com/en-us/library/system.windows.forms.control.parentchanged(VS.71).aspxControl.ParentChangedイベントが発生すると、
を読んしかし、私は、サンプルコードを理解していない:何ParentChangedは、すべてのソースコードに出現するでありませんか?
private void currencyTextBox_TextChanged(object sender, EventArgs e)
{
try
{
// Convert the text to a Double and determine if it is a negative number.
if(double.Parse(currencyTextBox.Text) < 0)
{
// If the number is negative, display it in Red.
currencyTextBox.ForeColor = Color.Red;
}
else
{
// If the number is not negative, display it in Black.
currencyTextBox.ForeColor = Color.Black;
}
}
catch
{
// If there is an error, display the text using the system colors.
currencyTextBox.ForeColor = SystemColors.ControlText;
}
}
私はControl.ParentChangedイベントが何であるかを理解していません。