Search found 75 matches

Go to advanced search

by CyborgDE
Tue Oct 06, 2015 2:05 am
Forum: Bug Reports
Topic: Enum cast
Replies: 0
Views: 4781

Enum cast

Hello, works well under windows but not under javascript (beta 5) : public override ValueType ConvertFromString( string input, Type toType ) { if (toType.IsEnum) #if CSHTML5 { var vals = Enum.GetValues(toType); int i = 0; foreach (var val in vals) { if (val.ToString() == input) { return val as Value...
by CyborgDE
Mon Oct 05, 2015 10:21 am
Forum: Bug Reports
Topic: SetFocus
Replies: 0
Views: 4657

SetFocus

Hello,

TextBox.SetFocus() does work under javascript but does not work under windows ...

Regards, Uwe
by CyborgDE
Mon Oct 05, 2015 12:23 am
Forum: Bug Reports
Topic: JSIL.Core Array.new
Replies: 5
Views: 8444

Re: JSIL.Core Array.new

Hello, not solved in Beta 5 ! It comes from : $.Method({Static:false, Public:true }, "GetGenericArguments", (new JSIL.MethodSignature($jsilcore.TypeRef("System.Array", [$.Type]), [], [])), function GetGenericArguments () { return JSIL.Array.New(typeReference.get(), this.__Generic...
by CyborgDE
Mon Oct 05, 2015 12:15 am
Forum: Bug Reports
Topic: ConsoleKey missing [SOLVED]
Replies: 1
Views: 3685

Re: ConsoleKey

Hello,

solved in Beta 5 with VirtualKey.

Thank you.

Regards, Uwe
by CyborgDE
Sun Oct 04, 2015 10:41 pm
Forum: Bug Reports
Topic: Own DLL's - Resources not copied
Replies: 4
Views: 6885

Re: Own DLL's

Hello,

the resources of a dll are not copied to the output directory or deleted from there.

Regards, Uwe
by CyborgDE
Sat Oct 03, 2015 10:58 am
Forum: Bug Reports
Topic: Own DLL's - Resources not copied
Replies: 4
Views: 6885

Re: Own DLL's

Hello, please help, a dll in the same solution : Fehler 37 C#/XAML for HTML5: Wrapper failed: System.Exception: Error: the project contains no entry point. The project must contain a class that inherits from Windows.UI.Xaml.Application. bei m.a.c() bei m.a.c() bei m.a(String A_0, String& A_1, St...
by CyborgDE
Sat Oct 03, 2015 9:56 am
Forum: Bug Reports
Topic: ConsoleKey missing [SOLVED]
Replies: 1
Views: 3685

ConsoleKey missing [SOLVED]

Hello,

is the ConsoleKey implemented ?
I got a error message under javascript (beta 4)...

Regards,
Uwe
by CyborgDE
Fri Oct 02, 2015 11:10 pm
Forum: Technical Support
Topic: <Image.../> fails [SOLVED]
Replies: 2
Views: 4403

Re: <Image.../> fails

Hello, you must use as source either "ms-appx:/" or "http:/". Try : <Image Stretch="UniformToFill" Source="ms-appx:/Data/Icons/Background.png"/> an set the image properties to build:content and "not copy to output" ... Regards, CyborgDE
by CyborgDE
Fri Oct 02, 2015 12:41 am
Forum: Bug Reports
Topic: DownloadStringCompletedEventArgs has no "Error.Message" property
Replies: 7
Views: 10761

Re: Windows Phone

Hello,

current version on my phone is 8.1 Update.
The error occurs only at the phone, at the moment I can not test it in the simulation, I have deactivated my hypervisor due VirtualBox linux tests.

Best regards,
CyborgDE
by CyborgDE
Tue Sep 22, 2015 11:45 pm
Forum: General Discussion and Other
Topic: Some good news !
Replies: 2
Views: 6524

Some good news !

Hello,

on month hard work but my basic demo (with about 28000 lines of code in my library) is running on IE, Firefox and Windows Phone !!!

Let's make it nice (maybe with WPF.polymer ?) and start the application development ...

Thank you !

Regards, Uwe
by CyborgDE
Tue Sep 22, 2015 2:41 am
Forum: Bug Reports
Topic: DownloadStringCompletedEventArgs has no "Error.Message" property
Replies: 7
Views: 10761

DownloadStringCompletedEventArgs has no "Error.Message" property

Hello,

my Demo is running on Windows and JavaScript.
On the Windows Phone I got a exception but I can not get the exception message ...
Object doesn't support property or method 'get_Message'


Regards, Uwe
by CyborgDE
Sun Sep 20, 2015 4:06 am
Forum: Bug Reports
Topic: override Property
Replies: 0
Views: 4756

override Property

Hello, in class_1 : public IEnumerable ItemsSource { in class_2 inherited from class_1: public class class_2 : class_1 { public new IEnumerable ItemsSource { throws in javascript : Multiple matches found var getSingleFiltered = function (self, name, flags, type) { var members = JSIL.GetMembersIntern...
by CyborgDE
Fri Sep 18, 2015 3:57 am
Forum: Technical Support
Topic: How to add a DataGridColumn in code behind [SOLVED]
Replies: 1
Views: 4534

Re: DataGridColumn

I have found the answer :

Code: Select all

DataGridBoundColumn column = new DataGridTextColumn();
column.Header = "Name";
column.SetBinding(DataGridBoundColumn.BindingProperty, new Binding("Name"));
Columns.Add(column);


Regards, Uwe
by CyborgDE
Thu Sep 17, 2015 10:28 pm
Forum: Technical Support
Topic: [Feature Suggestion] Fewer private members
Replies: 0
Views: 5529

[Feature Suggestion] Fewer private members

Don't make so many members private, this makes it hard to find a workaround ...

Thank you !

Regards, Uwe
by CyborgDE
Thu Sep 17, 2015 1:08 pm
Forum: Technical Support
Topic: How to add a DataGridColumn in code behind [SOLVED]
Replies: 1
Views: 4534

How to add a DataGridColumn in code behind [SOLVED]

Hello,

how can I add a DataGridTextColumn in code behind ???

This does not work ...

Code: Select all

currentGrid.Columns.Add(new DataGridTextColumn() { Header = "Name", Binding = new Binding("Name") });

Regards, Uwe
by CyborgDE
Thu Sep 17, 2015 8:01 am
Forum: Bug Reports
Topic: Own DLL's - Resources not copied
Replies: 4
Views: 6885

Own DLL's - Resources not copied

Hello,

is it possible, to use dll's in the project ?

Regards, Uwe
by CyborgDE
Thu Sep 17, 2015 7:34 am
Forum: Technical Support
Topic: [Feature Suggestion] Move RegisterName to FrameworkElement
Replies: 0
Views: 5432

[Feature Suggestion] Move RegisterName to FrameworkElement

Hello,

I'm not able to create a new controls based on a button, if controls of the new control uses a Name property.

The functions FindName, RegisterName and UnregisterName from the UserControl should be moved to the FrameworkElement ...

Regards, Uwe
by CyborgDE
Wed Sep 16, 2015 11:18 pm
Forum: Bug Reports
Topic: Grid
Replies: 2
Views: 5154

Re: Grid

Hello,

I have found a workaround, not fine, but it works.

Next issue :
Put the DataGrid in a Row with the Height="*", so the header would be expanded, this looks not good ...

-----------------
| Name
|
|
|
|
------------------
| Uwe
------------------

Regards, Uwe
by CyborgDE
Wed Sep 16, 2015 11:44 am
Forum: Bug Reports
Topic: Button Click does not work if Button not in Canvas [SOLVED]
Replies: 9
Views: 12064

Re: Button Click does not work if Button not in Canvas

Hello,

thank you, this works.

When do you plan the relase of the Beta 5 ?

Regards, Uwe
by CyborgDE
Wed Sep 16, 2015 11:39 am
Forum: Bug Reports
Topic: German umlaut
Replies: 4
Views: 8099

Re: German umlaut

Hello,

I have a XmlReader

Code: Select all

var memoryStream = new MemoryStream(Encoding.UTF8.GetBytes(script));
var xmlReader = XmlReader.Create(memoryStream);

an the command

Code: Select all

xaml = xmlTextReader.ReadElementString();

produce the effect under java, windows is OK !?

Any Idea ?

Regards, Uwe

Go to advanced search

 

 

cron