ImplicitResourceKey.Property 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置隐式资源键的属性和子属性(如果提供的话)。
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.Text
和 Welcome.Forecolor
,这些键Welcome.Text
可能具有要从资源文件或源代码中检索的本地化资源值。 这些键Property"Text"
的值分别为 、 "Text"
和 "Forecolor"
。