ComponentFactory.Krypton.Toolkit.PaletteRedirectContextMenu.GetContextMenuCheckedImage C# (CSharp) 메소드

GetContextMenuCheckedImage() 공개 메소드

Gets a checked image appropriate for a context menu item.
public GetContextMenuCheckedImage ( ) : Image
리턴 Image
        public override Image GetContextMenuCheckedImage()
        {
            Image retImage = _images.Checked;

            // Not found, then inherit from target
            if (retImage == null)
                retImage = Target.GetContextMenuCheckedImage();

            return retImage;
        }