# C1.WPF.C1TextEditableContentControl

## Content

<div class="doc-site-dotnet-api-container">



  <h1 id="C1_WPF_C1TextEditableContentControl" data-uid="C1.WPF.C1TextEditableContentControl" class="text-break">C1TextEditableContentControl Class
</h1>
  <div class="markdown level0 summary"><p>Dual control that provides a <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.controls.textbox">TextBox</a> on edit mode, and a <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.controls.contentcontrol">ContentControl</a> on readonly mode.</p>
</div>
  <div class="markdown level0 conceptual"></div>
  <div class="inheritance">
    <h5>Inheritance</h5>
    <div class="level0"><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.object">object</a></div>
    <div class="level1"><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.threading.dispatcherobject">DispatcherObject</a></div>
    <div class="level2"><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.dependencyobject">DependencyObject</a></div>
    <div class="level3"><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.media.visual">Visual</a></div>
    <div class="level4"><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.uielement">UIElement</a></div>
    <div class="level5"><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.frameworkelement">FrameworkElement</a></div>
    <div class="level6"><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.controls.control">Control</a></div>
    <div class="level7"><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.controls.contentcontrol">ContentControl</a></div>
    <div class="level8"><a class="xref" href="C1.WPF.C1EditableContentControl.html">C1EditableContentControl</a></div>
    <div class="level9"><span class="xref">C1TextEditableContentControl</span></div>
  </div>
  <div class="implements">
    <h5>Implements</h5>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.media.animation.ianimatable">IAnimatable</a></div>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.iframeworkinputelement">IFrameworkInputElement</a></div>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.iinputelement">IInputElement</a></div>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.componentmodel.isupportinitialize">ISupportInitialize</a></div>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.markup.iqueryambient">IQueryAmbient</a></div>
    <div><a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.markup.iaddchild">IAddChild</a></div>
  </div>
  <h6><strong>Namespace</strong>: <a class="xref" href="C1.WPF.html">C1.WPF</a></h6>
  <h6><strong>Assembly</strong>: C1.WPF.4.6.2.dll</h6>
  <h5 id="C1_WPF_C1TextEditableContentControl_syntax">Syntax</h5>
  <div class="codewrapper">
    <pre><code class="lang-csharp hljs">[TemplatePart(Name = &quot;EditControl&quot;, Type = typeof(C1TextBoxBase))]
[TemplatePart(Name = &quot;ContentControl&quot;, Type = typeof(ContentPresenter))]
[TemplateVisualState(Name = &quot;Unwatermarked&quot;, GroupName = &quot;WatermarkStates&quot;)]
[TemplateVisualState(Name = &quot;Watermarked&quot;, GroupName = &quot;WatermarkStates&quot;)]
[TemplateVisualState(Name = &quot;Valid&quot;, GroupName = &quot;ValidationStatesStates&quot;)]
[TemplateVisualState(Name = &quot;InvalidUnfocused&quot;, GroupName = &quot;ValidationStatesStates&quot;)]
[TemplateVisualState(Name = &quot;InvalidFocused&quot;, GroupName = &quot;ValidationStatesStates&quot;)]
[StyleTypedProperty(Property = &quot;ValidationDecoratorStyle&quot;, StyleTargetType = typeof(C1ValidationDecorator))]
public class C1TextEditableContentControl : C1EditableContentControl, IAnimatable, IFrameworkInputElement, IInputElement, ISupportInitialize, IQueryAmbient, IAddChild</code></pre>
  </div>
  <div class="codewrapper">
    <pre><code class="lang-vbnet hljs">&lt;TemplatePart(Name:=&quot;EditControl&quot;, Type:=GetType(C1TextBoxBase))&gt;
