/ILSpy.BamlDecompiler/Ricciolo.StylesExplorer.MarkupReflection/IDependencyPropertyDescriptor.cs

http://github.com/icsharpcode/ILSpy · C# · 23 lines · 18 code · 3 blank · 2 comment · 0 complexity · 4f9a8c70c0266984c0e420535aa788c2 MD5 · raw file

  1. // Copyright (c) Cristian Civera (cristian@aspitalia.com)
  2. // This code is distributed under the MS-PL (for details please see \doc\MS-PL.txt)
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Text;
  6. namespace Ricciolo.StylesExplorer.MarkupReflection
  7. {
  8. public interface IDependencyPropertyDescriptor
  9. {
  10. bool IsAttached { get; }
  11. }
  12. public class UnresolvableDependencyPropertyDescriptor : IDependencyPropertyDescriptor
  13. {
  14. public bool IsAttached {
  15. get {
  16. return false;
  17. }
  18. }
  19. }
  20. }