gtk-sharp-2.0 hide/show external applications(processes)
Posted
by ziuciek
on Stack Overflow
See other posts from Stack Overflow
or by ziuciek
Published on 2010-05-01T19:12:39Z
Indexed on
2010/05/01
19:17 UTC
Read the original article
Hit count: 144
Hi, maybe the topic isn't quite precise.. i want to write in c# (gtk#-2.0) an app which opens another app hidden and later shows that app. For now i know only how to open hidden app... in windows...:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Diagnostics;
namespace do_kasacji
{
class Program
{
static void Main(string[] args)
{
ProcessStartInfo info = new ProcessStartInfo();
info.WindowStyle = ProcessWindowStyle.Minimized;
info.FileName = "notepad";
using (Process pr = Process.Start(info))
{
pr.WaitForExit();
}
}
}
}
Anyone knows how to change it so hat it would run in linux?
© Stack Overflow or respective owner