|
|
|
@ -7,6 +7,10 @@ using System.Windows.Markup;
@@ -7,6 +7,10 @@ using System.Windows.Markup;
|
|
|
|
|
|
|
|
|
|
namespace ICSharpCode.WpfDesign.Tests.XamlDom |
|
|
|
|
{ |
|
|
|
|
public class ExampleClassList : List<ExampleClass> |
|
|
|
|
{ |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
[ContentProperty("List")] |
|
|
|
|
public class ExampleClassContainer : ExampleClass |
|
|
|
|
{ |
|
|
|
@ -18,5 +22,18 @@ namespace ICSharpCode.WpfDesign.Tests.XamlDom
@@ -18,5 +22,18 @@ namespace ICSharpCode.WpfDesign.Tests.XamlDom
|
|
|
|
|
return list; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
ExampleClassList otherList = new ExampleClassList(); |
|
|
|
|
|
|
|
|
|
public ExampleClassList OtherList { |
|
|
|
|
get { |
|
|
|
|
TestHelperLog.Log("OtherList.get " + Identity); |
|
|
|
|
return otherList; |
|
|
|
|
} |
|
|
|
|
set { |
|
|
|
|
TestHelperLog.Log("OtherList.set " + Identity); |
|
|
|
|
otherList = value; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|