Search found 1142 matches

Go to advanced search

by JS-Support @Userware
Thu Mar 17, 2016 10:19 am
Forum: Technical Support
Topic: Can I mix HTML markup with generated elements?
Replies: 5
Views: 8214

Re: Can I mix HTML markup with generated elements?

Dear rkmore, Yes, mixing HTML markup with the generated elements is very easy to do. EDIT (2017): There is now an even simpler way, which is to use the "HtmlPresenter" class, like this: <HtmlPresenter Html="&lt;canvas id=&quot;demo_canvas&quot; Style=&quot;width:100%;h...
by JS-Support @Userware
Wed Mar 16, 2016 10:34 am
Forum: Technical Support
Topic: Marked item in a ListBox
Replies: 1
Views: 3828

Re: Marked item in a ListBox

Hi hamej, Thanks for your message. You can easily change the color of the ListBox selected item by changing the value of the "SelectedItemBackgroundBrush" property: You can set it either in XAML or in C#. Here is an example in C#: ListBox1.SelectedItemBackgroundBrush = new SolidColorBrush(...
by JS-Support @Userware
Tue Mar 15, 2016 10:39 am
Forum: Bug Reports
Topic: Error in WCF reference call when run in browser
Replies: 11
Views: 14402

Re: Error in WCF reference call when run in browser

Thanks. We are going to look into it as soon as possible. We plan to greatly improve WCF support in the coming months.

Regards,
JS-Support
by JS-Support @Userware
Tue Mar 15, 2016 10:38 am
Forum: General Discussion and Other
Topic: Third Party Controls and RIA Services support
Replies: 5
Views: 11804

Re: Third Party Controls and RIA Services support

Hi, As far as the Telerik controls are concerned, I see 2 possibilities for the future: 1) Either Telerik compiles its proprietary C#/XAML source code with CSHTML5 (with or without using JS in the internal implementation for their controls) 2) Or the community creates a library of controls that prov...
by JS-Support @Userware
Tue Mar 15, 2016 10:23 am
Forum: Technical Support
Topic: How do I get the screen size [SOLVED]
Replies: 1
Views: 4008

Re: How do I get the screen size

Hi, Sure. The equivalent of "HtmlPage.Window.Eval" is the following: (requires v1.0 Beta 7.2 or newer) ScreenWidth = Convert.ToDouble(CSHTML5.Interop.ExecuteJavaScript("screen.width")); ScreenHeight = Convert.ToDouble(CSHTML5.Interop.ExecuteJavaScript("screen.height"));...
by JS-Support @Userware
Mon Mar 14, 2016 3:10 am
Forum: Bug Reports
Topic: Border with cornerradius not shown [CANNOT REPRODUCE]
Replies: 1
Views: 4151

Re: Border with cornerradius not shown

Hi, Thanks. I couldn't reproduce the issue with the following code: <Page x:Class="Application2.MainPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="using:Application2" ...
by JS-Support @Userware
Mon Mar 14, 2016 3:03 am
Forum: Bug Reports
Topic: Unknown error [CANNOT REPRODUCE]
Replies: 1
Views: 3997

Re: Unknown error

Hi,

Thanks for reporting this issue. If you could manage to isolate the lines of code that cause the issue, or provide us with some sample code to reproduce the issue, it would greatly help.

Thanks.
Regards,
JS-Support
by JS-Support @Userware
Mon Mar 14, 2016 3:00 am
Forum: Bug Reports
Topic: Very strange bug in Line [SOLVED]
Replies: 4
Views: 7926

Re: Very strange bug in Line

Thanks for your post. We are going to investigate this issue. I will keep you updated as soon as possible.

Regards,
JS-Support
by JS-Support @Userware
Mon Mar 14, 2016 2:59 am
Forum: Bug Reports
Topic: [SOLVED] Unable to clear ListBox
Replies: 4
Views: 7278

Re: Unable to clear ListBox

Thanks for reporting this issue.

We have been able to reproduce it.

We are going to fix it as soon as possible. I will keep you updated as soon as it is fixed.

Regards,
JS-Support
by JS-Support @Userware
Mon Mar 14, 2016 2:54 am
Forum: Bug Reports
Topic: [SOLVED] Dropshadow not shown in browser
Replies: 2
Views: 5270

Re: Dropshadow not shown in browser

Thanks for reporting this issue.

We have been able to reproduce it. It appears to happen only with IE and Edge (it works fine in Chrome, Firefox, Safari).

We expect to fix it by Q3 2016.

