11 lines
186 B
C#
11 lines
186 B
C#
|
|
namespace Yavsc.Interfaces
|
|||
|
|
{
|
|||
|
|
public interface IFormNode
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
T GetControl<T>();
|
|||
|
|
bool IsUIControl { get; }
|
|||
|
|
bool IsInputControl { get; }
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
}
|