MultiSelect for WPF
タグの折り返し
機能 > タグの折り返し

MultiSelect provides a way to wrap the items within the control header. This can be achieved using TagWrapping property of C1TagEditor class.

The following GIF shows how the items in the header get wrapped on setting the TagWrap property.

Tag Wrap in MultiSelect WPF

To wrap items in header, use the following code:

Dim te As C1TagEditor = New C1TagEditor()
te.TagWrapping = True
C1TagEditor te = new C1TagEditor();
te.TagWrapping = true;