Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Exception in CanvasGeometry.CreatePolygon while mouse drag on canvas in WinUI #844

Open
powerpdw opened this issue Aug 11, 2021 · 4 comments

Comments

@powerpdw
Copy link

powerpdw commented Aug 11, 2021

Hello.
I am using canvas geometry.
But in CanvasGeometry.CreatePolygon(), exception is being occured.
Because of these exceptions, rendering performance is too poor.
How can I avoid this problem?

Exceptions
Exception thrown at 0x7588B4B2 in App6.exe: Microsoft C++ exception: EEMessageException at memory location 0x027AD4C0.
Exception thrown: 'System.DllNotFoundException' in System.Private.CoreLib.dll
Exception thrown: 'System.IO.FileNotFoundException' in System.Private.CoreLib.dll

Below is the code to reproduce the exception.

MainWindow.xaml.cs

    public sealed partial class MainWindow : Window
    {
        private object _lockCanvas = new object();
        public MainWindow()
        {
            this.InitializeComponent();

            myCanvas.Draw += MyCanvas_Draw;
            myCanvas.PointerMoved += this.canvasChart_PointerMoved;
            myCanvas.PointerPressed += this.canvasChart_PointerPressed;
            myCanvas.PointerReleased += this.canvasChart_PointerReleased;
        }

        private void canvasChart_PointerMoved(object sender, PointerRoutedEventArgs e)
        {
            CanvasControl canvas = sender as CanvasControl;
            if (canvas == null)
            {
                return;
            }
            if (myCanvas.PointerCaptures != null && myCanvas.PointerCaptures.Count > 0)
            {
                canvas.Invalidate();           // repaint
            }
        }

        private void canvasChart_PointerPressed(object sender, PointerRoutedEventArgs e)
        {
            CanvasControl canvas = sender as CanvasControl;
            if (canvas == null)
            {
                return;
            }

            canvas.CapturePointer(e.Pointer);
        }

        private void canvasChart_PointerReleased(object sender, PointerRoutedEventArgs e)
        {
            //do something
            CanvasControl canvas = sender as CanvasControl;
            canvas.ReleasePointerCaptures();
        }

        private void myButton_Click(object sender, RoutedEventArgs e)
        {
            myCanvas.Invalidate();
            myButton.Content = "Clicked";
        }

        private void MyCanvas_Draw(Microsoft.Graphics.Canvas.UI.Xaml.CanvasControl sender, Microsoft.Graphics.Canvas.UI.Xaml.CanvasDrawEventArgs args)
        {
            if (sender.ReadyToDraw == false)
            {
                return;
            }
            CanvasGeometry canvasPolygon = CanvasGeometry.CreatePolygon(sender, new Vector2[] { new Vector2(0, 0), new Vector2(100f, 0f), new Vector2(50f, 100f) });
            args.DrawingSession.DrawGeometry(canvasPolygon, Colors.Blue);

        }
    }
@ChewWorker
Copy link

Are you trying to run this with Win2D for WinUI3 or Win2D for UWP?

@powerpdw
Copy link
Author

Are you trying to run this with Win2D for WinUI3 or Win2D for UWP?

I'm trying to run this with Win2D for WinUI3.

@ChewWorker
Copy link

At least some of those exceptions are caused by activation not understanding where to find the classes you're working with. For each class that's giving you trouble (you can comment out code to narrow it down if necessary), put the following into your package.appxmanifest (Currently formatted for CanvasControl)

<Extension Category="windows.activatableClass.inProcessServer">
    <InProcessServer>
        <Path>Microsoft.Graphics.Canvas.dll</Path>
        <ActivatableClass ActivatableClassId="Microsoft.Graphics.Canvas.UI.Xaml.CanvasControl" ThreadingModel="both" />
    </InProcessServer>
</Extension>

@powerpdw
Copy link
Author

powerpdw commented Sep 1, 2021

I've putted the xml code in package.appxmanifest.
But error was occured.
"Manifest references file 'Microsoft.Graphics.Canvas.dll' which is not part of the payload."

This is the code of Package.appmanifest.

<?xml version="1.0" encoding="utf-8"?>

<Package
  xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10"
  xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10"
  xmlns:rescap="http://schemas.microsoft.com/appx/manifest/foundation/windows10/restrictedcapabilities"
  xmlns:uap3="http://schemas.microsoft.com/appx/manifest/uap/windows10/3"
  IgnorableNamespaces="uap rescap uap3">

  <Identity
    Name="a5cc595a-d773-4ca9-9724-e840d2cf403b"
    Publisher="CN=Otsuka Electronis"
    Version="1.0.0.0" />

  <Properties>
    <DisplayName>App6 (Package)</DisplayName>
    <PublisherDisplayName>Otsuka Electronis</PublisherDisplayName>
    <Logo>Images\StoreLogo.png</Logo>
  </Properties>

  <Dependencies>
    <TargetDeviceFamily Name="Windows.Universal" MinVersion="10.0.17763.0" MaxVersionTested="10.0.19041.0" />
    <TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.17763.0" MaxVersionTested="10.0.19041.0" />
  </Dependencies>

  <Resources>
    <Resource Language="x-generate"/>
  </Resources>

  <Extensions>
        <Extension Category="windows.activatableClass.inProcessServer">
          <InProcessServer>
              <Path>Microsoft.Graphics.Canvas.dll</Path>
              <ActivatableClass ActivatableClassId="Microsoft.Graphics.Canvas.UI.Xaml.CanvasControl" ThreadingModel="both" />
          </InProcessServer>
        </Extension>
    </Extensions>
        
  <Applications>
    <Application Id="App"
      Executable="$targetnametoken$.exe"
      EntryPoint="$targetentrypoint$">
      
      <uap:VisualElements
        DisplayName="App6 (Package)"
        Description="App6 (Package)"
        BackgroundColor="transparent"
        Square150x150Logo="Images\Square150x150Logo.png"
        Square44x44Logo="Images\Square44x44Logo.png">
        <uap:DefaultTile Wide310x150Logo="Images\Wide310x150Logo.png" />
        <uap:SplashScreen Image="Images\SplashScreen.png" />
      </uap:VisualElements>
    </Application>
  </Applications>

  <Capabilities>
    <rescap:Capability Name="runFullTrust" />
  </Capabilities>
</Package>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants