ImplicitResourceKey.KeyPrefix 属性

定义

获取或设置用于标识一组属性的前缀。

public:
 property System::String ^ KeyPrefix { System::String ^ get(); void set(System::String ^ value); };
public string KeyPrefix { get; set; }
member this.KeyPrefix : string with get, set
Public Property KeyPrefix As String

属性值

String

一个 String,它包含隐式资源表达式的前缀。

注解

KeyPrefix属性将可以分配给控件的属性集合结合在一起。 KeyPrefix属性指的是表达式中的冒号 (: ) 的值(如果存在),在第一个句点 ( 之前。 ) 。 例如,假设您有一个采用以下形式的隐式资源:

<asp:label runat="server" id="label1" meta:resourcekey="Welcome"  
        text="Welcome"   
        ie:text="Welcome Internet Explorer User"    
        forecolor="blue"/>    

此资源包含三个键: Welcome.TextIe:Welcome.TextWelcome.Forecolor ,它们可能具有要从资源文件或源代码中检索的本地化资源值。 每个键都 "Welcome" 作为 KeyPrefix 值。

适用于

另请参阅