FilterUIHintAttribute 类

定义

注意

This attribute is no longer in use and will be ignored if applied.

注意

FilterUIHintAttribute has been deprecated and is not supported.

表示用于指定列的筛选行为的特性。

public ref class FilterUIHintAttribute sealed : Attribute
[System.AttributeUsage(System.AttributeTargets.Field | System.AttributeTargets.Property, AllowMultiple=false)]
[System.Obsolete("This attribute is no longer in use and will be ignored if applied.")]
public sealed class FilterUIHintAttribute : Attribute
[System.AttributeUsage(System.AttributeTargets.Field | System.AttributeTargets.Property, AllowMultiple=false)]
[System.Obsolete("FilterUIHintAttribute has been deprecated and is not supported.")]
public sealed class FilterUIHintAttribute : Attribute
[System.AttributeUsage(System.AttributeTargets.Field | System.AttributeTargets.Property, AllowMultiple=false)]
public sealed class FilterUIHintAttribute : Attribute
[<System.AttributeUsage(System.AttributeTargets.Field | System.AttributeTargets.Property, AllowMultiple=false)>]
[<System.Obsolete("This attribute is no longer in use and will be ignored if applied.")>]
type FilterUIHintAttribute = class
    inherit Attribute
[<System.AttributeUsage(System.AttributeTargets.Field | System.AttributeTargets.Property, AllowMultiple=false)>]
[<System.Obsolete("FilterUIHintAttribute has been deprecated and is not supported.")>]
type FilterUIHintAttribute = class
    inherit Attribute
[<System.AttributeUsage(System.AttributeTargets.Field | System.AttributeTargets.Property, AllowMultiple=false)>]
type FilterUIHintAttribute = class
    inherit Attribute
Public NotInheritable Class FilterUIHintAttribute
Inherits Attribute
继承
FilterUIHintAttribute
属性

示例

以下示例演示如何替换产品实体上的默认筛选器。

MetadataType(typeof(Product_MD))]  
public partial class Product {  
    private class Product_MD {  
        [FilterUIHint("MultiForeignKey")]  
        public object Category { get; set; }  
        [FilterUIHint("BooleanRadio")]  
        public object Discontinued { get; set; }  
    }  
}  
<MetadataType(GetType(Product_MD))>  _  
Public Class Product  
    Private Class Product_MD  
        <FilterUIHint("MultiForeignKey")>  _  
        Public Property Category As Object  
        End Property  

        <FilterUIHint("BooleanRadio")>  _  
        Public Property Discontinued As Object  
        End Property  

    End Class  
End Class  

构造函数

FilterUIHintAttribute(String)
已过时.
已过时.

通过使用筛选器 UI 提示来初始化 FilterUIHintAttribute 类的新实例。

FilterUIHintAttribute(String, String)
已过时.
已过时.

通过使用筛选器 UI 提示和表示层名称来初始化 FilterUIHintAttribute 类的新实例。

FilterUIHintAttribute(String, String, Object[])
已过时.
已过时.

通过使用筛选器 UI 提示、表示层名称和控件参数来初始化 FilterUIHintAttribute 类的新实例。

属性

ControlParameters
已过时.
已过时.

获取用作控件的构造函数中的参数的名称/值对。

FilterUIHint
已过时.
已过时.

获取用于筛选的控件的名称。

PresentationLayer
已过时.
已过时.

获取支持此控件的表示层的名称。

TypeId
已过时.
已过时.

返回此特性实例的唯一标识符。

TypeId
已过时.
已过时.

在派生类中实现时,获取此 Attribute 的唯一标识符。

(继承自 Attribute)

方法

Equals(Object)
已过时.
已过时.

返回一个值,该值指示此特性实例是否与指定的对象相等。

GetHashCode()
已过时.
已过时.

返回此特性实例的哈希代码。

GetType()
已过时.
已过时.

获取当前实例的 Type

(继承自 Object)
IsDefaultAttribute()
已过时.
已过时.

在派生类中重写时,指示此实例的值是否是派生类的默认值。

(继承自 Attribute)
Match(Object)
已过时.
已过时.

当在派生类中重写时,返回一个指示此实例是否等于指定对象的值。

(继承自 Attribute)
MemberwiseClone()
已过时.
已过时.

创建当前 Object 的浅表副本。

(继承自 Object)
ToString()
已过时.
已过时.

返回表示当前对象的字符串。

(继承自 Object)

显式接口实现

_Attribute.GetIDsOfNames(Guid, IntPtr, UInt32, UInt32, IntPtr)
已过时.
已过时.

将一组名称映射为对应的一组调度标识符。

(继承自 Attribute)
_Attribute.GetTypeInfo(UInt32, UInt32, IntPtr)
已过时.
已过时.

检索对象的类型信息,然后可以使用该信息获取接口的类型信息。

(继承自 Attribute)
_Attribute.GetTypeInfoCount(UInt32)
已过时.
已过时.

检索对象提供的类型信息接口的数量(0 或 1)。

(继承自 Attribute)
_Attribute.Invoke(UInt32, Guid, UInt32, Int16, IntPtr, IntPtr, IntPtr, IntPtr)
已过时.
已过时.

提供对某一对象公开的属性和方法的访问。

(继承自 Attribute)

适用于