Files
DP44/Common/DTS.CommonCore/Events/TabControlSelectionChanged.cs
2026-04-17 14:55:32 -04:00

13 lines
409 B
C#

using Microsoft.Practices.Prism.Events;
namespace DTS.Common.Events
{
/// <summary>
/// The TabControlSelectionChanged event.
/// </summary>
///
/// <remarks>This event has to be used by the TabControl to indicate that its tab has been changed.</remarks>
///
public class TabControlSelectionChanged : CompositePresentationEvent<TabControlSelectionEventArgs> { }
}