鳕鱼天空

This is Mr Wang's Tech Blog.

C#知识库 外链列表存档

码农改变世界lyf 的 C#基础知识

C#基础知识-数据类型(一)

C#基础知识-编写第一个程序(二)

C#基础知识-基本的流程控制语句(三)

C#基础知识-流程控制的应用(四)

C#基础知识-函数的定义和调用(五)

C#基础知识-引用类型和值类型的区别(六)

C#基础知识-编程思想之封装(七)

C#基础知识-面向对象思想之继承(八)

C#基础知识-数组_ArrayList_List(九)

C#基础知识-XML介绍及基本操作(十)

C#基础知识-使用XML完成一个小程序(十一)

----------------------------------------------我是分割线-----------------------------

c# 检测操作系统版本

使用C#自动注册自定义文件类型

[转]C#中如何获取其他进程的命令行参数 ( How to get other processes's command line argument )

private static IEnumerable<string> GetCommandLines(string processName)
{
    List<string> results = new List<string>();
    string wmiQuery = string.Format("select CommandLine from Win32_Process where Name='{0}'", processName);
    using (ManagementObjectSearcher searcher = new ManagementObjectSearcher(wmiQuery))
    {
using (ManagementObjectCollection retObjectCollection = searcher.Get())
{
    foreach (ManagementObject retObject in retObjectCollection)
    {
results.Add((string)retObject["CommandLine"]);
    }
}
    }
    return results;
}
static void Main(string[] args)
{
    var result = GetCommandLines("msvsmon.exe");
    Console.Read();
}

任务管理器中实际的参数如下, 该程序或得到3个item的string。

  • WMI的C++例子:
    http://msdn.microsoft.com/zh-cn/aa394558

    http://msdn.microsoft.com/zh-cn/aa389762

 

C#全局热键设置与窗体热键设置实例

1、窗体热键

首先要设置主窗体KeyPreview为true,可直接在属性中进行设置,
或者在窗体加载中设置: this.KeyPreview = true;
然后添加窗体KeyDown事件,如下:

private void FrmMain_KeyDown(object sender, KeyEventArgs e)  
{  
    if (e.Alt && e.Shift && e.Control && e.KeyCode == Keys.S)  
    {  
 MessageBox.Show("我按了Control +Shift +Alt +S");  
    }  
}  

2、全局热键设置

定义API函数 》 注册热键 》 卸载热键

我这里定义了AppHotKey类,全部代码如下:

public class AppHotKey  
{  
        [DllImport("kernel32.dll")]  
        public static extern uint GetLastError();  
        //如果函数执行成功,返回值不为0。  
        //如果函数执行失败,返回值为0。要得到扩展错误信息,调用GetLastError。  
        [DllImport("user32.dll", SetLastError = true)]  
        public static extern bool RegisterHotKey(  
            IntPtr hWnd,                //要定义热键的窗口的句柄  
            int id,                     //定义热键ID(不能与其它ID重复)            
            KeyModifiers fsModifiers,   //标识热键是否在按Alt、Ctrl、Shift、Windows等键时才会生效  
            Keys vk                     //定义热键的内容  
            );  
  
        [DllImport("user32.dll", SetLastError = true)]  
        public static extern bool UnregisterHotKey(  
            IntPtr hWnd,                //要取消热键的窗口的句柄  
            int id                      //要取消热键的ID  
            );  
  
