//------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //------------------------------------------------------------------------------ namespace System.ComponentModel { /// /// Specifies whether the template can be bound one-way or two-way. /// public enum BindingDirection { /// /// The template can only accept property values. Used with a generic ITemplate. /// OneWay = 0, /// /// The template can accept and expose property values. Used with an IBindableTemplate. /// TwoWay = 1 } }