Jump to content
Forumu Destekleyenlere Katılın ×
Paticik Forumları
2000 lerden beri faal olan, çok şukela bir paylaşım platformuyuz. Hoşgeldiniz.

Belirlediğim EXE'leri Saklamak C#


Pluton

Öne çıkan mesajlar

Meselam şöyle birşey kullandım ama yemedi.

string exePath = @"C:UsersxxxDesktopxxxxxx.exe";
ProcessStartInfo startInfo = new System.Diagnostics.ProcessStartInfo(exePath);
startInfo.CreateNoWindow = true;
startInfo.RedirectStandardOutput = true;
startInfo.UseShellExecute = false;
startInfo.WindowStyle = ProcessWindowStyle.Hidden;
Process.Start(startInfo);
Link to comment
Sosyal ağlarda paylaş

http://www.codeproject.com/Articles/2286/Window-Hiding-with-C

Edit: Özetle, minimize etmek istediğin process'lerin window'larına Win32 API üzerinden "hacı sen aşşa yat" diye mesaj göndercen SendMessage ile.

Edit2: Verdiğim örnek SendMessage ile yapmamış da şuna da bakabilirsin http://stackoverflow.com/questions/2580821/minimise-any-program-to-system-tray
Link to comment
Sosyal ağlarda paylaş

×
×
  • Yeni Oluştur...