C#写的winform的编辑.exe,在资源管理器右键打开txt时,第一次可以打开,再打开无法读参数呀。。
C#写的文本工具.exe,已经加入系统右键,在文本文件上右右键时,菜单中有文本工具.exe.
选择这个工具,可以打开当前选择的文本。
但再找一个文本,点右键,并用文本工具打开时,没有反映。
using System;
using System.Collections.Generic;
using System.Windows.Forms;
//处理程序再次打开
using System.Runtime.InteropServices;
using System.Diagnostics;
using System.Reflection;namespace SiJieTxtWrite
{
    static class Program
    {
        /// <summary>
        /// 应用程序的主入口点。
        /// </summary>
                /// 处理程序再次打开
        /// <summary> 
        /// 该函数设置由不同线程产生的窗口的显示状态。 
        /// </summary> 
        /// <param name="hWnd">窗口句柄</param> 
        /// <param name="cmdShow">指定窗口如何显示。查看允许值列表,请查阅ShowWlndow函数的说明部分。</param> 
        /// <returns>如果函数原来可见,返回值为非零;如果函数原来被隐藏,返回值为零。</returns> 
        [DllImport("User32.dll")]
        private static extern bool ShowWindowAsync(IntPtr hWnd, int cmdShow);
        /// <summary> 
        /// 该函数将创建指定窗口的线程设置到前台,并且激活该窗口。键盘输入转向该窗口,并为用户改各种可视的记号。系统给创建前台窗口的线程分配的权限稍高于其他线程。 
        /// </summary> 
        /// <param name="hWnd">将被激活并被调入前台的窗口句柄。</param> 
        /// <returns>如果窗口设入了前台,返回值为非零;如果窗口未被设入前台,返回值为零。</returns> 
        [DllImport("User32.dll")]
        private static extern bool SetForegroundWindow(IntPtr hWnd);
        private const int WS_SHOWNORMAL = 1;
        //处理程序再次打开 end
        [STAThread]
        static void Main(string[] args)//string[] args
        {
            //foreach (var str in Environment.GetCommandLineArgs())
            //{
            //    MessageBox.Show("str=" + str);
            //}
            Application.SetCompatibleTextRenderingDefault(false);
            string command = Environment.CommandLine;//获取进程命令行参数
            //MessageBox.Show("pathC=" + command);
            string[] para = command.Split('\"');
            if (para.Length > 3)
            {
                string pathC = para[3];//获取打开的文件的路径
                MessageBox.Show("path000=" + pathC);
                //下面就可以自己编写代码使用这个pathC参数了
                //FileStream fs = new FileStream(pathC, FileMode.Open, FileAccess.Read);
            }
            Application.EnableVisualStyles();
            Process instance = RunningInstance(); 
            //Application.Run(f);
            //https://www.cnblogs.com/shelley/archive/2009/06/19/1506573.html
            //Application.Run(new mainform(args));
            if (instance == null)
            {
                Application.Run(new mainform(args));
            }
            else
            {
                HandleRunningInstance(instance);
            }
            //Application.Run(new mainform());
        }        /// <summary> 
        /// 获取正在运行的实例,没有运行的实例返回null; 
        /// </summary> 
        public static Process RunningInstance()
        {
            Process current = Process.GetCurrentProcess();
            Process[] processes = Process.GetProcessesByName(current.ProcessName);
            foreach (Process process in processes)
            {
                if (process.Id != current.Id)
                {
                    if (Assembly.GetExecutingAssembly().Location.Replace("/", "\\") == current.MainModule.FileName)
                    {
                        return process;
                    }
                }
            }
            return null;
        }
        /// <summary> 
        /// 显示已运行的程序。 
        /// </summary> 
        public static void HandleRunningInstance(Process instance)
        {
            ShowWindowAsync(instance.MainWindowHandle, WS_SHOWNORMAL); //显示,可以注释掉 SW_SHOWDEFAULT WS_SHOWNORMAL
            SetForegroundWindow(instance.MainWindowHandle);            //放到前端 
        }     }
}
==================================
以上代码args,这是在formload的时,可以得到的。再次点右键时 Environment.CommandLine可以获得文件路径。
但是在主窗口中没法获得文件路径 ,如果能获得,在哪个事件中,能把文件内容读出来并写入textbox中。
谢谢
不知道 高手看懂没?

解决方案 »

  1.   

            public string rightfile = "";
            public mainform(string[] args)//string fpath
            {
                //string openfile = fpath;
                if (args.Length != 0)
                {
                    MessageBox.Show("=" + args[0]);
                    //openright(args[0]);
                    rightfile = args[0];
                }
                //string command = Environment.CommandLine;//获取进程命令行参数
                ////MessageBox.Show("pathC=" + command);
                //string[] para = command.Split('\"');
                //if (para.Length > 3)
                //{
                //    string pathC = para[3];//获取打开的文件的路径
                //    MessageBox.Show("mainform=" + pathC);
                //    //下面就可以自己编写代码使用这个pathC参数了
                //    //FileStream fs = new FileStream(pathC, FileMode.Open, FileAccess.Read);
                //}
                InitializeComponent();
            }
    主窗体中这么获取的参数。