标签: c# uri
我在C#代码中看到一行:
Image = new BitmapImage( new Uri("/MyProgramName;component/Images/a.png", UriKind.Relative));
那是什么“;”在这个Uri字符串中做什么?
该a.png实际上在MyProgramName / Images / a.png。
答案 0 :(得分:3)
它只是WPF Resource URIs的其中一个变体的分隔符。分号对所有URI都没有任何特定的通用含义。