Show / Hide Table of Contents

Class ItemPickerDialogArgs<T>

Provides Arguments for an item picker dialog which should select objects of type T.

Inheritance
System.Object
ItemPickerDialogArgs
ItemPickerDialogArgs<T>
ItemPickerDialogArgs.AllowSelectAll
ItemPickerDialogArgs.AllSelectedMessage
ItemPickerDialogArgs.AllSelectedTitle
ItemPickerDialogArgs.AvailableItems
ItemPickerDialogArgs.AvailableTitle
ItemPickerDialogArgs.Columns
ItemPickerDialogArgs.DialogTitle
ItemPickerDialogArgs.EmptyFilteredMessage
ItemPickerDialogArgs.EmptyFilteredTitle
ItemPickerDialogArgs.Height
ItemPickerDialogArgs.IsSelectedMemberConverter
ItemPickerDialogArgs.IsSelectedMemberConverterParameter
ItemPickerDialogArgs.IsSelectedMemberPath
ItemPickerDialogArgs.IsSelectionOrdered
ItemPickerDialogArgs.MaxSelectedItemCount
ItemPickerDialogArgs.MoveDownCommandTooltip
ItemPickerDialogArgs.MoveUpCommandTooltip
ItemPickerDialogArgs.OrderMemberConverter
ItemPickerDialogArgs.OrderMemberConverterParameter
ItemPickerDialogArgs.OrderMemberPath
ItemPickerDialogArgs.Parent
ItemPickerDialogArgs.SelectedItems
ItemPickerDialogArgs.SelectedTitle
ItemPickerDialogArgs.SelectionCountFormat
ItemPickerDialogArgs.SelectionEmptyMessage
ItemPickerDialogArgs.SelectionEmptyTitle
ItemPickerDialogArgs.ShowHelpCommand
ItemPickerDialogArgs.Width
ItemPickerDialogArgs.SelectCommandTooltip
ItemPickerDialogArgs.UnselectCommandTooltip
ItemPickerDialogArgs.MarkAllCommandTooltip
ItemPickerDialogArgs.UnmarkAllCommandTooltip
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Sartorius.SAF.Presentation.Controls
Assembly: Sartorius.SAF.Presentation.Controls.dll
Syntax
public class ItemPickerDialogArgs<T> : ItemPickerDialogArgs
Type Parameters
Name Description
T

The type of objects to select

Remarks

See IItemPicker for examples how to use the ItemPickerDialogArgs<T>.

Methods

View Source

AddColumnDescriptor<TPropertyType>(Expression<Func<T, TPropertyType>>)

Adds a column descriptor.

Declaration
public void AddColumnDescriptor<TPropertyType>(Expression<Func<T, TPropertyType>> columnExpression)
Parameters
Type Name Description
System.Linq.Expressions.Expression<System.Func<T, TPropertyType>> columnExpression

The column expression.

Type Parameters
Name Description
TPropertyType

The type of the property type.

View Source

AddColumnDescriptor<TPropertyType>(String, Expression<Func<T, TPropertyType>>)

Adds a column descriptor.

Declaration
public void AddColumnDescriptor<TPropertyType>(string header, Expression<Func<T, TPropertyType>> columnExpression)
Parameters
Type Name Description
System.String header

The header for this column.

System.Linq.Expressions.Expression<System.Func<T, TPropertyType>> columnExpression

The column expression.

Type Parameters
Name Description
TPropertyType

The type of the property type.

View Source

AddColumnDescriptor<TPropertyType>(String, String, Expression<Func<T, TPropertyType>>)

Adds a column descriptor.

Declaration
public void AddColumnDescriptor<TPropertyType>(string header, string watermark, Expression<Func<T, TPropertyType>> columnExpression)
Parameters
Type Name Description
System.String header

The header for this column.

System.String watermark

The watermark shown in the search box for this columns descriptor.

System.Linq.Expressions.Expression<System.Func<T, TPropertyType>> columnExpression

The column expression.

Type Parameters
Name Description
TPropertyType

The type of the property type.

Extension Methods

CollectionExtensions.AddRange<T, TCollection>(TCollection, IEnumerable<T>)
SerializableObjectCloneExtension.Clone<T>(T)
  • View Source
Back to top Generated by DocFX