AppointmentInplaceEditorBase.Label Property
In This Article
Gets or sets the label associated with the appointment currently being edited in the custom in-place editor.
Namespace: DevExpress.Xpf.Scheduler.UI
Assembly: DevExpress.Xpf.Scheduler.v14.2.dll
#Declaration
#Property Value
Type | Description |
---|---|
Appointment |
An Appointment |
#Examples
TIP
A complete sample project is available in the DevExpress Code Examples database at http://www.
This example demonstrates how to bind the AppointmentLabelEdit control on the custom in-place editor to the appointment label, via the AppointmentInplaceEditorBase.Label property.
<TextBlock Grid.Row="1" HorizontalAlignment="Left" Text="Label: "/>
<dxschui:AppointmentLabelEdit Margin="0,0,0,4"
Grid.Row="1" Grid.Column="1"
Storage="{Binding Storage}"
EditValue="{Binding Label, Mode=TwoWay}"/>
See Also