Exemplo n.º 1
0
        private static void Main(string[] args)
        {
            if (args?.Length < 1)
            {
                ConsoleUtils.ShowHelp();
                return;
            }

            NativeImports.ShowWindow(Process.GetCurrentProcess().MainWindowHandle, NativeImports.SW_HIDE);

            if (args.Length > 2 && string.Equals(args[1], "-t", StringComparison.OrdinalIgnoreCase))   // title provided
            {
                TrayTitle = args[2];
            }

            string fullArguments = ConsoleUtils.GetFullArguments(args);
            string subArguments  = ConsoleUtils.GetSubArguments(args);

            string filePath         = args[0];
            string externalFileName = Path.GetFileNameWithoutExtension(filePath);
            string expectedName     = externalFileName + "-tray.exe";

            if (Path.GetFileName(ThisFile) != expectedName)
            {
                Install(expectedName, fullArguments);
                return;
            }

            RunTray(filePath, subArguments);
        }
Exemplo n.º 2
0
        private static void RunTray(string filePath, string subArguments)
        {
            Icon              = Icon.ExtractAssociatedIcon(filePath);
            Process           = new Process();
            Process.StartInfo = new ProcessStartInfo(filePath, subArguments)
            {
                WindowStyle      = ProcessWindowStyle.Minimized,
                WorkingDirectory = Path.GetDirectoryName(filePath)
            };
            Process.EnableRaisingEvents = true;
            Process.Exited += (sender, args) => Application.Exit();
            Process.Start();

            WaitForWindow();
            MainWindowHandle = Process.MainWindowHandle;
            NativeImports.ShowWindow(MainWindowHandle, NativeImports.SW_HIDE);

            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new TaskTrayApplicationContext());
        }
Exemplo n.º 3
0
 private static bool Unblock(string fileName)
 {
     return(NativeImports.DeleteFile(fileName + ":Zone.Identifier"));
 }