integrativesoft / foton

Prototype for an electron alternative written in C# by Integrative Software LLC and contributors.
Apache License 2.0
9 stars 1 forks source link

For Linux #17

Open WGcode400 opened 2 weeks ago

WGcode400 commented 2 weeks ago

this may not be an issue but I didn't think it was a feature request either.

Just wondering what Linux you got it to run on? im trying to get it to run on a rpi 4 using .net 6 it builds and works on windows

WGcode400 commented 2 weeks ago

I got it to run on linux rpi 4 by changing my platform target from x64 to arm32

pablocar80 commented 2 weeks ago

years ago, yes it did run in linux, don't remember the framework version

pablocar80 commented 2 weeks ago

haven't tried in a long time

WGcode400 commented 2 weeks ago

is there a way to open the foton app in full screen?

im just trying to have it so that when i run the SampleApp it opens full screen or maximized

pablocar80 commented 2 weeks ago

the underlying objects used in windows and linux support that, so we would need to extend this interface to add a StartMode property (normal/maximized/minimized), and then implement it:

https://github.com/integrativesoft/foton/blob/fe068790a855ea09a2ba7019d1941e5ee89375b8/Foton.Common/Main/FotonOptions.cs#L12

pablocar80 commented 2 weeks ago

I also recommend checking out the Eto.Forms project itself