5 changed files with 116 additions and 66 deletions
@ -0,0 +1,27 @@
@@ -0,0 +1,27 @@
|
||||
using System; |
||||
using System.Collections.Generic; |
||||
using System.Linq; |
||||
using System.Text; |
||||
using System.Windows.Markup; |
||||
|
||||
namespace ICSharpCode.WpfDesign.XamlDom |
||||
{ |
||||
public class DesignInstanceExtension : MarkupExtension |
||||
{ |
||||
public DesignInstanceExtension(Type type) |
||||
{ |
||||
this.Type = type; |
||||
} |
||||
|
||||
public Type Type { get; set; } |
||||
|
||||
public bool IsDesignTimeCreatable { get; set; } |
||||
|
||||
public bool CreateList { get; set; } |
||||
|
||||
public override object ProvideValue(IServiceProvider serviceProvider) |
||||
{ |
||||
return null; |
||||
} |
||||
} |
||||
} |
||||
Loading…
Reference in new issue