        //定义了辅助键的名称(将数字转变为字符以便于记忆,也可去除此枚举而直接使用数值)  
        [Flags()]  
        public enum KeyModifiers  
        {  
            None = 0,  
            Alt = 1,  
            Ctrl = 2,  
            Shift = 4,  
            WindowsKey = 8  
        }  
        /// <summary>  
        /// 注册热键  
        /// </summary>  
        /// <param name="hwnd">窗口句柄</param>  
        /// <param name="hotKey_id">热键ID</param>  
        /// <param name="keyModifiers">组合键</param>  
        /// <param name="key">热键</param>  
        public static void RegKey(IntPtr hwnd, int hotKey_id, KeyModifiers keyModifiers, Keys key)  
        {  
            try  
            {  
                if (!RegisterHotKey(hwnd, hotKey_id, keyModifiers, key))  
                {  
                    if (Marshal.GetLastWin32Error() == 1409) { MessageBox.Show("热键被占用 !"); }  
                    else  
                    {  
                        MessageBox.Show("注册热键失败!");  
                    }  
                }  
            }  
            catch (Exception) { }  
        }  
        /// <summary>  
        /// 注销热键  
        /// </summary>  
        /// <param name="hwnd">窗口句柄</param>  
        /// <param name="hotKey_id">热键ID</param>  
        public static void UnRegKey(IntPtr hwnd, int hotKey_id)  
        {  
            //注销Id号为hotKey_id的热键设定  
            UnregisterHotKey(hwnd, hotKey_id);  
        }  
}  

重写窗体的WndProc函数,在窗口创建的时候注册热键,窗口销毁时销毁热键,代码如下:

private const int WM_HOTKEY = 0x312; //窗口消息-热键  
private const int WM_CREATE = 0x1; //窗口消息-创建  
private const int WM_DESTROY = 0x2; //窗口消息-销毁  
private const int Space = 0x3572; //热键ID  
protected override void WndProc(ref Message m)  
{  
    base.WndProc(ref m);  
    switch (m.Msg)  
    {  
 case WM_HOTKEY: //窗口消息-热键ID  
     switch (m.WParam.ToInt32())  
     {  
  case Space: //热键ID  
      MessageBox.Show("我按了Control +Shift +Alt +S");  
      break;  
  default:  
      break;  
     }  
     break;  
 case WM_CREATE: //窗口消息-创建  
     AppHotKey.RegKey(Handle, Space, AppHotKey.KeyModifiers.Ctrl | AppHotKey.KeyModifiers.Shift | AppHotKey.KeyModifiers.Alt, Keys.S);  
     break;  
 case WM_DESTROY: //窗口消息-销毁  
     AppHotKey.UnRegKey(Handle, Space); //销毁热键  
     break;  
 default:  
     break;  
    }  
}  

 

C#无焦点按钮(非自定义控件)


using System.Reflection  
  
Private void SetButton(Button button)  
{  
  MethodInfo methodinfo = button.GetType().GetMethod("SetStyle",BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.InvokeMethod);  
  methodinfo.Invoke(button,BindingFlags.NonPublic | BindingFlags.Instance | BindingFlags.InvokeMethod,null,new object[] {ControlStyles.Selectable,false},Application.CurrentCulture);  
}  

效果:

==============================================

点击后不得到焦点且不影响当前焦点所在位置,类似系统计算器中按钮的效果。

可以实现无焦点的按钮、复选框、单选框、进度条等控件。

==============================================

转载请注明来源。

来源:http://blog.csdn.net/all77889900/article/details/5832415

C# 带参数隐藏启动air应用程序

一直使用网上下载的scratch2绿色版,但这个绿色程序有个缺陷,无法带参数启动,具体说就是无法在双击SB2文件时打开它,而是打开一个空白的scratch程序。

经过对命令行的研究,发现是通过adl.exe来启动的,然后通过对运行窗口的隐藏,完成了新的Scratch2引导程序,关键代码如下

[STAThread]
static void Main(string[] args)
{
    string root = AppDomain.CurrentDomain.BaseDirectory;

    Application.EnableVisualStyles();
    Application.SetCompatibleTextRenderingDefault(false);

    ProcessStartInfo psi = new ProcessStartInfo(root+"bin\\scratch.exe");

    psi.Arguments = " \"" + root + "application.xml\" -nodebug";

    if(args!=null && args.Length>0)
    {
        psi.Arguments += " -- \"" + args[0] + "\"";
    }

    psi.UseShellExecute = false;
    psi.WindowStyle = ProcessWindowStyle.Hidden;
    psi.CreateNoWindow = true;

    Process.Start(psi);
}

 

后来看到了一篇相关文章,用C++做个启动器可以用来参考:

http://blog.csdn.net/worldspark/article/details/8555753