ComponentFactory.Krypton.Toolkit.ViewDrawContent.ViewDrawContent C# (CSharp) Method

ViewDrawContent() public method

Initialize a new instance of the ViewDrawContent class.
public ViewDrawContent ( IPaletteContent paletteContent, IContentValues values, VisualOrientation orientation ) : System
paletteContent IPaletteContent Palette source for the content.
values IContentValues Reference to actual content values.
orientation VisualOrientation Visual orientation of the content.
return System
        public ViewDrawContent(IPaletteContent paletteContent, 
							   IContentValues values,
							   VisualOrientation orientation)
        {
            // Cache the starting values
            _paletteContent = paletteContent;
            _values = values;
            _orientation = orientation;

            // Default other state
            _drawOnComposition = false;
            _testForFocusCues = false;
        }