Search found 75 matches

Go to advanced search

by CyborgDE
Sun Oct 25, 2015 12:59 pm
Forum: Bug Reports
Topic: ListBox exeption [SOLVED]
Replies: 2
Views: 5402

ListBox exeption [SOLVED]

Hello, sometimes ... I have a ListBox and I change the ItnesSource and set the Visiblity on / off and then, sometimes, i got a exception in : ListBox_listBoxItem_Click in Windows and JavaScript and under JavaScript I see that "this._itemsToDataTemplatedRenderedElement" is undefined ... Und...
by CyborgDE
Sun Oct 25, 2015 12:24 pm
Forum: Bug Reports
Topic: Dictionary.Key.ToArray changes the direction
Replies: 1
Views: 3891

Re: Dictionary.Key.ToArray changes the direction

Quick workaround in JSIL.Core.js JSIL.ObjectHashCode = function (obj, virtualCall, thisType) { var type = typeof obj; //if (type === "object" || type == "string") { //if (obj.GetHashCode && virtualCall) if (type === "object") { if (obj.GetHashCode) return (obj.G...
by CyborgDE
Sun Oct 25, 2015 9:30 am
Forum: Bug Reports
Topic: Dictionary.Key.ToArray changes the direction
Replies: 1
Views: 3891

Dictionary.Key.ToArray changes the direction

Hello, the function ToArray changes the direction under javascript (since 5.1) : Dictionary<string, object> test = new Dictionary<string, object>(); test.Add("sender", "sender"); test.Add("e", "e"); var array = test.Keys.ToArray(); Result under windows : sende...
by CyborgDE
Sun Oct 25, 2015 7:06 am
Forum: Bug Reports
Topic: JSIL.Core Array.new
Replies: 5
Views: 8411

Re: JSIL.Core Array.new

Hello,

not solved in Beta 5.1 !

Regards,
Uwe
by CyborgDE
Sun Oct 25, 2015 4:39 am
Forum: Bug Reports
Topic: Own DLL's - Resources not copied
Replies: 4
Views: 6860

Re: Own DLL's

The copy of the resources of a dll ist not solved in the new version.
And the resource copierer does not copy linked resources ...

Regards, Uwe
by CyborgDE
Fri Oct 23, 2015 5:38 pm
Forum: Technical Support
Topic: Linq.GroupBy [CLOSED]
Replies: 2
Views: 4624

Re: Linq.GroupBy

Thank you for the Info.

Regards, Uwe
by CyborgDE
Sun Oct 18, 2015 4:35 am
Forum: Technical Support
Topic: Set the width of a TextBox in a canvas [COULD NOT REPRODUCE]
Replies: 1
Views: 3688

Set the width of a TextBox in a canvas [COULD NOT REPRODUCE]

Hello,

I cannot test it in detail, but I was not able to set the width of a TextBox sitting in a canvas ...

Regards, Uwe
by CyborgDE
Sun Oct 18, 2015 1:40 am
Forum: Bug Reports
Topic: StackPanel change orientation at runtime
Replies: 2
Views: 4662

Re: StackPanel

This does not work, the binding will be removed ...

Regards, Uwe
by CyborgDE
Sat Oct 17, 2015 6:38 pm
Forum: Technical Support
Topic: FlowDirection
Replies: 1
Views: 3589

FlowDirection

Hello,

when do you plan to implement the FlowDirection (RightToLeft) ?

Regards, Uwe
by CyborgDE
Sat Oct 17, 2015 8:21 am
Forum: Bug Reports
Topic: DownloadStringCompletedEventArgs has no "Error.Message" property
Replies: 7
Views: 10726

Re: Windows Phone

I think, this is not a windows phone problem.

The DOMException did not have the function "get_Message".

Regards, Uwe
by CyborgDE
Sat Oct 17, 2015 7:28 am
Forum: Bug Reports
Topic: German umlaut
Replies: 4
Views: 8066

Re: German umlaut

This little piece of code solves the problem, for now. But why ? _Value = xmlTextReader.ReadElementString(); if (CSharpXamlForHtml5.Environment.IsRunningInJavaScript) { byte[] vals = new byte[_Value.Length]; for (int i = 0; i < _Value.Length; i++) { char ch = _Value[i]; if (ch < 128) { vals[i] = (by...
by CyborgDE
Sat Oct 17, 2015 12:30 am
Forum: Bug Reports
Topic: German umlaut
Replies: 4
Views: 8066

Re: German umlaut

Help !!!

The XmlRead can not deal with UTF-8 data !!!

The "ü" ist "\xfc" ...

Regards,
Uwe
by CyborgDE
Wed Oct 14, 2015 9:19 am
Forum: Technical Support
Topic: ComboBox
Replies: 0
Views: 4481

ComboBox

Hello,

the ComboBox does not allow ItemTemplate, what can I do ???

Regards, Uwe
by CyborgDE
Wed Oct 14, 2015 12:27 am
Forum: Bug Reports
Topic: Change Style on RunTime [SOLVED]
Replies: 1
Views: 4224

Change Style on RunTime [SOLVED]

Hello,

changing the style on runtime does not work on my side.
I must set the property manually, this works:

Code: Select all

fwObj.SetValue(setter.Property, setter.Value);


Regards, Uwe
by CyborgDE
Mon Oct 12, 2015 6:19 am
Forum: Bug Reports
Topic: StackPanel change orientation at runtime
Replies: 2
Views: 4662

Re: StackPanel

I have found a workaround:

I use a Grid with row and columns, before I set the Gid.Row and Grid.Column I remove the object from the childen of the grid and after that, I add the object to the children of the grid.

Maybe a StackPanel should also work ...

This works fine ...

Regards, Uwe
by CyborgDE
Mon Oct 12, 2015 4:23 am
Forum: Bug Reports
Topic: StackPanel change orientation at runtime
Replies: 2
Views: 4662

StackPanel change orientation at runtime

Hello,

can the StackPanel change the Orienation during runtime ?
Ist there a workaround ?

Regards, Uwe
by CyborgDE
Fri Oct 09, 2015 1:17 pm
Forum: Technical Support
Topic: GroupBox [Solved]
Replies: 1
Views: 3861

Re: GroupBox

Found on other place, the GroupBox works ! public class GroupBox : Border { private StackPanel MainGrid = null; private TextBlock HeaderTB = null; private ContentControl ContentCC = null; public GroupBox() { MainGrid = new StackPanel(); HeaderTB = new TextBlock(); HeaderTB.Text = "Header";...
by CyborgDE
Fri Oct 09, 2015 5:36 am
Forum: Technical Support
Topic: GroupBox [Solved]
Replies: 1
Views: 3861

GroupBox [Solved]

Hello, why does this GroupBox not work under windows, javascript is Ok, any ideas ? using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Markup; using Windows.UI.Xaml; using Windows.UI.Xaml.Controls; using Windows.UI...
by CyborgDE
Fri Oct 09, 2015 2:12 am
Forum: Bug Reports
Topic: [SOLVED] WrapPanel
Replies: 2
Views: 5206

[SOLVED] WrapPanel

Hello, my WrapPanel does not wrap ? <WrapPanel xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" Grid.Column="0" Grid.Row="1" Margin="28,4,8,8"> <Label xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" Content="Be...
by CyborgDE
Tue Oct 06, 2015 6:12 am
Forum: Technical Support
Topic: Linq.GroupBy [CLOSED]
Replies: 2
Views: 4624

Linq.GroupBy [CLOSED]

Hello,

is the Linq.GroupBy implemented ?

Regards, Uwe

Go to advanced search

 

 

cron