&lt;TemplatePart(Name:=&quot;ContentControl&quot;, Type:=GetType(ContentPresenter))&gt;
&lt;TemplateVisualState(Name:=&quot;Unwatermarked&quot;, GroupName:=&quot;WatermarkStates&quot;)&gt;
&lt;TemplateVisualState(Name:=&quot;Watermarked&quot;, GroupName:=&quot;WatermarkStates&quot;)&gt;
&lt;TemplateVisualState(Name:=&quot;Valid&quot;, GroupName:=&quot;ValidationStatesStates&quot;)&gt;
&lt;TemplateVisualState(Name:=&quot;InvalidUnfocused&quot;, GroupName:=&quot;ValidationStatesStates&quot;)&gt;
&lt;TemplateVisualState(Name:=&quot;InvalidFocused&quot;, GroupName:=&quot;ValidationStatesStates&quot;)&gt;
&lt;StyleTypedProperty(Property:=&quot;ValidationDecoratorStyle&quot;, StyleTargetType:=GetType(C1ValidationDecorator))&gt;
Public Class C1TextEditableContentControl
    Inherits C1EditableContentControl
    Implements IAnimatable, IFrameworkInputElement, IInputElement, ISupportInitialize, IQueryAmbient, IAddChild</code></pre>
  </div>
  <h3 id="constructors">Constructors
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td id="C1_WPF_C1TextEditableContentControl__ctor" data-uid="C1.WPF.C1TextEditableContentControl.#ctor">
          <a class="xref" href="C1.WPF.C1TextEditableContentControl.-ctor.html#C1_WPF_C1TextEditableContentControl__ctor">C1TextEditableContentControl()</a>
        </td>
        <td class="markdown level1 summary"><p>Initializes a new instance of a <a class="xref" href="C1.WPF.C1TextEditableContentControl.html">C1TextEditableContentControl</a>.</p>
</td>
      </tr>
    </tbody>
  </table>
  <h3 id="fields">Fields
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td id="C1_WPF_C1TextEditableContentControl_CaretBrushProperty" data-uid="C1.WPF.C1TextEditableContentControl.CaretBrushProperty">
          <a class="xref" href="C1.WPF.C1TextEditableContentControl.CaretBrushProperty.html">CaretBrushProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="C1.WPF.C1TextEditableContentControl.CaretBrush.html#C1_WPF_C1TextEditableContentControl_CaretBrush">CaretBrush</a> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_C1TextEditableContentControl_DisabledCuesVisibilityProperty" data-uid="C1.WPF.C1TextEditableContentControl.DisabledCuesVisibilityProperty">
          <a class="xref" href="C1.WPF.C1TextEditableContentControl.DisabledCuesVisibilityProperty.html">DisabledCuesVisibilityProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="C1.WPF.C1TextEditableContentControl.DisabledCuesVisibility.html#C1_WPF_C1TextEditableContentControl_DisabledCuesVisibility">DisabledCuesVisibility</a> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_C1TextEditableContentControl_FocusCuesVisibilityProperty" data-uid="C1.WPF.C1TextEditableContentControl.FocusCuesVisibilityProperty">
          <a class="xref" href="C1.WPF.C1TextEditableContentControl.FocusCuesVisibilityProperty.html">FocusCuesVisibilityProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="C1.WPF.C1TextEditableContentControl.FocusCuesVisibility.html#C1_WPF_C1TextEditableContentControl_FocusCuesVisibility">FocusCuesVisibility</a> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_C1TextEditableContentControl_IsWatermarkedProperty" data-uid="C1.WPF.C1TextEditableContentControl.IsWatermarkedProperty">
          <a class="xref" href="C1.WPF.C1TextEditableContentControl.IsWatermarkedProperty.html">IsWatermarkedProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="C1.WPF.C1TextEditableContentControl.IsWatermarked.html#C1_WPF_C1TextEditableContentControl_IsWatermarked">IsWatermarked</a> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_C1TextEditableContentControl_SelectionBackgroundProperty" data-uid="C1.WPF.C1TextEditableContentControl.SelectionBackgroundProperty">
          <a class="xref" href="C1.WPF.C1TextEditableContentControl.SelectionBackgroundProperty.html">SelectionBackgroundProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <span class="xref">C1.WPF.C1TextEditableContentControl.SelectionBackground</span> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_C1TextEditableContentControl_SelectionForegroundProperty" data-uid="C1.WPF.C1TextEditableContentControl.SelectionForegroundProperty">
          <a class="xref" href="C1.WPF.C1TextEditableContentControl.SelectionForegroundProperty.html">SelectionForegroundProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <span class="xref">C1.WPF.C1TextEditableContentControl.SelectionForeground</span> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_C1TextEditableContentControl_TextAlignmentProperty" data-uid="C1.WPF.C1TextEditableContentControl.TextAlignmentProperty">
          <a class="xref" href="C1.WPF.C1TextEditableContentControl.TextAlignmentProperty.html">TextAlignmentProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="C1.WPF.C1TextEditableContentControl.TextAlignment.html#C1_WPF_C1TextEditableContentControl_TextAlignment">TextAlignment</a> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_C1TextEditableContentControl_ValidationDecoratorStyleProperty" data-uid="C1.WPF.C1TextEditableContentControl.ValidationDecoratorStyleProperty">
          <a class="xref" href="C1.WPF.C1TextEditableContentControl.ValidationDecoratorStyleProperty.html">ValidationDecoratorStyleProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="C1.WPF.C1TextEditableContentControl.ValidationDecoratorStyle.html#C1_WPF_C1TextEditableContentControl_ValidationDecoratorStyle">ValidationDecoratorStyle</a> dependency property.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_C1TextEditableContentControl_WatermarkProperty" data-uid="C1.WPF.C1TextEditableContentControl.WatermarkProperty">
          <a class="xref" href="C1.WPF.C1TextEditableContentControl.WatermarkProperty.html">WatermarkProperty</a>
        </td>
        <td class="markdown level1 summary"><p>Identifies the <a class="xref" href="C1.WPF.C1TextEditableContentControl.Watermark.html#C1_WPF_C1TextEditableContentControl_Watermark">Watermark</a> dependency property.</p>
