コード例 #1
0
        /// <summary>
        /// Initializes a new instance of the GdiRenderer class.
        /// </summary>
        public GdiGraphicsRenderer()
        {
            counter      = 0;
            _svgRenderer = new GdiRenderingHelper(this);

            backColor = Color.White;
        }
コード例 #2
0
 /// <summary>
 /// Initializes a new instance of the GdiRenderer class.
 /// </summary>
 public GdiGraphicsRenderer(bool isStatic = false, bool disposeRaster = true)
 {
     _isStatic      = isStatic;
     _disposeRaster = disposeRaster;
     _invalidRect   = SvgRectF.Empty;
     _backColor     = Color.White;
     _hitTestHelper = GdiHitTestHelper.NoHit;
     _svgRenderer   = new GdiRenderingHelper(this);
 }
コード例 #3
0
        /// <summary>
        /// Initializes a new instance of the GdiRenderer class.
        /// </summary>
        public GdiGraphicsRenderer()
        {
            counter      = 0;
            _svgRenderer = new GdiRenderingHelper(this);

            backColor = Color.White;
        }