C#

在C#中使用热键隐含窗口

在C#中使用热键隐含窗口
Author:unknown&;nbspFrom:Internet我们曾经想过能够在我们的计算机上将窗口隐蔽起来,不想被从身边走过的老板看见。尝试便捷的Windows隐藏并定义热键来控制它们。...

Advertise Here

在C#程序中使用系统热键

1.首先引入System.Runtime.InteropServices
using System.Runtime.InteropServices;
2.在类内部声明两个API函数,它们的位置和类的成员变量等同.
[System.Runtime.InteropServices.DllImport("user32.dll")] //申明API...

C# 制作超酷图像效果

一. 底片效果
原理: GetPixel方法获得每一点像素的值, 然后再使用SetPixel方法将取反后的颜色值设置到对应的点.
CODE:
private void button1_Click(object sender, EventArgs e)
{
//以底片...

C#,AxWebBrowser,Iframe,Frames,2.0(二)

http://www.cnblogs.com/Laser_Lu/articles/996853.html
直接在这看好了.不转了..麻烦
收藏、分享这篇文章!

...

C#,AxWebBrowser,Iframe,Frames,2.0(一)

1.获取frame的源文件
MessageBox.Show(webBrowser1.Document.Window.Frames["main"].Document.Body.InnerHtml);
2.获取frame的HTMLDocument接口
HTMLDocument doc = (HTMLDocument)webBrowser1.Document.DomDocument;
object j;

C#,WebBrowser,OnNavigate,触发,示例,代码

using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using Sys...