DialogPropertyValueEditor Constructors

Definition

Creates a new instance of the DialogPropertyValueEditor class.

Overloads

DialogPropertyValueEditor()

Creates a new instance of the DialogPropertyValueEditor class with no specific templates.

DialogPropertyValueEditor(DataTemplate, DataTemplate)

Creates a new instance of the DialogPropertyValueEditor class with the specified dialog editor and inline editor templates.

DialogPropertyValueEditor()

Creates a new instance of the DialogPropertyValueEditor class with no specific templates.

public:
 DialogPropertyValueEditor();
public DialogPropertyValueEditor ();
Public Sub New ()

Applies to

DialogPropertyValueEditor(DataTemplate, DataTemplate)

Creates a new instance of the DialogPropertyValueEditor class with the specified dialog editor and inline editor templates.

public:
 DialogPropertyValueEditor(System::Windows::DataTemplate ^ dialogEditorTemplate, System::Windows::DataTemplate ^ inlineEditorTemplate);
public DialogPropertyValueEditor (System.Windows.DataTemplate dialogEditorTemplate, System.Windows.DataTemplate inlineEditorTemplate);
new System.Activities.Presentation.PropertyEditing.DialogPropertyValueEditor : System.Windows.DataTemplate * System.Windows.DataTemplate -> System.Activities.Presentation.PropertyEditing.DialogPropertyValueEditor
Public Sub New (dialogEditorTemplate As DataTemplate, inlineEditorTemplate As DataTemplate)

Parameters

dialogEditorTemplate
DataTemplate

A DataTemplate that is hosted in a host-specific dialog chrome and has its DataContext set to the PropertyValue that corresponds to the property being edited.

inlineEditorTemplate
DataTemplate

A DataTemplate that is used for the inline editor user interface. If used, its DataContext is set to the PropertyValue that corresponds to the property being edited.

Applies to