我想用我的自定义设计视图显示我的资源字典项,我想ListView
用值显示键。并且可以使用设计视图进行编辑。-我希望能够在 Visual Studio desiner 中编辑我的字典。
问问题
427 次
1 回答
0
我认为您可以使用下面的 resourceDictionary 实例的 Keys 和 Values 属性。
string exeFilePath = System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase;
string exeDirPath = System.IO.Path.GetDirectoryName(exeFilePath);
string targetFile = "subFolder\\ResourceDictionary.xaml";
string dictionaryPath = new Uri(System.IO.Path.Combine(exeDirPath, targetFile)).LocalPath;
string xamlString = File.ReadAllText(dictionaryPath);
ResourceDictionary resourceDictionary = (ResourceDictionary)XamlReader.Parse(xamlString);
于 2014-10-06T09:40:20.157 回答