</td>
      </tr>
    </tbody>
  </table>
  <h3 id="properties">Properties
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td id="C1_WPF_C1TextEditableContentControl_CaretBrush" data-uid="C1.WPF.C1TextEditableContentControl.CaretBrush">
          <a class="xref" href="C1.WPF.C1TextEditableContentControl.CaretBrush.html#C1_WPF_C1TextEditableContentControl_CaretBrush">CaretBrush</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the <a class="xref" href="https://learn.microsoft.com/dotnet/api/system.windows.media.brush">Brush</a> of the blinking cursor of an input control.  When .NET Framework is v3.5, 'CaretBrush' takes no effect.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_C1TextEditableContentControl_DisabledCuesVisibility" data-uid="C1.WPF.C1TextEditableContentControl.DisabledCuesVisibility">
          <a class="xref" href="C1.WPF.C1TextEditableContentControl.DisabledCuesVisibility.html#C1_WPF_C1TextEditableContentControl_DisabledCuesVisibility">DisabledCuesVisibility</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value indicating whether the disabled visuals of the control are visible.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_C1TextEditableContentControl_EditTextBox" data-uid="C1.WPF.C1TextEditableContentControl.EditTextBox">
          <a class="xref" href="C1.WPF.C1TextEditableContentControl.EditTextBox.html#C1_WPF_C1TextEditableContentControl_EditTextBox">EditTextBox</a>
        </td>
        <td class="markdown level1 summary"><p><span class="xref">C1.Silverlight.C1TextBoxBase</span> used during the edit mode.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_C1TextEditableContentControl_FocusCuesVisibility" data-uid="C1.WPF.C1TextEditableContentControl.FocusCuesVisibility">
          <a class="xref" href="C1.WPF.C1TextEditableContentControl.FocusCuesVisibility.html#C1_WPF_C1TextEditableContentControl_FocusCuesVisibility">FocusCuesVisibility</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets a value indicating whether the focus visuals of the control are visible.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_C1TextEditableContentControl_IsDirty" data-uid="C1.WPF.C1TextEditableContentControl.IsDirty">
          <a class="xref" href="C1.WPF.C1TextEditableContentControl.IsDirty.html#C1_WPF_C1TextEditableContentControl_IsDirty">IsDirty</a>
        </td>
        <td class="markdown level1 summary"><p>Get or sets whether the element was edited during edit mode.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_C1TextEditableContentControl_IsWatermarked" data-uid="C1.WPF.C1TextEditableContentControl.IsWatermarked">
          <a class="xref" href="C1.WPF.C1TextEditableContentControl.IsWatermarked.html#C1_WPF_C1TextEditableContentControl_IsWatermarked">IsWatermarked</a>
        </td>
        <td class="markdown level1 summary"><p>Get or sets if the watermark is shown.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_C1TextEditableContentControl_TextAlignment" data-uid="C1.WPF.C1TextEditableContentControl.TextAlignment">
          <a class="xref" href="C1.WPF.C1TextEditableContentControl.TextAlignment.html#C1_WPF_C1TextEditableContentControl_TextAlignment">TextAlignment</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets how the text should be aligned in the <a class="xref" href="C1.WPF.C1TextEditableContentControl.html">C1TextEditableContentControl</a>.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_C1TextEditableContentControl_ValidationDecoratorStyle" data-uid="C1.WPF.C1TextEditableContentControl.ValidationDecoratorStyle">
          <a class="xref" href="C1.WPF.C1TextEditableContentControl.ValidationDecoratorStyle.html#C1_WPF_C1TextEditableContentControl_ValidationDecoratorStyle">ValidationDecoratorStyle</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the style that is applied to the inner <a class="xref" href="C1.WPF.C1ValidationDecorator.html">C1ValidationDecorator</a>.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_C1TextEditableContentControl_Watermark" data-uid="C1.WPF.C1TextEditableContentControl.Watermark">
          <a class="xref" href="C1.WPF.C1TextEditableContentControl.Watermark.html#C1_WPF_C1TextEditableContentControl_Watermark">Watermark</a>
        </td>
        <td class="markdown level1 summary"><p>Gets or sets the watermark content displayed when the control is empty.</p>
