ImplicitResourceKey.Property 属性

定义

获取或设置隐式资源键的属性和子属性(如果提供的话)。

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

属性值

一个 String,它包含隐式资源表达式的属性和子属性。

注解

属性 Property 指定要本地化的控件属性。 属性 Property 引用表达式中第一个句点 (.) 之后的值。 例如,假设你有一个采用以下格式的隐式资源:

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

此资源包含三个键 、 Ie:Welcome.TextWelcome.Forecolor,这些键Welcome.Text可能具有要从资源文件或源代码中检索的本地化资源值。 这些键Property"Text"的值分别为 、 "Text""Forecolor"

适用于