ListView.UseCompatibleStateImageBehavior Property

Definition

Gets or sets a value indicating whether the ListView uses state image behavior that is compatible with the .NET Framework 1.1 or the .NET Framework 2.0.

public:
 property bool UseCompatibleStateImageBehavior { bool get(); void set(bool value); };
[System.ComponentModel.Browsable(false)]
public bool UseCompatibleStateImageBehavior { get; set; }
[<System.ComponentModel.Browsable(false)>]
member this.UseCompatibleStateImageBehavior : bool with get, set
Public Property UseCompatibleStateImageBehavior As Boolean

Property Value

true if the state image behavior is compatible with the .NET Framework 1.1; false if the behavior is compatible with the .NET Framework 2.0. The default is true.

Attributes

Remarks

Changes to the ListView control in the .NET Framework 2.0 enable custom state images to be set to indicate whether an item is checked or unchecked or in an indeterminate state. With the addition of this feature, the .NET Framework 2.0 has different behavior than the .NET Framework 1.1. If you have created applications that depend on the behavior in the .NET Framework 1.1, be sure that the UseCompatibleStateImageBehavior property is set to true, which is the default value. In order to fully take advantage of custom state images, set UseCompatibleStateImageBehavior to false.

Note

If you are using the Microsoft Visual Studio 2005 designer, the UseCompatibleStateImageBehavior property will be set to false.

Applies to