C#XML文档 - 用于引用资源图像的标记

时间:2013-04-07 12:19:49

标签: c# xml tags

我想知道在引用应用程序资源时,哪个是用于XML文档的标记,即resources.resx文件中的图像。哪种方法最正确?

例如,假设我有一个更新GUI中图片的方法。图片可以是资源中定义的图片之一(Resources.Car或Resources.Bus),因此它在image参数中指定。使用以下标签来引用资源是否正确?

/// <summary>
/// Sets the image for the picture.
/// </summary>
/// <param name="image">An image representing the transport used:
/// <para><c>Resources.Car<c> to show the car image.</para>
/// <para><c>Resources.Bus<c> to show the bus image.</para>
/// </param>
public void showImage(Image image)
{
   ...
}

0 个答案:

没有答案