This commit is contained in:
jkuehner 2018-11-08 10:48:32 +01:00
Родитель 3fdb708c77
Коммит cd1f9bebe3
1 изменённых файлов: 8 добавлений и 3 удалений

Просмотреть файл

@ -34,18 +34,23 @@ namespace ICSharpCode.WpfDesign
/// </summary>
public abstract class DesignItem : INotifyPropertyChanged
{
/// <summary>
/// The initial Position after a Drag/Drop
/// </summary>
public Point Position { get; set; }
/// <summary>
/// Gets the component this DesignSite was created for.
/// </summary>
public abstract object Component { get; }
/// <summary>
/// Gets the component type of this design site.
/// This value may be different from Component.GetType() if a CustomInstanceFactory created
/// an object using a different type (e.g. ComponentType=Window but Component.GetType()=WindowClone).
/// </summary>
public abstract Type ComponentType { get; }
/// <summary>
/// Gets the view used for the component.
/// </summary>
@ -56,7 +61,7 @@ namespace ICSharpCode.WpfDesign
/// </summary>
/// <param name="newView"></param>
public abstract void SetView(UIElement newView);
/// <summary>
/// Gets the design context.
/// </summary>