You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
430 B
13 lines
430 B
using System;
|
|
|
|
/// <summary>
|
|
/// This interface defines an item container in a view, the container must have a getter to the item it contained,
|
|
/// a controller can use this interface to get access to an item displayed in a view, without knowing the detailed
|
|
/// implementation of how the container displays the item.
|
|
/// </summary>
|
|
public interface IItemContainer
|
|
{
|
|
Item Item { get; }
|
|
|
|
bool IsSelected { get; }
|
|
}
|
|
|