5 public interface IObjectView
6 {
7 /// <summary>
8 /// Gets or sets the source object.
9 /// </summary>
10 /// <value>The source object.</value>
11 object SourceObject { get; set; }
12
13 /// <summary>
14 /// Gets or sets the view descriptor.
15 /// </summary>
16 /// <value>The view descriptor.</value>
17 IViewDescriptor ViewDescriptor { get; set; }
18
19 /// <summary>
20 /// Gets a bindable object as a IBoundObject <see cref="IBoundObject"/>.
21 /// </summary>
22 /// <returns></returns>
23 IBoundObject GetBindableObject();
24 }


0 Comments:
Post a Comment
<< Home