Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

How to create a C# interface for two virtual machines?

Programming languages, Coding, Executables, Package Creation, and Scripting.
Post Reply
Message
Author
Aideux
Posts: 1
Joined: 2018-01-21 20:06

How to create a C# interface for two virtual machines?

#1 Post by Aideux »

I am working on a project that has two Debian virtual machines communicating with each other, and I would like to make an interface using C#'s form creator.

The issue is, despite my research, I still have not found any reliable sources to help me accomplish this.

My goals are currently:

1) to be able to start and stop the machines using only a button press,
2) to be able to run predetermined terminal scripts with a button press. Are there any sources, research, or help anyone can provide me? I would really appreciate it!

Additionally, if there is perhaps a better language/software to accomplish this more efficiently, I would love to know more about it. Thanks so much!

Bean6754
Posts: 2
Joined: 2017-03-03 10:33

Re: How to create a C# interface for two virtual machines?

#2 Post by Bean6754 »

You can use Mono for Linux to create C# dotnet GUIs on Linux.

It uses System.Windows.Forms where controls are drawn with System.Drawing.

For more information: http://www.mono-project.com/docs/gui/winforms/

Post Reply