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

13 lines
374 B
C#

using 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 : PubSubEvent<TabControlSelectionEventArgs> { }
}