excubo-ag / Blazor.Canvas

Home Page:https://excubo-ag.github.io/Blazor.Canvas/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Canvas component paramaters stopPropagation or preventDefault throws error

juancarloshb5 opened this issue · comments

When trying to use the stopPropagation or preventDefault throws an error

<Canvas
@oncontextmenu="OnContextMenu"
@oncontextmenu:stopPropagation="true"
@oncontextmenu:preventDefault="true"
/>

Error Message: "The component parameter 'oncontextmenu' is used two or more times

Thanks for share , been testing this library and its great!

Hi @juancarloshb5,

This is a longstanding limitation of components and there's nothing we can do about it. I recommend switching to a native canvas element (see the Readme on how using the component vs element differ), because the limitation doesn't apply to elements.

Hope that helps,
Stefan