The following excerpt from an .xaml file illustrates the use of the SetterControl to modify a setter element named KeyLocationSetter using a child TextBox control.

<Controls:SetterControl Margin="5"

        Width="450"

        HeaderText="Title text"

        SetterData="{Binding KeyLocationSetter}" 

        InstructionText="What this means…"

        HorizontalAlignment="Left">

 

    <TextBox

                   Margin="0,3"

                   Text="{Binding SetterData.SetterValue, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"

    />

 

</Controls:SetterControl>

Related Topics

SetterControl