Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is .NET Framework 4.5 and later are available on Embedded Compact 2013 and Windows 10 IoT core?

I have been creating applications on Windows CE with .NET Compact Framework 3.5 and as you might guess lots of features of .NET 4, 4.5 and later does not exist in compact (espacially XAML support).

Are those features available on Windows Embedded Compact 2013 and/or Windows 10 Iot Core?

Before down-voting consider that there are not enough resources on these topics on the internet. Best source of knowledge comes from experienced people.

like image 927
ozgur Avatar asked Oct 20 '22 04:10

ozgur


2 Answers

For Windows Embedded Compact 2013 it is basically the same situation than with older Win CE versions. But you get a slightly updated .Net Compact Framework.

It is actually possible to use XAML on WinCE, Microsoft calls it Silverlight in older WinCE versions: https://msdn.microsoft.com/en-us/library/ee502198.aspx The issue for you is that it is desinged to work with native code for performance reasons, if you like to use it with .Net CF you may want to have a look at: https://channel9.msdn.com/Events/TechEd/NorthAmerica/2010/WEM309

For Windows IoT Core you can use "Universal Apps" they use XAML and the new ".Net Core" this should be more feature rich than then .NET CF and its supported on all new Windows Systems http://blogs.msdn.com/b/dotnet/archive/2014/12/04/introducing-net-core.aspx

like image 66
Daniel Avatar answered Nov 02 '22 04:11

Daniel


Widnows 10 Iot Core supports "Universal Apps". These are made with XAML.

like image 33
vidalsasoon Avatar answered Nov 02 '22 06:11

vidalsasoon