Shows the Select From List dialog.

Namespace:  C1.Silverlight.Schedule
Assembly:  C1.Silverlight.Schedule (in C1.Silverlight.Schedule.dll)

Syntax

C#
public void SelectFromListDialog(
	IList sourceList,
	IList targetList,
	Type itemType,
	Appointment app,
	string windowTitle,
	bool allowEdit,
	bool allowMultipleSelection
)
Visual Basic
Public Sub SelectFromListDialog ( _
	sourceList As IList, _
	targetList As IList, _
	itemType As Type, _
	app As Appointment, _
	windowTitle As String, _
	allowEdit As Boolean, _
	allowMultipleSelection As Boolean _
)

Parameters

sourceList
Type: System.Collections..::..IList
The source list.
targetList
Type: System.Collections..::..IList
The target list.
itemType
Type: System..::..Type
The type of items in both lists.
app
Type: C1.C1Schedule..::..Appointment
The appointment object, for which the dialog is shown.
windowTitle
Type: System..::..String
The dialog title.
allowEdit
Type: System..::..Boolean
Determines whether the dialog should allow source collection editing.
allowMultipleSelection
Type: System..::..Boolean
Determines whether multiple selection is allowed.

See Also