</td>
      </tr>
    </tbody>
  </table>
  <h3 id="methods">Methods
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td id="C1_WPF_C1TextEditableContentControl_ChangeVisualStateWatermark_System_Boolean_" data-uid="C1.WPF.C1TextEditableContentControl.ChangeVisualStateWatermark(System.Boolean)">
          <a class="xref" href="C1.WPF.C1TextEditableContentControl.ChangeVisualStateWatermark.html#C1_WPF_C1TextEditableContentControl_ChangeVisualStateWatermark_System_Boolean_">ChangeVisualStateWatermark(bool)</a>
        </td>
        <td class="markdown level1 summary"><p>Updates the current visual state of the Watermark visual state group to match the object's properties.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_C1TextEditableContentControl_OnApplyTemplate" data-uid="C1.WPF.C1TextEditableContentControl.OnApplyTemplate">
          <a class="xref" href="C1.WPF.C1TextEditableContentControl.OnApplyTemplate.html#C1_WPF_C1TextEditableContentControl_OnApplyTemplate">OnApplyTemplate()</a>
        </td>
        <td class="markdown level1 summary"><p>Builds the visual tree for the <a class="xref" href="C1.WPF.C1TextEditableContentControl.html">C1TextEditableContentControl</a> control when a new template is applied.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_C1TextEditableContentControl_OnEditCanceled" data-uid="C1.WPF.C1TextEditableContentControl.OnEditCanceled">
          <a class="xref" href="C1.WPF.C1TextEditableContentControl.OnEditCanceled.html#C1_WPF_C1TextEditableContentControl_OnEditCanceled">OnEditCanceled()</a>
        </td>
        <td class="markdown level1 summary"><p>Fires the <span class="xref">C1.Silverlight.C1EditableContentControl.EditCanceled</span> event.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_C1TextEditableContentControl_OnIsInEditModeChanged_System_Boolean_" data-uid="C1.WPF.C1TextEditableContentControl.OnIsInEditModeChanged(System.Boolean)">
          <a class="xref" href="C1.WPF.C1TextEditableContentControl.OnIsInEditModeChanged.html#C1_WPF_C1TextEditableContentControl_OnIsInEditModeChanged_System_Boolean_">OnIsInEditModeChanged(bool)</a>
        </td>
        <td class="markdown level1 summary"><p>The control has changed the mode.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_C1TextEditableContentControl_ShouldEnterEditModeOnKeyDown_System_Windows_Input_Key_" data-uid="C1.WPF.C1TextEditableContentControl.ShouldEnterEditModeOnKeyDown(System.Windows.Input.Key)">
          <a class="xref" href="C1.WPF.C1TextEditableContentControl.ShouldEnterEditModeOnKeyDown.html#C1_WPF_C1TextEditableContentControl_ShouldEnterEditModeOnKeyDown_System_Windows_Input_Key_">ShouldEnterEditModeOnKeyDown(Key)</a>
        </td>
        <td class="markdown level1 summary"><p>Called to define if the control has to enter edit mode when a particular key is pressed.
