Skip to content

Commit f5d681d

Browse files
vladimir-krestovRussKie
authored andcommitted
Port ListViewItemCollectionEditor
Closes #1276
1 parent 1286807 commit f5d681d

File tree

3 files changed

+57
-2
lines changed

3 files changed

+57
-2
lines changed

src/System.Design/src/System.Design.Forwards.cs

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
[assembly: TypeForwardedTo(typeof(System.Windows.Forms.Design.ImageIndexEditor))]
99
[assembly: TypeForwardedTo(typeof(System.Windows.Forms.Design.ListControlStringCollectionEditor))]
1010
[assembly: TypeForwardedTo(typeof(System.Windows.Forms.Design.ListViewGroupCollectionEditor))]
11+
[assembly: TypeForwardedTo(typeof(System.Windows.Forms.Design.ListViewItemCollectionEditor))]
1112
[assembly: TypeForwardedTo(typeof(System.Windows.Forms.Design.ListViewSubItemCollectionEditor))]
1213
[assembly: TypeForwardedTo(typeof(System.Windows.Forms.Design.StringArrayEditor))]
1314
[assembly: TypeForwardedTo(typeof(System.Windows.Forms.Design.StringCollectionEditor))]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
// Licensed to the .NET Foundation under one or more agreements.
2+
// The .NET Foundation licenses this file to you under the MIT license.
3+
// See the LICENSE file in the project root for more information.
4+
5+
using System.ComponentModel;
6+
using System.ComponentModel.Design;
7+
8+
namespace System.Windows.Forms.Design
9+
{
10+
/// <summary>
11+
/// Provides an editor for a ListView items collection.
12+
/// </summary>
13+
internal class ListViewItemCollectionEditor : CollectionEditor
14+
{
15+
/// <summary>
16+
/// Initializes a new instance of the <see cref='System.Windows.Forms.Design.ListViewItemCollectionEditor'/> class.
17+
/// </summary>
18+
public ListViewItemCollectionEditor(Type type) : base(type)
19+
{ }
20+
21+
/// <summary>
22+
/// Retrieves the display text for the given list item.
23+
/// </summary>
24+
protected override string GetDisplayText(object value)
25+
{
26+
if (value == null)
27+
{
28+
return string.Empty;
29+
}
30+
31+
string text;
32+
33+
PropertyDescriptor prop = TypeDescriptor.GetDefaultProperty(CollectionType);
34+
if (prop != null && prop.PropertyType == typeof(string))
35+
{
36+
text = (string)prop.GetValue(value);
37+
38+
if (text != null && text.Length > 0)
39+
{
40+
return text;
41+
}
42+
}
43+
44+
text = TypeDescriptor.GetConverter(value).ConvertToString(value);
45+
46+
if (text == null || text.Length == 0)
47+
{
48+
text = value.GetType().Name;
49+
}
50+
51+
return text;
52+
}
53+
}
54+
}

src/System.Windows.Forms.Design.Editors/tests/UnitTests/EnsureEditorsTests.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Licensed to the .NET Foundation under one or more agreements.
1+
// Licensed to the .NET Foundation under one or more agreements.
22
// The .NET Foundation licenses this file to you under the MIT license.
33
// See the LICENSE file in the project root for more information.
44

@@ -94,7 +94,7 @@ public void EnsureUITypeEditorForType(Type type, Type expectedEditorType)
9494
//[InlineData(typeof(ListControl), "ValueMember", typeof(DataMemberFieldEditor))]
9595
//[InlineData(typeof(ListView), "Columns", typeof(ColumnHeaderCollectionEditor))]
9696
[InlineData(typeof(ListView), "Groups", typeof(ListViewGroupCollectionEditor))]
97-
//[InlineData(typeof(ListView), "Items", typeof(ListViewItemCollectionEditor))]
97+
[InlineData(typeof(ListView), "Items", typeof(ListViewItemCollectionEditor))]
9898
[InlineData(typeof(ListViewItem), "ImageIndex", typeof(ImageIndexEditor))]
9999
[InlineData(typeof(ListViewItem), "ImageKey", typeof(ImageIndexEditor))]
100100
[InlineData(typeof(ListViewItem), "StateImageIndex", typeof(ImageIndexEditor))]

0 commit comments

Comments
 (0)