DrawingVisual for grid's line
Inheritance: System.Windows.Media.DrawingVisual
Esempio n. 1
0
        public VisualGrid() {
            _visualChildren = new VisualCollection(this);

            _gridLine = new GridLineVisual(this);
            AddLogicalChild(_gridLine);
            AddVisualChild(_gridLine);

            ClipToBounds = true;
            Focusable = true;
        }
Esempio n. 2
0
        public VisualGrid()
        {
            _visualChildren = new VisualCollection(this);

            _gridLine = new GridLineVisual(this);
            AddLogicalChild(_gridLine);
            AddVisualChild(_gridLine);

            ClipToBounds = true;
            Focusable    = true;
        }