14 lines
387 B
Plaintext
14 lines
387 B
Plaintext
using Microsoft.Practices.Prism.Events;
|
|
|
|
namespace DTS.Common.Events.Hardware.HardwareList
|
|
{
|
|
|
|
/// <summary>
|
|
/// The HardwareListShowCompact event.
|
|
/// </summary>
|
|
///
|
|
/// <remarks>This event is used to indicate show compact/expanded was changed.</remarks>
|
|
///
|
|
public class HardwareListShowCompactEvent : CompositePresentationEvent<bool> { }
|
|
}
|