-
I have windows 10, 64 bit and I was trying to run angular app inside my wpf application.
When I use ng serve application works fine in both scenarios in the chrome and other browsers, but when I deploy my application it entirely works only when all code is put inside index.html |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Ok I have found the problem. The Cefsharp have drag functions is disabled by defalut. While functions called for example by dragstart still starts ,it wont use dragevent. To fix i added
to the "Loaded" scope in Cefsharp |
Beta Was this translation helpful? Give feedback.
Ok I have found the problem. The Cefsharp have drag functions is disabled by defalut. While functions called for example by dragstart still starts ,it wont use dragevent. To fix i added
AllowDrop= true;
to the "Loaded" scope in Cefsharp