确保WPF中自定义控件的正确边界

时间:2012-12-10 20:41:18

标签: c# wpf

我已经创建了自己的自定义WPF控件,只是在其OnRender方法中绘制了一些文本,但是,当我在设计器中查看此控件时,它不会占用任何空间。我需要做些什么来确保我的控件占用我所拥有的FormattedText对象所报告的空间?

1 个答案:

答案 0 :(得分:0)

这是我正在使用render方法做的一个例子。除了文本之外,我真的不需要任何东西,但是,在创建新几何体之后,我错过了对InvalidateMeasureInvalidateArrange的调用。

private Geometry textGeometry;

protected override void OnRender(System.Windows.Media.DrawingContext drawingContext)
{
    if (textGeometry == null)
    {
        var currentTypeface = new Typeface(FontFamily, FontStyle, FontWeight, FontStretch);

        var formattedText = new FormattedText(Text
            , System.Globalization.CultureInfo.CurrentCulture
            , System.Windows.FlowDirection.LeftToRight
            , currentTypeface
            , FontSize
            , Foreground
            );

        var d = LineHeight - formattedText.Baseline;

        textGeometry = formattedText.BuildGeometry(new Point(-formattedText.OverhangLeading, d));
        textGeometry.Freeze();

        this.InvalidateMeasure();
        this.InvalidateArrange();
    }

    drawingContext.DrawGeometry(Foreground, null, textGeometry);
}