Class FxSystemIcon
public class FxSystemIcon
{
// Fields
public static FxSystemIcon exclamationIcon;
public static FxSystemIcon informationIcon;
public static FxSystemIcon questionIcon;
public static FxSystemIcon stopIcon;
// Methods
public synchronized Image getImage();
}
This class provides static image types used in the Application Foundation Classes.
Four image files are included with the com.ms.fx package:
exclamation.gif
|
question.gif
|
stop.gif
|
information.gif
|
public synchronized Image getImage();
Retrieves the image identifier, based on the type and state.
Note State is not used for icon images.
Return Value:
Returns an Image based on the image identifier.
- exclamationIcon
- The image is used Win32 platform in message boxes when a warning message is displayed. The excalmation.gif image is included with the com.ms.fx package.
- informationIcon
- The image is used in Win32 message boxes when an information message is displayed. The information.gif image is included with the com.ms.fx package.
- questionIcon
- The system question-mark image used in Win32 message boxes to query users. The question.gif is included in the com.ms.fx package to enhance backwards compatibility with Win32. For more information on the use of this image, see The Windows Interface Guidelines for Software Design.
- stopIcon
- An image used in Microsoft® Win32® message boxes when a critical message is displayed. The stop.gif image is included with the com.ms.fx package.