Skip to main content

AppointmentInplaceEditorBase.Label Property

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

public AppointmentLabel Label { get; set; }

#Property Value

Type Description
AppointmentLabel

An AppointmentLabel object specifying the label of the appointment.

#Examples

TIP

A complete sample project is available in the DevExpress Code Examples database at http://www.devexpress.com/example=E3734.

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