资源简介
如何用C#做一个悬浮窗口程序?
网上有许多的教材但没有源码下载,自己写了一个于大家分享,内附教程.
用C#做一个像FlashGet的悬浮窗口,其实很简单,不像以前需要调用很多系统API。大致的步骤如下。
首先是主窗体部分,悬浮窗口部分
代码片段和文件信息
//by lonleung 2008-12-10 00:15
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication20
{
public partial class frmMain : Form
{
public frmMain()
{
InitializeComponent();
}
private FormWindowState fwsPrevious;
private frmTopMost myTopMost;
private void frmMain_Load(object sender System.EventArgs e)
{
// Save window state
fwsPrevious = this.WindowState;
// Create top most window
myTopMost = new frmTopMost(this);
}
private void frmMain_SizeChanged(object sender EventArgs e)
{
if (this.WindowState == FormWindowState.Minimized)
{
// Window minimized
// Show top most window
myTopMost.Show();
this.ShowInTaskbar = false;
}
else if (this.WindowState != fwsPrevious)
{
// Save current window state
fwsPrevious = this.WindowState;
}
}
///
/// Restore window state
///
public void RestoreWindow()
{
this.WindowState = fwsPrevious;
this.ShowInTaskbar = true;
}
private void TOPToolStripMenuItem_Click(object sender EventArgs e)
{
myTopMost.Show();
}
private void mostToolStripMenuItem_Click(object sender EventArgs e)
{
Application.Exit();
}
private void button1_Click(object sender EventArgs e)
{
string strName = “功能“ + Convert.ToString(this.tabControl1.TabPages.Count + 1);
string strTap = “tabPage“ + Convert.ToString(this.tabControl1.TabPages.Count);
this.tabControl1.TabPages.Add(strTap strName);
}
private void button2_Click(object sender EventArgs e)
{
int seleIndex = tabControl1.SelectedIndex;
this.tabControl1.TabPages.RemoveAt(seleIndex);
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 12800 2008-12-11 08:57 模仿迅雷浮动窗\WindowsFormsApplication20\bin\Debug\WindowsFormsApplication20.exe
文件 36352 2008-12-11 08:57 模仿迅雷浮动窗\WindowsFormsApplication20\bin\Debug\WindowsFormsApplication20.pdb
文件 14328 2008-12-11 08:56 模仿迅雷浮动窗\WindowsFormsApplication20\bin\Debug\WindowsFormsApplication20.vshost.exe
文件 490 2007-07-21 01:33 模仿迅雷浮动窗\WindowsFormsApplication20\bin\Debug\WindowsFormsApplication20.vshost.exe.manifest
文件 2346 2008-12-11 08:57 模仿迅雷浮动窗\WindowsFormsApplication20\Form1.cs
文件 5279 2008-12-11 00:39 模仿迅雷浮动窗\WindowsFormsApplication20\Form1.Designer.cs
文件 6019 2008-12-11 00:39 模仿迅雷浮动窗\WindowsFormsApplication20\Form1.resx
文件 3039 2008-12-11 08:57 模仿迅雷浮动窗\WindowsFormsApplication20\frmTopMost.cs
文件 3808 2008-12-10 23:29 模仿迅雷浮动窗\WindowsFormsApplication20\frmTopMost.Designer.cs
文件 6019 2008-12-10 23:29 模仿迅雷浮动窗\WindowsFormsApplication20\frmTopMost.resx
文件 2744 2008-12-11 08:56 模仿迅雷浮动窗\WindowsFormsApplication20\obj\Debug\WindowsFormsApplication20.csproj.FileListAbsolute.txt
文件 910 2008-12-11 00:39 模仿迅雷浮动窗\WindowsFormsApplication20\obj\Debug\WindowsFormsApplication20.csproj.GenerateResource.Cache
文件 12800 2008-12-11 08:57 模仿迅雷浮动窗\WindowsFormsApplication20\obj\Debug\WindowsFormsApplication20.exe
文件 180 2008-12-11 00:39 模仿迅雷浮动窗\WindowsFormsApplication20\obj\Debug\WindowsFormsApplication20.frmMain.resources
文件 180 2008-12-10 23:29 模仿迅雷浮动窗\WindowsFormsApplication20\obj\Debug\WindowsFormsApplication20.frmTopMost.resources
文件 36352 2008-12-11 08:57 模仿迅雷浮动窗\WindowsFormsApplication20\obj\Debug\WindowsFormsApplication20.pdb
文件 180 2008-12-10 22:48 模仿迅雷浮动窗\WindowsFormsApplication20\obj\Debug\WindowsFormsApplication20.Properties.Resources.resources
文件 488 2008-12-10 22:44 模仿迅雷浮动窗\WindowsFormsApplication20\Program.cs
文件 1406 2008-12-10 22:43 模仿迅雷浮动窗\WindowsFormsApplication20\Properties\AssemblyInfo.cs
文件 2900 2008-12-10 22:43 模仿迅雷浮动窗\WindowsFormsApplication20\Properties\Resources.Designer.cs
文件 5612 2008-12-10 22:43 模仿迅雷浮动窗\WindowsFormsApplication20\Properties\Resources.resx
文件 1110 2008-12-10 22:43 模仿迅雷浮动窗\WindowsFormsApplication20\Properties\Settings.Designer.cs
文件 249 2008-12-10 22:43 模仿迅雷浮动窗\WindowsFormsApplication20\Properties\Settings.settings
文件 3746 2008-12-10 22:48 模仿迅雷浮动窗\WindowsFormsApplication20\WindowsFormsApplication20.csproj
文件 965 2008-12-10 22:43 模仿迅雷浮动窗\WindowsFormsApplication20.sln
..A..H. 25088 2008-12-11 08:57 模仿迅雷浮动窗\WindowsFormsApplication20.suo
目录 0 2008-12-10 22:44 模仿迅雷浮动窗\WindowsFormsApplication20\obj\Debug\Refactor
目录 0 2008-12-10 22:43 模仿迅雷浮动窗\WindowsFormsApplication20\obj\Debug\TempPE
目录 0 2008-12-10 22:45 模仿迅雷浮动窗\WindowsFormsApplication20\bin\Debug
目录 0 2008-12-11 00:41 模仿迅雷浮动窗\WindowsFormsApplication20\obj\Debug
............此处省略9个文件信息
相关资源
- 微信公众平台 网页授权获取用户基本
- C# 命名管道 异步通信的
- C#数组的随机排序源码
- 基于C#窗体的五子棋游戏简单Demo
- 基于c#的串口通信获取温湿度传感器数
- C#&Csgl进行OpenGL编程
- 自动识别插入电脑设备的代码c#USB串口
- C# 对Cookie、Session、Cache的操作辅助类
- A*寻路算法实现C#源码——A Star find
- 用C#实现文本朗读和语音识别功能
- C#写入与读取Cookie C#.Net代码
- C#的一个B/S
- C#如何动态添加或删除窗体中的控件(
- c#影院售票系统(含数据库)
- head first c# lab3(入侵者游戏)
- C# IC卡读写源码(纯代码,无封装)
- C# 小票打印源码
- C#开发实战1200例第2卷源码
- C#开发实战1200例第1卷源码
- Voronoi Diagram维诺图
- .NET/C# 英文面试题[附答案]汇总 1
- .NET新闻系统C#(毕业设计版)
- C#实现的人工神经网络人脸识别 含完
- C#WebBrowser导出网页所有图片
- MKAdminlayui+C# 后台管理系统
- C#实现QQ好友列表功能
- C# 基于Modbus TCP的西门子S7200PLC读写例
- 非常好用的 C# winform 操作EXCEL文件源
- WeifenLuo.WinFormsUI.Docking 源代码和
- c#高精度定时器
评论
共有 条评论