简体   繁体   English

WPF-ContentControl内容为DrawingVisual

[英]WPF - ContentControl Content as DrawingVisual

Can I set the Content property of a ContentControl to a DrawingVisual object? 我可以将ContentControl的Content属性设置为DrawingVisual对象吗? It says in the documentation that the content can be anything but I tried and nothing shows up when I add the control to canvas. 它在文档中说,内容可以是任何东西,但我尝试过,将控件添加到画布时没有任何显示。 Is it possible and if it is can you post the full code that adds a ContentControl, whose content is a DrawingVisual, to a canvas? 是否可以?如果可以,您是否可以发布将内容控件为DrawingVisual的ContentControl添加到画布的完整代码?

Can I set the Content property of a ContentControl to a DrawingVisual object? 我可以将ContentControl的Content属性设置为DrawingVisual对象吗?

Technically, yes, you can. 从技术上讲,是的,您可以。 However, that is probably not what you want. 但是,这可能不是您想要的。 A DrawingVisual added to a ContentControl will simply display the string "System.Windows.Media.DrawingVisual". 添加到ContentControl的DrawingVisual将仅显示字符串“ System.Windows.Media.DrawingVisual”。 The following code within a grid will demonstrate this easilly: 网格中的以下代码将演示此操作:

<Button>
    <DrawingVisual/>
</Button>

To use a DrawingVisual properly, you need to encapsulate it within a FrameworkElement. 为了正确使用DrawingVisual,您需要将其封装在FrameworkElement中。 See the Microsoft Reference . 请参阅Microsoft参考

Thus, the following code should help do what you want. 因此,以下代码将帮助您完成所需的工作。

<Window x:Class="TestDump.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="clr-namespace:TestDump"
Title="Window1" Height="300" Width="600" >
<Grid>
    <Canvas>
        <Button >
            <local:MyVisualHost Width="600" Height="300"/>
        </Button>
    </Canvas>
</Grid>
</Window>

And on the C# side: 在C#方面:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;

namespace TestDump
{
/// <summary>
/// Interaction logic for Window1.xaml
/// </summary>
public partial class Window1 : Window
{
    public Window1()
    {
        InitializeComponent();
    }
}

public class MyVisualHost : FrameworkElement
{
    private VisualCollection _children;
    public MyVisualHost()
    {
        _children = new VisualCollection(this);
        _children.Add(CreateDrawingVisualRectangle());
    }
    // Create a DrawingVisual that contains a rectangle.
    private DrawingVisual CreateDrawingVisualRectangle()
    {
        DrawingVisual drawingVisual = new DrawingVisual();

        // Retrieve the DrawingContext in order to create new drawing content.
        DrawingContext drawingContext = drawingVisual.RenderOpen();

        // Create a rectangle and draw it in the DrawingContext.
        Rect rect = new Rect(new System.Windows.Point(160, 100), new System.Windows.Size(320, 80));
        drawingContext.DrawRectangle(System.Windows.Media.Brushes.Blue, (System.Windows.Media.Pen)null, rect);

        // Persist the drawing content.
        drawingContext.Close();

        return drawingVisual;
    }

    // Provide a required override for the VisualChildrenCount property.
    protected override int VisualChildrenCount
    {
        get { return _children.Count; }
    }

    // Provide a required override for the GetVisualChild method.
    protected override Visual GetVisualChild(int index)
    {
        if (index < 0 || index >= _children.Count)
        {
            throw new ArgumentOutOfRangeException();
        }

        return _children[index];
    }

}
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM