qq聊天记录保护器制作全过程_c#应用

2008-02-23 05:45:18来源:互联网 阅读 ()

新老客户大回馈,云服务器低至5折

闲来无事,做了个访止别人偷看QQ聊天记录的东东。对那些长期挂QQ又经常出去的人或许有用。
首先,查看聊天记录的那个窗口叫"信息管理器",如图:

为了访止别人打开这个窗口,做个Timer,每隔一定时间检查每个窗口的名称,看是否有标题为"信息管理器"的,有的话说明有人正在看聊天记录就把他给关掉。这个很容易实现,用到的函数有:FindWindow和SendMessage。代码如下:


//声明API函数
[DllImport("user32.dll")]
public static extern IntPtr FindWindow(String lpClassName,String lpWindowName);
[DllImport("user32.dll",CharSet=CharSet.Auto)]//用于向窗口发送命令
public static extern int SendMessage(IntPtr hWnd,int msg, int wParam, int lParam);//声明两个常量
public const int WM_SYSCOMMAND = 0x0112;
public const int SC_CLOSE = 0xF060; private void timer1_Tick(object sender, System.EventArgs e)//是否有信息管理器在运行
{
IntPtr hwc = FindWindows(null, "信息管理器");
if ((int)hwc != 0)//说明有信息管理器在运行
{
SendMessage(hwnd, WM_SYSCOMMAND, SC_CLOSE, (int)IntPtr.Zero);

f.Show();
}

}这样就能够访止别人打开信息管理器啦。Timer的时间设为2秒就能够啦。
另外更有个地方能看到聊天记录,就是聊天窗口的下面有个按纽:"聊天记录(H)",虽然这里显示的聊天记录不全,但也能显示20条左右。在此我只想到一个可用办法,就是禁用了这个按纽(关掉也能够实现,但容易使QQ程式发生错误重启)。用到的API函数有:SetWindowText、EnableWindow、EnumWindows、GetWindowText、FindWindowEx.
代码如下:
[DllImport("user32.dll")]
public static extern bool SetWindowText(IntPtr hWnd, string lpString );


[DllImport("user32.dll")]
public static extern bool EnableWindow(IntPtr hWnd,bool bEnable);

[DllImport("user32")]
public static extern int EnumWindows(CallBack x, int y);

[DllImport("user32.dll")]
public static extern int GetWindowText( IntPtr hwnd,System.Text.StringBuilder buf, int nMaxCount);


[DllImport("user32.dll",CharSet=CharSet.Auto)]
public static extern IntPtr FindWindowEx(IntPtr parent, //HWND
IntPtr next, //HWND
string sClassName,
string sWindowTitle); public static Hashtable hs=new Hashtable();
public static void check() //检查有没有打开聊天窗口,并关闭其中的“聊天记录”按键
{
hs.Clear();
CallBack myCallBack = new CallBack(Report);
EnumWindows(myCallBack, 1);

foreach(System.Collections.DictionaryEntry de in hs)
{
IntPtr hd=(IntPtr)(de.Key);
IntPtr frameh=FindWindowEx(hd,IntPtr.Zero,"#32770",null);
if((int)frameh!=0)
{
IntPtr ip=FindWindowEx(frameh,IntPtr.Zero,"Button","聊天记录(&H)");
if((int)ip!=0)
{
MainC.SetWindowText(ip,"禁止查看");
MainC.EnableWindow(ip,false);
}
}
}
}

public static bool Report(IntPtr hwnd, int lParam)
{
StringBuilder buf=new StringBuilder(256);
GetWindowText(hwnd,buf,256);
if((buf.ToString().IndexOf("聊天中")!=-1)||(buf.ToString().IndexOf("- 发送消息")!=-1))
{
hs.Add(hwnd,null);
}
return true;

}
"#32770"是QQ窗口的类名,用Sky 能够查到,并能够了解其子窗口情况。
禁用了聊天记录的QQ窗口如图:

最后实现开机运行,这个容易实现,下面的代码就能够啦:
private void autorun(bool run)//实现程式开机运行
{
string path=System.IO.Directory.GetCurrentDirectory() "\\" "svchost.exe";
RegistryKey rLocal = Registry.LocalMachine;
RegistryKey key1=null;
if(run==true)
{
try
{
key1 = rLocal.OpenSubKey(@"SOFTWARE\Microsoft\Windows\CurrentVersion\Run",true);
key1.SetValue ("systemid",path);
key1.Close();
}
catch
{
}
if(key1 ==null)
{
try
{
RegistryKey key2=rLocal.CreateSubKey(@"SOFTWARE\Microsoft\Windows\CurrentVersion\Run");
key2.SetValue ("systemid",path);
key2.Close();
}
catch
{
}
}
}
else
{
try
{

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇: 总结c#中得到程式当前工作目录和执行目录的一些方法_c#应用

下一篇: meetnow的概念和使用_autocad教程