Quantcast
Channel: Windows Presentation Foundation (WPF) forum
Viewing all articles
Browse latest Browse all 18858

How to set the Region of a Windows Forms User Control that hosts WPF Control using ElementHost - 2

$
0
0

I have the following xaml code:

<UserControl
	xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
	xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
	xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
	xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
	mc:Ignorable="d"
	x:Class="WpfControls.UserControl2"
	x:Name="UserControl"
	Width="300" Height="400" Loaded="UserControl_Loaded"><Viewbox Stretch="Fill"><Grid x:Name="LayoutRoot"  Width="300" Height="400"><Path x:Name="myPath" Data="M150,2.5 C231.46201,2.5 297.5,35.518997 297.5,76.25 297.5,76.886429 297.48389,77.520966 297.45182,78.153519 L297.4065,78.75 297.5,78.75 297.5,323.75 297.40323,323.75 297.42148,323.98615 297.45182,324.37875 C297.48389,325.00058 297.5,325.62437 297.5,326.25 297.5,326.87563 297.48389,327.49942 297.45182,328.12125 297.41977,328.7431 297.3718,329.36299 297.30808,329.98084 297.24436,330.59869 297.16489,331.2145 297.06992,331.82818 296.97492,332.44186 296.86438,333.05339 296.73847,333.6627 296.61258,334.27201 296.47135,334.87909 296.31494,335.48385 296.15854,336.0886 295.987,336.69102 295.80048,337.29104 289.08576,358.89132 262.97757,377.35487&#xd;&#xa;226.48412,388.25394 225.47042,388.55669 224.44869,388.85359 223.41916,389.14458 222.38961,389.43556 221.35225,389.72061 220.30727,389.99965 218.21729,390.55769 216.0968,391.09163 213.94736,391.60071 211.7979,392.10979 209.61949,392.59401 207.41367,393.0526 205.20783,393.51118 202.97458,393.94414 200.71546,394.35072 193.93807,395.57045 186.92781,396.55273 179.7264,397.27705 177.32593,397.51849 174.90421,397.73128 172.4628,397.91464 170.0214,398.09799&#xd;&#xa;167.56027,398.25194 165.08103,398.37569 162.60176,398.49945 160.10436,398.59303 157.59033,398.65567 155.07631,398.71831 152.54569,398.75 150,398.75 144.90863,398.75 139.8775,398.6232 134.91898,398.37569 132.43973,398.25194 129.97862,398.09799 127.53721,397.91464 125.0958,397.73128 122.67408,397.51849 120.27361,397.27705 117.87313,397.03561 115.4939,396.76552 113.13745,396.46751 106.06812,395.57349 99.203845,394.42836 92.586352,393.0526&#xd;&#xa;90.380518,392.59401 88.202105,392.10979 86.052653,391.60071 83.903208,391.09163 81.782717,390.55769 79.692751,389.99965 78.647761,389.72061 77.6104,389.43556 76.580859,389.14458 75.551318,388.85359 74.529597,388.55669 73.515887,388.25394 72.502184,387.95117 71.496485,387.64259 70.499003,387.32826 34.589461,376.01237 9.3154111,357.25497 3.6850622,335.48385 3.528661,334.87909 3.3874195,334.27201 3.2615321,333.6627 3.135637,333.0534 3.0250959,332.44186&#xd;&#xa;2.9301019,331.82818 2.8351007,331.2145 2.7556465,330.59869 2.6919286,329.98084 2.6282105,329.36299 2.580229,328.7431 2.5481756,328.12125 2.516125,327.49942 2.5000024,326.87563 2.5,326.25 2.5000024,325.62437 2.516125,325.00058 2.5481756,324.37875 L2.596782,323.75 2.5,323.75 2.5,78.75 2.5935042,78.75 2.5481756,78.153519 C2.516125,77.520966 2.5000024,76.886429 2.5,76.25 2.5000024,35.518997 68.538004,2.5 150,2.5 z" Fill="#7F000282" Margin="0,-1.25,0,0" Stretch="Fill" Stroke="Black" StrokeThickness="5" StrokeDashArray="1,0"/><Grid Margin="0,0,0,100" RenderTransformOrigin="0.5,0.5"><Grid.RenderTransform><TransformGroup><ScaleTransform ScaleY="0.5"/><SkewTransform/><RotateTransform/><TranslateTransform Y="-75"/></TransformGroup></Grid.RenderTransform></Grid></Grid></Viewbox></UserControl>

I am trying to use it in Windows Forms by encapsulating the above wpf usercontrol in WinForms userControl.... with this code....

    public partial class wfUserControl2 : UserControl
    {
        ElementHost elhost;
        WpfControls.UserControl2 wpfUserControl2;

        public wfUserControl2()
        {
            InitializeComponent();
            elhost = new ElementHost();
            elhost.Size = new Size(new Point(this.Size));
            elhost.Dock = DockStyle.Fill;
            wpfUserControl2 = new WpfControls.UserControl2();
            elhost.Child = wpfUserControl2;
            this.Controls.Add(elhost);
        }
}

It works great. The question is I am unable to set the Region for the Winforms UserControl to contour the shape of the wpf userControl even after exposing the wpfUserControl shape outline as a path...

I want to be able to draw overlapping controls. Without the region set correctly, I can not represent the flow of the process from Point A to Point B. If you see the attached picture, it would make more sense...

The code I have to set the region is...

        private void Clip()
        {
            //get a flattend version of the WPF-Path
            PathGeometry pathFlattend = wpf_Clarifier.OuterPath.Data.GetFlattenedPathGeometry();
            //get all PathPoints
            List<PointF> pts = new List<PointF>();
            System.Windows.Point ptStart = (wpf_Clarifier.OuterPath.Data as PathGeometry).Figures[0].StartPoint;
            pts.Add(new PointF((float)ptStart.X, (float)ptStart.Y));
            foreach (PathFigure f in pathFlattend.Figures)
            {
                for (int l = 0; l < f.Segments.Count; l++)
                {
                    if (f.Segments[l] is PolyLineSegment)
                    {
                        PolyLineSegment b = (PolyLineSegment)f.Segments[l];

                        for (int i = 0; i < b.Points.Count; i++)
                        {
                            pts.Add(new PointF((float)b.Points[i].X, (float)b.Points[i].Y));
                        }
                    }
                }
            }

            //and pathTypes
            List<byte> types = new List<byte>();
            types.Add(0);

            for (int i = 1; i < pts.Count - 1; i++)
                types.Add(1);

            types.Add(129);

            //create a new gdi+ GraphicsPath
            using (GraphicsPath gP = new GraphicsPath(pts.ToArray(), types.ToArray()))
            {
                ////transform to the actual Location of the wpf-UserControl in the WinForms-UserControl
                //gP.Transform(new System.Drawing.Drawing2D.Matrix(1, 0, 0, 1,
                //    elhost.Bounds.X,
                //    elhost.Bounds.Y));

                //and assign the region
                this.Region = new Region(gP);
            }
        }

In the WPF UserContro2.cs file I have the following property to expose myPath as OuterPath...

        public Path OuterPath
        {
            get
            {
                return (Path)myPath;
            }
        }

I need to know where I should call the Clip() in winforms userControl code so that when I draw it on WinForm it would consume space to its shape....

Any idea?

Thanks


Viewing all articles
Browse latest Browse all 18858

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>