Regards,
JS-Support
by JS-Support @Userware
Mon Mar 07, 2016 10:24 am
Forum: Pre-Releases, Downloads and Announcements
Topic: Beta 7.2 of C#/XAML for HTML5 released
Replies: 4
Views: 9835

Re: NEW! Beta 7.2 of C#/XAML for HTML5 released! [Download]

Thanks a lot labbr01! 1: Not yet. This is expected for Q2 2016. We are also working on an option that gives you the ability to remove the phone appearance altogether, in order to simulate a resizable web browser window. 2: Beta 7.3, which is expected in the coming weeks, will let you use relative re...
by JS-Support @Userware
Sun Mar 06, 2016 4:39 am
Forum: Bug Reports
Topic: Listbox has no scrollbar
Replies: 3
Views: 6532

Re: Listbox has no scrollbar

Thanks hamej. We are still working on it. We hope to have it implemented in v1.0.

For the moment you need to use the ScrollViewer workaround described above. Thanks for your patience.

Regards,
JS-Support
by JS-Support @Userware
Fri Mar 04, 2016 10:36 am
Forum: Extensions and Plugins for CSHTML5
Topic: FileOpenDialog Extension for CSHTML5
Replies: 12
Views: 39006

FileOpenDialog Extension for CSHTML5

Dear CSHTML5 users, I am pleased to inform you of the release of the FileOpenDialog Extension for CSHTML5. It adds the ability to let the user pick a file using the "Open File..." dialog of the browser. It can also be used for example in conjunction with the ZipFile Extension to load a ZIP...
by JS-Support @Userware
Fri Mar 04, 2016 10:07 am
Forum: Extensions and Plugins for CSHTML5
Topic: ZipFile Extension for CSHTML5 (Ionic.Zip DotNetZip-like)
Replies: 1
Views: 25204

ZipFile Extension for CSHTML5 (Ionic.Zip DotNetZip-like)

Dear CSHTML5 users, I am pleased to inform you of the release of the ZipFile Extension for CSHTML5. It adds the ability to create ZIP files and to read ZIP files. It attempts to mimic the API of Ionic.Zip (DotNetZip) so as to make it easier to migrate existing C# projects to CSHTML5. You can use it ...
by JS-Support @Userware
Fri Mar 04, 2016 9:56 am
Forum: Extensions and Plugins for CSHTML5
Topic: FileSaver Extension for CSHTML5
Replies: 1
Views: 23275

FileSaver Extension for CSHTML5

Dear CSHTML5 users, I am pleased to inform you of the release of this extension for CSHTML5. It adds the ability to save files locally via the "Save As..." dialog of the browser . Please note that some browsers will directly save the files to the "Downloads" folder without asking...
by JS-Support @Userware
Thu Mar 03, 2016 11:16 pm
Forum: General Discussion and Other
Topic: OK. I have got to say it !!!
Replies: 1
Views: 6798

Re: OK. I have got to say it !!!

Thanks a lot! It's really great to hear that! Can't wait to see some apps or extensions you create with CSHTML5! :-)

Regards,
JS-Support
by JS-Support @Userware
Thu Mar 03, 2016 10:38 am
Forum: General Discussion and Other
Topic: Rich text
Replies: 1
Views: 6355

Re: Rich text

Hi,

Thanks for your message.

We are going to send you some sample code to do that asap.

Regards
JS-Support
by JS-Support @Userware
Thu Mar 03, 2016 10:36 am
Forum: General Discussion and Other
Topic: Third Party Controls and RIA Services support
Replies: 5
Views: 11804

Re: Third Party Controls and RIA Services support

Hi Thanks a lot for your message. 1) yes, support will come in the form of an open source project that is going to wrap the 3rd party JavaScript-based libraries into a thin C#/XAML-based wrapper to allow to consume them in C#/XAML in a CSHTML5 project. You can see this concept in action by looking a...
by JS-Support @Userware
Mon Feb 29, 2016 11:04 am
Forum: Technical Support
Topic: Symbol to conditionally compile code [SOLVED]
Replies: 2
Views: 4543

Re: Symbol to conditionally compile code

Hello RKM, Sure. You can use either the CSHTML5 symbol, or the CSharpXamlForHtml5 symbol. Both will work. Here is an example: #if CSHTML5 MessageBox.Show("This is a message in CSHTML5."); #else var x = new MessageDialog("This is a message in Universal Windows Platform."); x.ShowA...

Go to advanced search

 

 

cron