Search found 10 matches

Go to advanced search

by rthomas
Mon Mar 02, 2020 12:38 am
Forum: Bug Reports
Topic: WPF Designer
Replies: 15
Views: 23565

Re: WPF Designer

Hi,

The trick is to use conditionnal using

#if CSHTML5
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Media;
using System.Windows.Browser;
#else
using System.Windows.Threading;
using System.Windows.Controls;
using System.Windows;
#endif

and it works great.

Remi
by rthomas
Tue Jul 16, 2019 9:26 pm
Forum: General Discussion and Other
Topic: Material Design
Replies: 2
Views: 8986

Material Design

by rthomas
Fri May 24, 2019 8:59 am
Forum: Bug Reports
Topic: WPF Designer
Replies: 15
Views: 23565

Re: WPF Designer

Hi,

As a workaround you can create a real XAML project and reference (Add exsting -> as Link) the CSHTML5 files in it.

Remi
by rthomas
Fri May 24, 2019 5:24 am
Forum: Technical Support
Topic: Send email / file upload
Replies: 10
Views: 12523

Re: Send email / file upload

Hi Scott, You can't upload a file like this. You need a server that accept POST At minimum you need WebDav or FTP server but no sure about FTP upload using XMLHttpRequest It was planning to do a demo on how to write this kind of server using asp.net core 2.2 and how to consume web API from CSHTML5 p...
by rthomas
Tue May 21, 2019 10:42 pm
Forum: Technical Support
Topic: Send email / file upload
Replies: 10
Views: 12523

Re: Send email / file upload

Hi Scott

Did you try to trace webrequest to see exactly what is going on?
If you use CSHTML5 v2 you can directly using browser F12/Network view
For CSHTML5 v1 you should use fiddler

Remi
by rthomas
Tue May 07, 2019 9:21 am
Forum: Extensions and Plugins for CSHTML5
Topic: FileOpenDialog Extension for CSHTML5
Replies: 12
Views: 39048

Re: FileOpenDialog Extension for CSHTML5

Hi, Another fork with XAML / Web compatible code. This mean you can use it to create exe or html version and it behaves the same. XAML didn't change. Remi using System; using System.Collections.Generic; #if !CSHTML5 using System.Windows; using System.Windows.Controls; #else using Windows.UI.Xaml; us...
by rthomas
Tue Apr 30, 2019 1:21 am
Forum: Bug Reports
Topic: Focus not same behavior as WPF
Replies: 1
Views: 7981

Focus not same behavior as WPF

Hi, With CSHTML5 v2 (Bridge version) In WPF the user can press tab to go to next input field. In HTML the label are getting the focus. You can see focussed element in debug console document.activeElement Sincerely, Remi <Grid Grid.Row="1" Width="250" Height="160" Backgr...
by rthomas
Fri Mar 29, 2019 12:15 am
Forum: General Discussion and Other
Topic: Dev unification
Replies: 1
Views: 7963

Dev unification

Hi, Is the big unification on is way? https://hacks.mozilla.org/2019/03/standardizing-wasi-a-webassembly-system-interface/ If WebAssembly can run on agnostic OS this mean with our favorite dev environnement you can target Web browser, iOS, Android, computer, cloud But what could be the best UI desig...
by rthomas
Tue Feb 19, 2019 7:52 am
Forum: Technical Support
Topic: multi language
Replies: 1
Views: 3746

multi language

Hi,

What is the prefered way to add multi language (french, english, ...) support to a CSHTML5 app?

Sincerely,
Remi

Go to advanced search