Fields |
Fields are value containers that can be accessed through scope boundaries and are able to invoke actions when value changes.
< Element Id="Incubator1"> <Fields> <Field Id="Incubator_IsOpen" Value="False" Type="bool"> <ChangedHandler> <CompositeAction> ... </CompositeAction> </ChangedHandler> </Field> </Fields> </Element>
Field value can be obtained using FieldValue markup extension.
< Button IsVisible="{FieldValue Incubator_IsOpen}" />
Value can be set with SetField action.
< SetField FieldId="Incubator_IsOpen" Value="True" />