The following excerpt from an .xaml file illustrates the use of the FieldElementControl to configure the default value for a field on a wizard page using a child TextBox control:

<Controls:FieldElementControl

            Width="450"

            Margin="0,5"

FieldData="{Binding DataContext.Location, ElementName=ControlRoot}"

HeaderText="Location Combo Box"

InstructionText="Here you can configure the behavior of the location combo box."

HideValidationTab="True">

 

<TextBox Text="{Binding FieldData.DefaultValue,

                                     UpdateSourceTrigger=PropertyChanged,

                                     Mode=TwoWay}"/>

</Controls:FieldElementControl>

Related Topics

FieldElementControl