VCManagedResourceCompilerTool.DefaultLocalizedResources 屬性
取得值,指出是否指定的.resx 檔案是提供預設的資源或附屬 DLL。
命名空間: Microsoft.VisualStudio.VCProjectEngine
組件: Microsoft.VisualStudio.VCProjectEngine (在 Microsoft.VisualStudio.VCProjectEngine.dll 中)
語法
'宣告
ReadOnly Property DefaultLocalizedResources As Boolean
bool DefaultLocalizedResources { get; }
property bool DefaultLocalizedResources {
bool get ();
}
abstract DefaultLocalizedResources : bool with get
function get DefaultLocalizedResources () : boolean
屬性值
型別:System.Boolean
true 如果.resx 檔案所提供的預設資源或附屬 DLL。 否則, false。
備註
這個屬性是非常有意義只在一個專案,而不是專案本身中的個別的.resx 檔案。
請參閱HOW TO:編譯專案模型擴充性的範例程式碼如需有關如何編譯及執行這個範例資訊。
範例
' Add a reference to Microsoft.VisualStudio.VCProjectEngine and have a
' Visual C++ project loaded before running this example.
Imports EnvDTE
Imports Microsoft.VisualStudio.VCProjectEngine
Public Module Module1
Sub Test()
Dim prj As VCProject
Dim cfgs, tools As IVCCollection
Dim cfg As VCFileConfiguration
Dim tool As VCManagedResourceCompilerTool
Dim file As VCFile
prj = DTE.Solution.Projects.Item(1).Object
file = prj.Files("Form1.resx")
cfgs = file.FileConfigurations
cfg = cfgs.Item(1)
tool = cfg.Tool
MsgBox("Default localized resources?: " & _
tool.DefaultLocalizedResources.ToString)
End Sub
End Module
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。