1
Q
獲取從資源文件
A
回答
1
您可以使用ResourceDictionary.Item
這是修改,讓它做你想讓它什麼樣的示例代碼。
Class MainWindow
Dim dict As ResourceDictionary = New ResourceDictionary()
Public Sub New()
' This call is required by the designer.
InitializeComponent()
SetLanguageDictionary()
MessageBox.Show(dict.Item("greeting").ToString)
End Sub
Private Sub SetLanguageDictionary()
Select Case (Thread.CurrentThread.CurrentCulture.ToString())
Case "en-US"
dict.Source = New Uri("..\Resources\StringResources.xaml", UriKind.Relative)
Case "fr-CA"
dict.Source = New Uri("..\Resources\StringResources.fr-CA.xaml", UriKind.Relative)
Case Else
dict.Source = New Uri("..\Resources\StringResources.xaml", UriKind.Relative)
End Select
End Sub
End Class
和我的resourcefile用
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:system ="clr-namespace:System;assembly=mscorlib" >
<system:String x:Key="greeting">Hello World</system:String>
</ResourceDictionary>
相關問題
- 1. 從資源文件/內容獲取流
- 2. 從RESW資源獲取文件
- 3. 如何從JAR文件獲取資源
- 4. 從Visual C++資源文件獲取FILEVERSION
- 5. 從JNLP文件獲取單個資源
- 6. 如何從spring獲取文件資源
- 7. 從Maven資源獲取文件路徑
- 8. 如何從資源中獲取文件
- 9. 從資源文件夾中獲取資源時出錯
- 10. 強制設備從資源文件夾獲取資源
- 11. 獲取資源文本文件列表
- 12. 如何從資源文件夾中獲取文件。 Spring框架
- 13. 從我的jar文件中獲取資源文件夾內容?
- 14. 從C#中的資源文件獲取文件字節數
- 15. 從資源中讀取文本文件
- 16. 從OSGi軟件包獲取資源
- 17. 從資源獲取dll
- 18. 從URL獲取資源
- 19. mvc - ActionNameAttribute從資源獲取?
- 20. 從ImageView獲取資源ID
- 21. 從hWnd獲取(資源)ID
- 22. 從片段獲取資源
- 23. 從typedarray獲取資源ID
- 24. 從nl.siegmann.epublib獲取資源的位圖資源加載資源
- 25. 從資源文件
- 26. .NET獲取嵌入的資源文件
- 27. 如何獲取測試資源文件?
- 28. 如何立即獲取文件資源?
- 29. 獲取Android文件資源的大小?
- 30. Android獲取資源文件夾以顯示資源類型
它的工作! (0).item code ... S = Me.Resources.MergedDictionaries.Item(0).Item(「login」)。ToString 謝謝! –