Search found 1142 matches

Go to advanced search

by JS-Support @Userware
Sun Mar 08, 2020 12:34 pm
Forum: Technical Support
Topic: can't get it free version working! [CSHTML5 v2]
Replies: 2
Views: 10647

Re: can't get it free version working!

Hi,

It looks like it's due to the path of your solution containing unrecognized characters or being too long.

Could you please try moving your solution folder to something simple like C:/MyProject and removing any non-ASCII characters ?

Thanks
by JS-Support @Userware
Sat Mar 07, 2020 7:40 pm
Forum: Pre-Releases, Downloads and Announcements
Topic: OpenSilver 1.0.0-alpha-002 released!
Replies: 0
Views: 14076

OpenSilver 1.0.0-alpha-002 released!

Hello everyone, We are pleased to announce that the "1.0.0-alpha-002" version of OpenSilver is now available for download! You can download it from the website at: OpenSilver.NET Please report any issues ASAP so that we can fix them in time for the official launch. Thank you Regards The CS...
by JS-Support @Userware
Fri Feb 28, 2020 6:25 am
Forum: Bug Reports
Topic: Material design
Replies: 2
Views: 9150

Re: Material design

Now fixed. Thanks.
by JS-Support @Userware
Thu Feb 20, 2020 8:52 am
Forum: Bug Reports
Topic: Material design
Replies: 2
Views: 9150

Re: Material design

Thanks! That's because we have just moved the code in GitHub. The "View Source" is also broken. We are going to fix it asap!
by JS-Support @Userware
Mon Feb 17, 2020 9:16 am
Forum: Pre-Releases, Downloads and Announcements
Topic: Introducing OpenSilver - the plugin-free reimplementation of Silverlight that runs on current browsers via WebAssembly
Replies: 0
Views: 14363

Introducing OpenSilver - the plugin-free reimplementation of Silverlight that runs on current browsers via WebAssembly

Dear CSHTML5 forum members, We are glad to announce an early access to the first Technology Preview of OpenSilver, the WebAssembly-based alternative to CSHTML5! Although the Technology Preview will only be officially announced on March 9, 2020, here is a private download link just for the CSHTML5 co...
by JS-Support @Userware
Wed Feb 12, 2020 2:40 am
Forum: Technical Support
Topic: [SOLVED] Error on Building Project on Bridge 2.0.0-alpha57-075 Onwards
Replies: 2
Views: 12326

Re: Error on Building Project on Bridge 2.0.0-alpha57-075 Onwards

We have just fixed this issue. Please expect the fix to be available in the very next version of the NuGet package (alpha58-078). Thanks
by JS-Support @Userware
Sun Feb 09, 2020 3:56 am
Forum: Technical Support
Topic: [SOLVED] Error on Building Project on Bridge 2.0.0-alpha57-075 Onwards
Replies: 2
Views: 12326

Re: Error on Building Project on Bridge 2.0.0-alpha57-075 Onwards

Thanks for reporting this issue. We are going to review all the changes between 074 and 075 and keep you updated asap.
by JS-Support @Userware
Fri Feb 07, 2020 11:21 am
Forum: Extensions and Plugins for CSHTML5
Topic: ProgressBar Control for CSHTML5
Replies: 1
Views: 11319

Re: ProgressBar Control for CSHTML5

Very nice! Thanks a lot
by JS-Support @Userware
Fri Feb 07, 2020 7:54 am
Forum: Technical Support
Topic: Uno ?
Replies: 3
Views: 13001

Re: Uno ?

CSHTML5 generates HTML and JavaScript files. Uno generates WebAssembly files. By the way, we are also going to soon release a product that generates WebAssembly files. It is going to exist in parallel to CSHTML5 (each has its advantages and drawbacks). Please be sure to keep an eye on the "Anno...
by JS-Support @Userware
Thu Dec 05, 2019 6:25 am
Forum: Pre-Releases, Downloads and Announcements
Topic: v1.2.4 released! (updated with hotfix)
Replies: 3
Views: 13685

Re: v1.2.4 released!

