/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
- // Copyright (c) Cristian Civera (cristian@aspitalia.com)
- // This code is distributed under the MS-PL (for details please see \doc\MS-PL.txt)
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Ricciolo.StylesExplorer.MarkupReflection
- {
- public interface IDependencyPropertyDescriptor
- {
- bool IsAttached { get; }
- }
-
- public class UnresolvableDependencyPropertyDescriptor : IDependencyPropertyDescriptor
- {
- public bool IsAttached {
- get {
- return false;
- }
- }
- }
- }