ProjectResources Property |
Returns the object that contains all the graphic sheet resources for the project
(among other things)
Namespace: (Default Namespace)Assembly: Default (in Default.exe) Version: 1.0.0.0
Syntax public static ResourceManager Resources { get; }
Property Value
Type:
ResourceManagerExamples A graphic sheet's image can be retrieved from this object using code
like this:
System.Drawing.Bitmap bmpGfx = (System.Drawing.Bitmap)Project.Resources.GetObject("My Sheet")
See Also