Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 C# 代码中看到了一行:
Image = new BitmapImage( new Uri("/MyProgramName;component/Images/a.png", UriKind.Relative));
那个“;”是什么意思 在这个 Uri 字符串中做什么?
那个 a.png 实际上在 MyProgramName/Images/a.png 下。
它只是WPF 资源 URI变体之一的分隔符。分号对所有 URI 没有任何特定的通用含义。