For example: arrow keys might not change to edit mode.</p>
</td>
      </tr>
    </tbody>
  </table>
  <h3 id="events">Events
</h3>
  <table class="table table-bordered table-condensed">
    <thead>
      <tr>
        <th>Name</th>
        <th>Description</th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <td id="C1_WPF_C1TextEditableContentControl_TextBoxKeyDown" data-uid="C1.WPF.C1TextEditableContentControl.TextBoxKeyDown">
          <a class="xref" href="C1.WPF.C1TextEditableContentControl.TextBoxKeyDown.html">TextBoxKeyDown</a>
        </td>
        <td class="markdown level1 summary"><p>Event fired when a key is pressed in the EditableTextBox.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_C1TextEditableContentControl_TextBoxKeyUp" data-uid="C1.WPF.C1TextEditableContentControl.TextBoxKeyUp">
          <a class="xref" href="C1.WPF.C1TextEditableContentControl.TextBoxKeyUp.html">TextBoxKeyUp</a>
        </td>
        <td class="markdown level1 summary"><p>Event fired when a key is released in the EditableTextBox.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_C1TextEditableContentControl_TextEdited" data-uid="C1.WPF.C1TextEditableContentControl.TextEdited">
          <a class="xref" href="C1.WPF.C1TextEditableContentControl.TextEdited.html">TextEdited</a>
        </td>
        <td class="markdown level1 summary"><p>Event fired to do when the text is edited in the EditableTextBox.</p>
</td>
      </tr>
      <tr>
        <td id="C1_WPF_C1TextEditableContentControl_ValidateInput" data-uid="C1.WPF.C1TextEditableContentControl.ValidateInput">
          <a class="xref" href="C1.WPF.C1TextEditableContentControl.ValidateInput.html">ValidateInput</a>
        </td>
        <td class="markdown level1 summary"><p>Event fired when the editing is completed.
Handle this event to validate the new input.</p>
</td>
      </tr>
    </tbody>
  </table>
  <h3 id="extensionmethods">Extension Methods</h3>
  <div>
      <a class="xref" href="C1.WPF.Extensions.FindParent.html#C1_WPF_Extensions_FindParent__1_System_Windows_FrameworkElement_">Extensions.FindParent&lt;T&gt;(FrameworkElement)</a>
  </div>
  <div>
      <a class="xref" href="C1.WPF.Extensions.GetAllParents.html#C1_WPF_Extensions_GetAllParents_System_Windows_FrameworkElement_">Extensions.GetAllParents(FrameworkElement)</a>
  </div>
  <div>
      <a class="xref" href="C1.WPF.Extensions.GetVisualStateGroup.html#C1_WPF_Extensions_GetVisualStateGroup_System_Windows_FrameworkElement_System_String_">Extensions.GetVisualStateGroup(FrameworkElement, string)</a>
  </div>
  <div>
      <a class="xref" href="C1.WPF.Extensions.SetBinding.html#C1_WPF_Extensions_SetBinding__1_System_Windows_FrameworkElement_System_Windows_DependencyProperty___0_System_Linq_Expressions_Expression_System_Func___0_System_Object___">Extensions.SetBinding&lt;T&gt;(FrameworkElement, DependencyProperty, T, Expression&lt;Func&lt;T, object&gt;&gt;)</a>
  </div>
  <div>
      <a class="xref" href="C1.WPF.Extensions.SetBinding.html#C1_WPF_Extensions_SetBinding__1_System_Windows_FrameworkElement_System_Windows_DependencyProperty___0_System_Linq_Expressions_Expression_System_Func___0_System_Object___System_Windows_Data_IValueConverter_">Extensions.SetBinding&lt;T&gt;(FrameworkElement, DependencyProperty, T, Expression&lt;Func&lt;T, object&gt;&gt;, IValueConverter)</a>
  </div>
  <div>
      <a class="xref" href="C1.WPF.Extensions.C1TransformToVisual.html#C1_WPF_Extensions_C1TransformToVisual_System_Windows_UIElement_System_Windows_UIElement_">Extensions.C1TransformToVisual(UIElement, UIElement)</a>
  </div>

</div>