HOTFIX: If you have any troubles compiling to JavaScript with the "Silverlight Migration Edition", please download the following hotfix: CSHTML5_v1_2_4_Hotfix_2019_12_05.zip To use it: 1. close visual studio 2. extract the ZIP 3. copy the extracted files into the 2 following folders: C:\P...
by JS-Support @Userware
Mon Dec 02, 2019 12:56 am
Forum: Pre-Releases, Downloads and Announcements
Topic: v2.0 Preview 0.6 RELEASED!
Replies: 14
Views: 74860

Re: v2.0 Preview 0.6 RELEASED!

Thanks a lot
by JS-Support @Userware
Tue Nov 26, 2019 7:12 am
Forum: Technical Support
Topic: Window.Current.SizeChanged not working in Edge Chromium
Replies: 6
Views: 18302

Re: Window.Current.SizeChanged not working in Edge Chromium

Could you please check the option "Pause on caught exceptions" as shown on the following page: http://www.cshtml5.com/documentation/tips-for-debugging.aspx#javascript and then, when the exception is raised, move up the call stack until you arrive in the code of "CSHTML5.js". Ther...
by JS-Support @Userware
Tue Nov 26, 2019 2:13 am
Forum: Technical Support
Topic: Window.Current.SizeChanged not working in Edge Chromium
Replies: 6
Views: 18302

Re: Window.Current.SizeChanged not working in Edge Chromium

Hi, CSHTML5 uses the "onresize" event of the JS "window" class, as shown at line 145 of the "Window.cs" class: https://github.com/cshtml5/CSHTML5/blob/master/src/CSHTML5.Runtime/Windows.UI.Xaml/Window.cs Could you please test the following JSFiddle and report whether th...
by JS-Support @Userware
Tue Nov 26, 2019 2:07 am
Forum: Technical Support
Topic: Free-form input
Replies: 1
Views: 9353

Re: Free-form input

Hi, You can do that in may ways, but some manual coding is required. One way is to register the PointerPressed, PointerMove, and PointerReleased events and add segments to a Path control to draw. You can re-use some of the code from the "Drag and Drop" demo in the Showcase app, located at:...
by JS-Support @Userware
Tue Nov 26, 2019 2:03 am
Forum: Technical Support
Topic: Preserve browser orientation on mobile devices
Replies: 1
Views: 11711

Re: Preserve browser orientation on mobile devices

Hi,

Adding to the following line to the <header> section of the file "index.html" should do the job:

Code: Select all

<meta http-equiv="ScreenOrientation" content="autoRotate:disabled">


Regards
JS-Support
by JS-Support @Userware
Tue Nov 26, 2019 2:01 am
Forum: Technical Support
Topic: Hide address bar (on mobile devices)
Replies: 1
Views: 11508

Re: Hide address bar (on mobile devices)

Hi,

Yes, you can go Full Screen via the following code:

Code: Select all

Application.Current.Host.Content.IsFullScreen = true;


Regards
JS-Support
by JS-Support @Userware
Tue Nov 26, 2019 1:15 am
Forum: Technical Support
Topic: CSHTML5 Control as direct div content
Replies: 1
Views: 12202

Re: CSHTML5 Control as direct div content

Hi, Yes, this is possible. 1. First you need to have the native HTML element ready. To do so, you can put a <div> in the file index.html, or you can use the HtmlPresenter control, as documented at: http://www.cshtml5.com/links/how-to-use-the-htmlpresenter.aspx If you use the HtmlPresenter, you need ...
by JS-Support @Userware
Wed Nov 20, 2019 5:29 am
Forum: Pre-Releases, Downloads and Announcements
Topic: v2.0 Preview 0.6 RELEASED!
Replies: 14
Views: 74860

Re: v2.0 Preview 0.6 RELEASED!

Thanks. We are going to look into this. By the way, the replacement for the deprecated method "CSharpXamlForHtml5.DomManagement.GetDomElementFromControl" is "CSHTML5.Interop.GetDiv(control)". You can make changes to the CSHTML5 code base and reference it from your project. Feel f...
by JS-Support @Userware
Mon Oct 28, 2019 8:49 am
Forum: Technical Support
Topic: Microsoft.Practices.Prism (4.1)
Replies: 1
Views: 10745

Re: Microsoft.Practices.Prism (4.1)

Yes, the recommended approach is indeed to find the source code and copy/paste it into new projects of type "CSHTML5 Class Library" (or "(Migration Edition) Class Library" if you would like to use the Silverlight/WPF namespaces rather than the UWP ones).

Go to advanced search

 

 

cron