Search found 147 matches

Go to advanced search

by TaterJuice
Thu Jul 20, 2017 7:23 am
Forum: Pre-Releases, Downloads and Announcements
Topic: Beta 11.13 of C#/XAML for HTML5 released
Replies: 6
Views: 10752

Re: New Beta 11.13 released! [Download]

This build seems to have broken something. Built with 11.12, my program works as expected. Now with this build, my collection bindings aren't updating as expected in the Simulator, and I get a new error in the JS output "TypeError: Cannot read property 'length' of undefined" I have no idea...
by TaterJuice
Fri Jul 14, 2017 8:28 am
Forum: Bug Reports
Topic: The external method 'System.String ToString(System.String)' of type 'System.DateTime' has not been implemented.
Replies: 2
Views: 4908

The external method 'System.String ToString(System.String)' of type 'System.DateTime' has not been implemented.

The error does not occur in the simulator, only in the JS output.
The culprit of the error is:

Code: Select all

string curDate = DateTime.Now.ToString("MM/dd/yyyy")
by TaterJuice
Fri Jun 30, 2017 8:36 pm
Forum: Bug Reports
Topic: ComboBox.Template Ignored
Replies: 2
Views: 5054

ComboBox.Template Ignored

ComboBox Template doesn't appear to work at all. Even replacing it with a simple Textbox appears to do nothing. <ComboBox> <ComboBox.Template> <ControlTemplate TargetType="ComboBox"> <TextBlock Text="Hello" /> </ControlTemplate> </ComboBox.Template> </ComboBox> Here's what I'm ul...
by TaterJuice
Fri Jun 30, 2017 4:27 pm
Forum: Technical Support
Topic: Popup help?
Replies: 0
Views: 4476

Popup help?

Can you please provide a code sample of the Popup control? I can't seem to get it to work.
Also, on Beta 11.11, the compiler tells me that Popup does not have a property named "PlacementTarget" even though Intellisense sees it.
by TaterJuice
Sat Jun 24, 2017 12:32 pm
Forum: Bug Reports
Topic: ListBox.SelectedItemBackground broken with ItemsPanelTemplate
Replies: 2
Views: 5423

Re: ListBox.SelectedItemBackground broken with ItemsPanelTemplate

Thanks, is there a timeline or eta on a fix?
by TaterJuice
Sat Jun 24, 2017 12:30 pm
Forum: Pre-Releases, Downloads and Announcements
Topic: Beta 11.11 of C#/XAML for HTML5 released (Printing)
Replies: 1
Views: 4961

Re: New Beta 11.11 released! [Download] (Printing!)

Thank you. Several well appreciated bugfixes and features.
by TaterJuice
Wed Jun 14, 2017 5:41 am
Forum: Technical Support
Topic: FontFamily embedded Resource - FontFamily not in XAML Editor
Replies: 0
Views: 4633

FontFamily embedded Resource - FontFamily not in XAML Editor

How do I use a TrueType (.ttf) or OpenType (.otf) font file with CSHTML5?

It looks like I should be able to just apply the FontFamily xaml Tag as a Resource according to this article, but FontFamily does not appear in the XAML editor\Intellisense for me.
by TaterJuice
Thu Jun 08, 2017 9:47 am
Forum: Bug Reports
Topic: ListBox.SelectedItemBackground broken with ItemsPanelTemplate
Replies: 2
Views: 5423

ListBox.SelectedItemBackground broken with ItemsPanelTemplate

ListBox.SelectedItemBackground working: <ListBox SelectedItemBackground="Blue"> <ListBox.ItemTemplate> <DataTemplate> <TextBlock Text="{Binding .}" /> </DataTemplate> </ListBox.ItemTemplate> </ListBox> ListBox.SelectedItemBackground not working: <ListBox SelectedItemBackground=&...
by TaterJuice
Wed May 31, 2017 6:33 am
Forum: Pre-Releases, Downloads and Announcements
Topic: Beta 11.8 of C#/XAML for HTML5 released
Replies: 3
Views: 8295

Re: New Beta 11.8 released! [Download]

Yay Common Styles - Thank you so much!
by TaterJuice
Sat May 06, 2017 10:01 am
Forum: Pre-Releases, Downloads and Announcements
Topic: Beta 11.6 of C#/XAML for HTML5 released
Replies: 6
Views: 11152

Re: New Beta 11.6 released! [Download]

@zemorango, @Bahram & @JS-Support My 2 cents: With XAML support still at 75% (or less) completeness, I don't think the Migration Wizard having 3rd party support (Telerik and Kendo UI) should be a high priority when I still have to roll my own ProgressBar control, when the designer still can't vi...
by TaterJuice
Tue May 02, 2017 6:19 am
Forum: Technical Support
Topic: [Solved] Button Hover effect
Replies: 3
Views: 5710

Re: Button Hover effect

Wonderful, thank you!
by TaterJuice
Mon May 01, 2017 7:48 am
Forum: Technical Support
Topic: [Solved] Button Hover effect
Replies: 3
Views: 5710

Re: Button Hover effect

I have resolved my issue by subclassing the Button Control, and subscribing to the PointerEntered\PointerExited events.
by TaterJuice
Mon May 01, 2017 3:11 am
Forum: Technical Support
Topic: Combobox non-selectable empty space\intermitently auto-selects top value on Loaded event
Replies: 0
Views: 4439

Combobox non-selectable empty space\intermitently auto-selects top value on Loaded event

The combobox loads with an empty space at the top of the items list, yet this space can't be selected, and upon loading, SOMETIMES, but not all the time, the combobox automatically selects the first real value in the list, skipping over the empty item (and failing to trigger a property changed notif...
by TaterJuice
Sun Apr 30, 2017 3:15 pm
Forum: Technical Support
Topic: [Solved] Button Hover effect
Replies: 3
Views: 5710

[Solved] Button Hover effect

How is the default mouseover effect achieved in CsHTML5? I am trying to reproduce in a custom style, but without Style.Triggers (IsMouseOver), I can't figure out how to. Any help would be appreciated. By default, any button changes its background color to a slightly darker tint whenever a mouse poin...
by TaterJuice
Tue Mar 28, 2017 11:02 pm
Forum: Bug Reports
Topic: [SOLVED] Grid.Background does not support LinearGradientBrush
Replies: 3
Views: 5775

[SOLVED] Grid.Background does not support LinearGradientBrush

LinearGradientBrush does not work in a Grid.Background property, as shown here: <Grid x:Name="LayoutRoot"> <Grid.Background> <LinearGradientBrush StartPoint="0,0" EndPoint="1,1"> <GradientStop Color="Red" Offset="0.0" /> <GradientStop Color="Whi...
by TaterJuice
Tue Mar 28, 2017 1:32 pm
Forum: General Discussion and Other
Topic: How To use with VB.Net?
Replies: 3
Views: 6591

Re: How To use with VB.Net?

You could write your code in VB.NET and then use http://converter.telerik.com/ to convert to C#
by TaterJuice
Tue Mar 28, 2017 1:25 pm
Forum: General Discussion and Other
Topic: (Poll) Please vote for the feature(s) you like the most in the Beta 11
Replies: 8
Views: 13478

Re: (Poll) Please vote for the feature(s) you like the most in the Beta 11

I'd like to add a few requests 1) Style.Triggers for XAML, including stuff like <Setter Property="IsMouseOver" Value="True">...</Setter> 2) Grid.ColumnSpan and Grid.RowSpan for XAML Grid Control 3) MethodBase.GetMethodFromHandle (PLEASE! This would add Strongly-Named PropertyChan...

Go to advanced search

 

 

cron