13 lines
387 B
C#
13 lines
387 B
C#
using Prism.Events;
|
|
|
|
namespace DTS.Common.RibbonControl
|
|
{
|
|
/// <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 RibbonControlSelectionChanged : PubSubEvent<RibbonControlSelectionEventArgs> { }
|
|
}
|