This example informs the end user than a Holiday was removed from the collection, prompting to see if they would like to add another holiday for the ActiveDay.
For an overview of how to handle events in Visual Basic or Visual C#, see
Event Handlers in Visual Basic and Visual C#. For specific information and code examples illustrating how to consume events in your application, see
Consuming Events in the
.NET Framework Developer's Guide.
Imports Infragistics.Shared
Imports Infragistics.Win
Imports Infragistics.Win.UltraWinSchedule
Imports System.Diagnostics
Private Sub ultraCalendarInfo1_AfterHolidayRemoved(ByVal sender As Object, ByVal e As System.EventArgs) Handles ultraCalendarInfo1.AfterHolidayRemoved
'----------------------------------------------------------------------------------------------------
' Description
' AfterHolidayRemoved
'
' Fires after an existing member is removed from the component's Holidays collection
'
'----------------------------------------------------------------------------------------------------
Dim result As DialogResult = MessageBox.Show("A Holiday was just removed from the UltraCalendarInfo object." + vbCrLf + "Would you like to add a new Holiday for the ActiveDay?", "AfterHolidayRemoved", MessageBoxButtons.YesNo)
If (result = DialogResult.No) Then Return
Dim startDate As DateTime = Me.ultraCalendarInfo1.ActiveDay.Date
Me.ultraCalendarInfo1.Holidays.Add(startDate, 2, "My Holiday")
End Sub
'Declaration
Protected Overridable Sub OnAfterHolidayRemoved( _
ByVal As EventArgs _
)
using System.Diagnostics;
using Infragistics.Shared;
using Infragistics.Win;
using Infragistics.Win.UltraWinSchedule;
private void ultraCalendarInfo1_AfterHolidayRemoved(object sender, System.EventArgs e)
{
//----------------------------------------------------------------------------------------------------
// Description
// AfterHolidayRemoved
//
// Fires after an existing member is removed from the component's Holidays collection
//
//----------------------------------------------------------------------------------------------------
DialogResult result = MessageBox.Show( "A Holiday was just removed from the UltraCalendarInfo object." + "\n" + "Would you like to add a new Holiday for the ActiveDay?", "AfterHolidayRemoved", MessageBoxButtons.YesNo );
if ( result == DialogResult.No )
return;
DateTime startDate = this.ultraCalendarInfo1.ActiveDay.Date;
this.ultraCalendarInfo1.Holidays.Add( startDate, 2, "My Holiday" );
}
'Declaration
Protected Overridable Sub OnAfterHolidayRemoved( _
ByVal As EventArgs _
)
Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2