SchedulerControl.FormCustomizationUsingMVVM Property
Gets or set a value indicating whether to use the MVVM design pattern to display the custom appointment editing forms.
Namespace: DevExpress.Xpf.Scheduler
Assembly: DevExpress.Xpf.Scheduler.v24.2.dll
NuGet Package: DevExpress.Wpf.Scheduler
#Declaration
public static DefaultBoolean FormCustomizationUsingMVVM { get; set; }
#Property Value
Type | Description |
---|---|
Default |
A Default |
Available values:
Name | Description | Return Value |
---|---|---|
True | The value is true. |
|
False | The value is false. |
|
Default | The value is specified by a global option or a higher-level object. |
|
#Remarks
Important
You are viewing documentation for the legacy WPF Scheduler control. If you’re starting a new project, we strongly recommend that you use a new control declared in the DevExpress.
Set the FormCustomizationUsingMVVM property to true to activate a new MVVM-based mechanism for form display, which allows you to substitute the default appointment editing forms with the custom ones. This property allows you to utilize this mechanism throughout your application for all SchedulerControl instances. For an example on how to substitute the standard appointment editing form with a custom one using the MVVM architectural pattern, refer to the Lesson 7 - Create a Custom Edit Appointment Form Using the MVVM Pattern (legacy) document.
You can also use the form display events of the SchedulerControl to replace the default appointment editing forms. To do this, set the FormCustomizationUsingMVVM property to false and handle the appropriate event depending on the form you want to customize. This approach is described in the Lesson 9 - Create a Custom Edit Appointment Form (legacy) article.