How do you adjust the height of an UltraListViewItem when its parent UltraListView control is in Details view? (other than by adjusting Font sizes).
Tonic2012,
Unfortunately there is no way to adjust the size of an UltraListViewItem when the UltraListView's View is set to Details. If you'd like, you can submit a feature request for this functionality here.
~Kim~
I know this is a really old post but I thought I'd share how I overcame this problem. I simply used this code:
ulvwXXX.MainColumn.ItemAppearance.Image = My.Resources.Transparent ulvwXXX.ViewSettingsDetails.ImageSize = New System.Drawing.Size(2, 26)
Using a transparent image with a very narrow size allowed no image to be shown. The height of the ImageSize can then be set to get the desired item height.
How can you get the height of the list view items?
I am using a listview as a dropdown check box in an ultra combo editor that is itself embeded as the editor of a column in a grid...
I would like to set the height of the listview based on the aggregated height of the UI elements in its items collection.
Snagging a reference of the item added in Items.Add yields a null reference to the UIElement property...
I naturally assumed that the UIElement of the item would give me what I wanted and I would simply aggregate the height values...
Not So
Carson