- 浏览: 281736 次
- 性别:
- 来自: 深圳
文章分类
最新评论
-
iceblue123:
厉害,太感谢楼主了,第二种方法威武!
spring MVC 3.2中@ResponseBody返回乱码的完美解决方案 -
gaozi131:
感谢啊 折腾了一下午搞定
spring MVC 3.2中@ResponseBody返回乱码的完美解决方案 -
yenshen:
找了半天,问题终于解决了,感谢!
spring MVC 3.2中@ResponseBody返回乱码的完美解决方案 -
笑闯天下:
感觉效率不是很高啊 ,如果从数据库中取到的数据 还要去自己拼接 ...
java导出CSV文件 -
ajonjun:
http://viralpatel.net/
解决ckeditor html不显示,ckeditor 自动过滤html
最近有一个任务,是实现MSN消息框的功能.
一共做了三个版本:
1、用asp.net实现网页中弹出消息框
这个我采用了一个.NET的第三方控件(这个控件在网上找一下就行),可是这个控件只能显示在网页区域内,也就是说,它无法真正实现和MSN一样的消息框功能。无柰,只好放弃。不过,如果只需要在网页区域中显示的话,可以采用它.
2、用JAVASCRIPT去实现该功能
这回采用JAVASCRIPT去实现。代码如下:
<SCRIPT language="JavaScript">
<!--
/*
* 消息构造
*/
function CLASS_MSN_MESSAGE(id,width,height,caption,title,message,target,action){
this.id = id;
this.title = title;
this.caption= caption;
this.message= message;
this.target = target;
this.action = action;
this.width = width?width:200;
this.height = height?height:120;
this.timeout= 150;
this.speed = 20;
this.step = 1;
this.right = screen.width -1;
this.bottom = screen.height;
this.left = this.right - this.width;
this.top = this.bottom - this.height;
this.timer = 0;
this.pause = false;
this.close = false;
}
/*
* 隐藏消息方法
*/
CLASS_MSN_MESSAGE.prototype.hide = function(){
if(this.onunload()){
var offset = this.height>this.bottom-this.top?this.height:this.bottom-this.top;
var me = this;
if(this.timer>0){
window.clearInterval(me.timer);
}
var fun = function(){
if(me.pause==false||me.close){
var x = me.left;
var y = 0;
var width = me.width;
var height = 0;
if(me.offset>0){
height = me.offset;
}
y = me.bottom - height;
if(y>=me.bottom){
window.clearInterval(me.timer);
me.Pop.hide();
} else {
me.offset =me.offset - me.step; //等于0是马上消失,否则为逐渐消失
}
me.Pop.show(x,y,width,height);
}
}
this.timer = window.setInterval(fun,this.speed)
}
}
/*
* 消息卸载事件,可以重写
*/
CLASS_MSN_MESSAGE.prototype.onunload = function() {
return true;
}
/*
* 消息命令事件,要实现自己的连接,请重写它
*
*/
CLASS_MSN_MESSAGE.prototype.oncommand = function(){
this.hide();
window.open('http://www.google.com');
}
/*
* 消息显示方法
*/
CLASS_MSN_MESSAGE.prototype.show = function(){
var oPopup = window.createPopup(); //IE5.5+
this.Pop = oPopup;
var w = this.width;
var h = this.height;
var str = "<DIV style='BORDER-RIGHT: #455690 1px solid; BORDER-TOP: #a6b4cf 1px solid; Z-INDEX: 99999; LEFT: 0px; BORDER-LEFT: #a6b4cf 1px solid; WIDTH: " + w + "px; BORDER-BOTTOM: #455690 1px solid; POSITION: absolute; TOP: 0px; HEIGHT: " + h + "px; BACKGROUND-COLOR: #c9d3f3'>"
str += "<TABLE style='BORDER-TOP: #ffffff 1px solid; BORDER-LEFT: #ffffff 1px solid' cellSpacing=0 cellPadding=0 width='100%' bgColor=#cfdef4 border=0>"
str += "<TR>"
str += "<TD style='FONT-SIZE: 12px;COLOR: #0f2c8c' width=30 height=24></TD>"
str += "<TD style='PADDING-LEFT: 4px; FONT-WEIGHT: normal; FONT-SIZE: 12px; COLOR: #1f336b; PADDING-TOP: 4px' vAlign=center width='100%'>" + this.caption + "</TD>"
str += "<TD style='PADDING-RIGHT: 2px; PADDING-TOP: 2px' vAlign=center align=right width=19>"
str += "<SPAN title=关闭 style='FONT-WEIGHT: bold; FONT-SIZE: 12px; CURSOR: hand; COLOR: red; MARGIN-RIGHT: 4px' id='btSysClose' >×</SPAN></TD>"
str += "</TR>"
str += "<TR>"
str += "<TD style='PADDING-RIGHT: 1px;PADDING-BOTTOM: 1px' colSpan=3 height=" + (h-28) + ">"
str += "<DIV style='BORDER-RIGHT: #b9c9ef 1px solid; PADDING-RIGHT: 8px; BORDER-TOP: #728eb8 1px solid; PADDING-LEFT: 8px; FONT-SIZE: 12px; PADDING-BOTTOM: 8px; BORDER-LEFT: #728eb8 1px solid; WIDTH: 100%; COLOR: #1f336b; PADDING-TOP: 8px; BORDER-BOTTOM: #b9c9ef 1px solid; HEIGHT: 100%'>" + this.title + "<BR><BR>"
str += "<DIV style='WORD-BREAK: break-all' align=left><A href='javascript:void(0)' hidefocus=false id='btCommand'><FONT color=#ff0000>" + this.message + "</FONT></A></DIV>"
str += "</DIV>"
str += "</TD>"
str += "</TR>"
str += "</TABLE>"
str += "</DIV>"
oPopup.document.body.innerHTML = str;
this.offset = 0;
var me = this;
oPopup.document.body.onmouseover = function(){me.pause=true;}
oPopup.document.body.onmouseout = function(){me.pause=false;}
var fun = function(){
var x = me.right;
var y = 0;
var width = me.width;
var height = me.height;
if(me.offset>me.height){
height = me.height;
} else {
height = me.offset;
}
y = me.bottom - me.offset;
if(y<=me.top)//让消息框消失
{
me.timeout--;
if(me.timeout==0)//当消息框在页面中显示的时间到期时,将消息框隐藏
{
//alert(me.timer);
window.clearInterval(me.timer);
me.hide();
}
}
else
{
me.offset = me.offset + me.step;
}
me.Pop.show(x,y,width,height);
// oPopup.show(100, 100, 180, 25, str);
}
this.timer = window.setInterval(fun,this.speed)
var btClose = oPopup.document.getElementById("btSysClose");
btClose.onclick = function(){
me.close = true;
me.hide();
}
var btCommand = oPopup.document.getElementById("btCommand");
btCommand.onclick = function(){
me.oncommand();
}
}
/*
** 设置速度方法
**/
CLASS_MSN_MESSAGE.prototype.speed = function(s){
var t = 20;
try {
t = praseInt(s);
} catch(e){}
this.speed = t;
}
/*
** 设置步长方法
**/
CLASS_MSN_MESSAGE.prototype.step = function(s){
var t = 1;
try {
t = praseInt(s);
} catch(e){}
this.step = t;
}
CLASS_MSN_MESSAGE.prototype.rect = function(left,right,top,bottom){
try {
this.left = left !=null?left:this.right-this.width;
this.right = right !=null?right:this.left +this.width;
this.bottom = bottom!=null?(bottom>screen.height?screen.height:bottom):screen.height;
this.top = top !=null?top:this.bottom - this.height;
} catch(e){}
}
function bb(ini)
{
if(ini<=1)
{
//alert(window.Form1.teTitle.value);
var MSG1 = new CLASS_MSN_MESSAGE(ini,200,120,"<image src='oicq.gif'> 消息提示:",window.Form1.teTitle.value,window.Form1.teShow.value);
MSG1.rect(null,null,null,screen.availHeight); //screen 是任务栏,availHeight代表当前任务栏的高度
//alert(screen.availHeight);
MSG1.speed = 10;
MSG1.step = 5;
//alert(MSG1.top);
//MSG1.hide();
// window.setTimeout('Ktime()',120);
MSG1.show();
}
else if(ini>1)
{
for(i=1;i<=ini;i++)
{
var MSG1 = new CLASS_MSN_MESSAGE(i,200,120,"<image src='oicq.gif'> 消息提示:",window.Form1.teTitle.value,window.Form1.teShow.value);
var popheight;
if(i==1)
popheight=screen.availHeight;
else
popheight=popheight-120;
MSG1.rect(null,null,null,popheight); //screen 是任务栏,availHeight代表当前任务栏的高度
MSG1.speed = 10;
MSG1.step = 5;
//alert(MSG1.top);
//MSG1.hide();
window.setTimeout('Ktime()',1000);
MSG1.show();
}
}
}
function Ktime()
{
window.setTimeout('Ktime()',1000);
}
//同时两个有闪烁,只能用层代替了,不过层不跨框架
//var MSG2 = new CLASS_MSN_MESSAGE("aa",200,120,"短消息提示:","您有2封消息","好的啊");
// MSG2.rect(100,null,null,screen.height);
// MSG2.show();
//-->
</SCRIPT>
<form id="Form1" method="post" runat="server">
<TABLE id="Table2" style="Z-INDEX: 101; LEFT: 8px; POSITION: absolute; TOP: 8px" cellSpacing="0"
cellPadding="0" width="100%" border="0">
<TR>
<TD vAlign="top"><asp:panel id="Panel1" runat="server"><FONT face="宋体">
<TABLE id="Table1" style="WIDTH: 783px; HEIGHT: 64px" cellSpacing="0" cellPadding="0" width="783"
border="0">
<TBODY>
<TR>
<TD style="WIDTH: 94px">
<asp:label id="Label3" runat="server">标 题</asp:label></TD>
<TD><INPUT id="teTitle" style="WIDTH: 336px; HEIGHT: 22px" type="text" size="50" value="MSN Message"
runat="server"></TD>
</TR>
<TR>
<TD style="WIDTH: 94px">
<asp:label id="Label1" runat="server">显示文字</asp:label></TD>
<TD><FONT face="宋体"><INPUT id="teShow" style="WIDTH: 336px; HEIGHT: 22px" type="text" size="50" value="请点击查看详细信息!"></FONT></TD>
</TR>
<TR>
<TD style="WIDTH: 94px">
<asp:label id="Label2" runat="server">显示次数</asp:label></TD>
<TD><INPUT id="cou" style="WIDTH: 336px; HEIGHT: 22px" type="text" size="50">
</asp:panel></TD>
</TR>
</TABLE>
</FONT></TD></TR>
<TR>
<TD vAlign="top"><INPUT style="WIDTH: 432px; HEIGHT: 56px" onclick="bb(cou.value)" type="button" value="快按一下吧"></TD>
</TR>
</TBODY></TABLE></form>
这个方法可以实现MSN的功能。但还是有一毛病,就是,不能同时出现两个或以上的消息框,否则刷新将十分严重。这样的话,可该怎么办呢?
最后,我实现没有办法了,我只好用C#来实现这个功能
3、用WINDOW窗体实现MSN消息框功能
这个例子我是照MSDN上的一篇例子做的,我在这里只提供一个网址,因为这个网址包含的范例做的更好一些,我做的拿不出手的程序在这里就不提了
http://www.microsoft.com/china/MSDN/library/netFramework/netframework/WindowsForms.mspx
总结一下:
在这里,我提供了三种方法。各位可因人而宜。不过注意一点的是,如采用第二种方法,就必须将不断闪烁的缺点克服。如果各位高手中有知道如何去掉这个错误的话,请教教小弟!这里不胜感激!
一共做了三个版本:
1、用asp.net实现网页中弹出消息框
这个我采用了一个.NET的第三方控件(这个控件在网上找一下就行),可是这个控件只能显示在网页区域内,也就是说,它无法真正实现和MSN一样的消息框功能。无柰,只好放弃。不过,如果只需要在网页区域中显示的话,可以采用它.
2、用JAVASCRIPT去实现该功能
这回采用JAVASCRIPT去实现。代码如下:
<SCRIPT language="JavaScript">
<!--
/*
* 消息构造
*/
function CLASS_MSN_MESSAGE(id,width,height,caption,title,message,target,action){
this.id = id;
this.title = title;
this.caption= caption;
this.message= message;
this.target = target;
this.action = action;
this.width = width?width:200;
this.height = height?height:120;
this.timeout= 150;
this.speed = 20;
this.step = 1;
this.right = screen.width -1;
this.bottom = screen.height;
this.left = this.right - this.width;
this.top = this.bottom - this.height;
this.timer = 0;
this.pause = false;
this.close = false;
}
/*
* 隐藏消息方法
*/
CLASS_MSN_MESSAGE.prototype.hide = function(){
if(this.onunload()){
var offset = this.height>this.bottom-this.top?this.height:this.bottom-this.top;
var me = this;
if(this.timer>0){
window.clearInterval(me.timer);
}
var fun = function(){
if(me.pause==false||me.close){
var x = me.left;
var y = 0;
var width = me.width;
var height = 0;
if(me.offset>0){
height = me.offset;
}
y = me.bottom - height;
if(y>=me.bottom){
window.clearInterval(me.timer);
me.Pop.hide();
} else {
me.offset =me.offset - me.step; //等于0是马上消失,否则为逐渐消失
}
me.Pop.show(x,y,width,height);
}
}
this.timer = window.setInterval(fun,this.speed)
}
}
/*
* 消息卸载事件,可以重写
*/
CLASS_MSN_MESSAGE.prototype.onunload = function() {
return true;
}
/*
* 消息命令事件,要实现自己的连接,请重写它
*
*/
CLASS_MSN_MESSAGE.prototype.oncommand = function(){
this.hide();
window.open('http://www.google.com');
}
/*
* 消息显示方法
*/
CLASS_MSN_MESSAGE.prototype.show = function(){
var oPopup = window.createPopup(); //IE5.5+
this.Pop = oPopup;
var w = this.width;
var h = this.height;
var str = "<DIV style='BORDER-RIGHT: #455690 1px solid; BORDER-TOP: #a6b4cf 1px solid; Z-INDEX: 99999; LEFT: 0px; BORDER-LEFT: #a6b4cf 1px solid; WIDTH: " + w + "px; BORDER-BOTTOM: #455690 1px solid; POSITION: absolute; TOP: 0px; HEIGHT: " + h + "px; BACKGROUND-COLOR: #c9d3f3'>"
str += "<TABLE style='BORDER-TOP: #ffffff 1px solid; BORDER-LEFT: #ffffff 1px solid' cellSpacing=0 cellPadding=0 width='100%' bgColor=#cfdef4 border=0>"
str += "<TR>"
str += "<TD style='FONT-SIZE: 12px;COLOR: #0f2c8c' width=30 height=24></TD>"
str += "<TD style='PADDING-LEFT: 4px; FONT-WEIGHT: normal; FONT-SIZE: 12px; COLOR: #1f336b; PADDING-TOP: 4px' vAlign=center width='100%'>" + this.caption + "</TD>"
str += "<TD style='PADDING-RIGHT: 2px; PADDING-TOP: 2px' vAlign=center align=right width=19>"
str += "<SPAN title=关闭 style='FONT-WEIGHT: bold; FONT-SIZE: 12px; CURSOR: hand; COLOR: red; MARGIN-RIGHT: 4px' id='btSysClose' >×</SPAN></TD>"
str += "</TR>"
str += "<TR>"
str += "<TD style='PADDING-RIGHT: 1px;PADDING-BOTTOM: 1px' colSpan=3 height=" + (h-28) + ">"
str += "<DIV style='BORDER-RIGHT: #b9c9ef 1px solid; PADDING-RIGHT: 8px; BORDER-TOP: #728eb8 1px solid; PADDING-LEFT: 8px; FONT-SIZE: 12px; PADDING-BOTTOM: 8px; BORDER-LEFT: #728eb8 1px solid; WIDTH: 100%; COLOR: #1f336b; PADDING-TOP: 8px; BORDER-BOTTOM: #b9c9ef 1px solid; HEIGHT: 100%'>" + this.title + "<BR><BR>"
str += "<DIV style='WORD-BREAK: break-all' align=left><A href='javascript:void(0)' hidefocus=false id='btCommand'><FONT color=#ff0000>" + this.message + "</FONT></A></DIV>"
str += "</DIV>"
str += "</TD>"
str += "</TR>"
str += "</TABLE>"
str += "</DIV>"
oPopup.document.body.innerHTML = str;
this.offset = 0;
var me = this;
oPopup.document.body.onmouseover = function(){me.pause=true;}
oPopup.document.body.onmouseout = function(){me.pause=false;}
var fun = function(){
var x = me.right;
var y = 0;
var width = me.width;
var height = me.height;
if(me.offset>me.height){
height = me.height;
} else {
height = me.offset;
}
y = me.bottom - me.offset;
if(y<=me.top)//让消息框消失
{
me.timeout--;
if(me.timeout==0)//当消息框在页面中显示的时间到期时,将消息框隐藏
{
//alert(me.timer);
window.clearInterval(me.timer);
me.hide();
}
}
else
{
me.offset = me.offset + me.step;
}
me.Pop.show(x,y,width,height);
// oPopup.show(100, 100, 180, 25, str);
}
this.timer = window.setInterval(fun,this.speed)
var btClose = oPopup.document.getElementById("btSysClose");
btClose.onclick = function(){
me.close = true;
me.hide();
}
var btCommand = oPopup.document.getElementById("btCommand");
btCommand.onclick = function(){
me.oncommand();
}
}
/*
** 设置速度方法
**/
CLASS_MSN_MESSAGE.prototype.speed = function(s){
var t = 20;
try {
t = praseInt(s);
} catch(e){}
this.speed = t;
}
/*
** 设置步长方法
**/
CLASS_MSN_MESSAGE.prototype.step = function(s){
var t = 1;
try {
t = praseInt(s);
} catch(e){}
this.step = t;
}
CLASS_MSN_MESSAGE.prototype.rect = function(left,right,top,bottom){
try {
this.left = left !=null?left:this.right-this.width;
this.right = right !=null?right:this.left +this.width;
this.bottom = bottom!=null?(bottom>screen.height?screen.height:bottom):screen.height;
this.top = top !=null?top:this.bottom - this.height;
} catch(e){}
}
function bb(ini)
{
if(ini<=1)
{
//alert(window.Form1.teTitle.value);
var MSG1 = new CLASS_MSN_MESSAGE(ini,200,120,"<image src='oicq.gif'> 消息提示:",window.Form1.teTitle.value,window.Form1.teShow.value);
MSG1.rect(null,null,null,screen.availHeight); //screen 是任务栏,availHeight代表当前任务栏的高度
//alert(screen.availHeight);
MSG1.speed = 10;
MSG1.step = 5;
//alert(MSG1.top);
//MSG1.hide();
// window.setTimeout('Ktime()',120);
MSG1.show();
}
else if(ini>1)
{
for(i=1;i<=ini;i++)
{
var MSG1 = new CLASS_MSN_MESSAGE(i,200,120,"<image src='oicq.gif'> 消息提示:",window.Form1.teTitle.value,window.Form1.teShow.value);
var popheight;
if(i==1)
popheight=screen.availHeight;
else
popheight=popheight-120;
MSG1.rect(null,null,null,popheight); //screen 是任务栏,availHeight代表当前任务栏的高度
MSG1.speed = 10;
MSG1.step = 5;
//alert(MSG1.top);
//MSG1.hide();
window.setTimeout('Ktime()',1000);
MSG1.show();
}
}
}
function Ktime()
{
window.setTimeout('Ktime()',1000);
}
//同时两个有闪烁,只能用层代替了,不过层不跨框架
//var MSG2 = new CLASS_MSN_MESSAGE("aa",200,120,"短消息提示:","您有2封消息","好的啊");
// MSG2.rect(100,null,null,screen.height);
// MSG2.show();
//-->
</SCRIPT>
<form id="Form1" method="post" runat="server">
<TABLE id="Table2" style="Z-INDEX: 101; LEFT: 8px; POSITION: absolute; TOP: 8px" cellSpacing="0"
cellPadding="0" width="100%" border="0">
<TR>
<TD vAlign="top"><asp:panel id="Panel1" runat="server"><FONT face="宋体">
<TABLE id="Table1" style="WIDTH: 783px; HEIGHT: 64px" cellSpacing="0" cellPadding="0" width="783"
border="0">
<TBODY>
<TR>
<TD style="WIDTH: 94px">
<asp:label id="Label3" runat="server">标 题</asp:label></TD>
<TD><INPUT id="teTitle" style="WIDTH: 336px; HEIGHT: 22px" type="text" size="50" value="MSN Message"
runat="server"></TD>
</TR>
<TR>
<TD style="WIDTH: 94px">
<asp:label id="Label1" runat="server">显示文字</asp:label></TD>
<TD><FONT face="宋体"><INPUT id="teShow" style="WIDTH: 336px; HEIGHT: 22px" type="text" size="50" value="请点击查看详细信息!"></FONT></TD>
</TR>
<TR>
<TD style="WIDTH: 94px">
<asp:label id="Label2" runat="server">显示次数</asp:label></TD>
<TD><INPUT id="cou" style="WIDTH: 336px; HEIGHT: 22px" type="text" size="50">
</asp:panel></TD>
</TR>
</TABLE>
</FONT></TD></TR>
<TR>
<TD vAlign="top"><INPUT style="WIDTH: 432px; HEIGHT: 56px" onclick="bb(cou.value)" type="button" value="快按一下吧"></TD>
</TR>
</TBODY></TABLE></form>
这个方法可以实现MSN的功能。但还是有一毛病,就是,不能同时出现两个或以上的消息框,否则刷新将十分严重。这样的话,可该怎么办呢?
最后,我实现没有办法了,我只好用C#来实现这个功能
3、用WINDOW窗体实现MSN消息框功能
这个例子我是照MSDN上的一篇例子做的,我在这里只提供一个网址,因为这个网址包含的范例做的更好一些,我做的拿不出手的程序在这里就不提了
http://www.microsoft.com/china/MSDN/library/netFramework/netframework/WindowsForms.mspx
总结一下:
在这里,我提供了三种方法。各位可因人而宜。不过注意一点的是,如采用第二种方法,就必须将不断闪烁的缺点克服。如果各位高手中有知道如何去掉这个错误的话,请教教小弟!这里不胜感激!
发表评论
-
20条ASP.NET常用语句非常实用
2009-12-22 23:39 13761.//弹出对话框.点击转向指定页面 Response.Wr ... -
C#/.NET主线程与子线程之间的关系
2009-12-22 23:10 2400以前一直没有在程序中写过总结,再翻开程序时却不知所云,所以我决 ... -
Using sqlite with .NET
2009-12-08 00:01 921The other day I found that ther ... -
C#操作Excel,套用模板并对数据进行分页
2009-12-07 23:52 2180using System; using System.I ... -
动态生成缩略图
2009-12-07 23:49 1347Util.cs 的部分代码: //// <summa ... -
如何获取客户IE统计信息
2009-12-07 23:47 1038namespace Huawei.com { p ... -
运用API函数获取系统信息
2009-12-07 23:44 1106<HTML> <HEAD> ... -
WMI类-所有可用的WMI的类封装
2009-12-07 23:43 1694public class WMIClasses ... -
自己写的一个文件上传的类
2009-12-07 23:42 1067using System; using System.C ... -
文件操作工具类 FileUtility
2009-12-07 23:41 1274最近一直在研究 Smart Client 的 Smart Up ... -
C# 检查字符串,防SQL注入攻击
2009-12-07 23:16 1833例子里暂定为=号和'号 bool CheckParams ... -
获取本机机器名和登录WINDOWS的用户名?
2009-12-07 23:13 3634using System; using System. ... -
C# 禁用ctrl+alt+del
2009-12-07 23:09 1851using System; using System.R ... -
获取应用程序进程实例,
2009-12-07 23:07 1306/// <summary> ... -
如何在C#中使用全局鼠标、键盘Hook
2009-12-07 23:03 2657今天,有个同事问我,怎样在C#中使用全局钩子?以前写的全局钩子 ... -
把Web Control导出为Excel或Word
2009-12-07 22:58 1038/// <summary> /// 将Web ... -
C#编程忘记密码功能的实现方法
2009-12-07 22:55 2389以下是引用片段: int result = user.Ge ... -
C#实现USB接口的程序代码
2009-12-07 22:53 1923namespace ConsoleApplication1 ... -
Textarea标签封装为Web在线编辑器
2009-12-07 22:42 1089Editor.htm <textarea style ... -
定自已的格式化类
2009-12-07 22:20 822public class Vector:IFormatta ...
相关推荐
总的来说,C#版的MSN机器人项目不仅展示了C#语言在桌面应用开发中的应用,还揭示了即时通讯协议的实现原理和自动化交互的设计思路。对于希望学习即时通讯应用开发或C#高级应用的开发者来说,这是一个非常有价值的...
通过理解和运用这些技术,开发者可以在C# WinForms应用中实现类似MSN的弹出消息功能,提供一种高效、直观的通知方式。在实际编程中,需要注意代码的可读性和可复用性,同时遵循良好的编程实践,以确保项目的质量和...
标题中提到的“QQ,MSN消息弹出效果”,实际上是指消息框从屏幕边缘快速滑入并停留一段时间后自动滑出的效果。这需要使用到两个Timer控件:timer1和timer2,分别用于控制消息框的出现和消失。 1. **timer1的Tick事件...
在C#中,创建消息框通常会用到System.Windows.Forms命名空间下的MessageBox类,它可以弹出系统标准的对话框,但这里提到的是自定义的消息框,所以开发者可能创建了一个自定义控件来实现更个性化的功能。 在“压缩...
在本文中,我们将深入探讨如何使用C#编程语言来实现仿MSN提示框和仿迅雷提示框的效果。这两个项目展示了如何在Windows桌面应用程序中创建自定义的用户界面元素,以模仿流行软件的交互体验。 首先,让我们从仿MSN...
"自低向上升起消息框"是一种常见的UI设计元素,尤其在即时通讯软件如MSN和QQ中广泛使用。这种设计模式旨在模拟真实的对话体验,使用户感觉信息是从屏幕底部自然地“弹出”或升起,增加交互的生动性和吸引力。 首先...
在IT领域,尤其是在Windows应用程序开发中,经常需要实现一种功能:在任务栏上弹出类似于MSN或QQ的消息提示框,这种提示框可以在不干扰用户主界面工作的情况下,提供简短的信息通知。本教程将深入探讨如何使用C#编程...
在C#编程中,创建一个类似QQ或MSN的消息提示功能,即在屏幕右下角渐显弹出消息,可以通过自定义窗体控件和动画效果来实现。这种功能的实现涉及多个知识点,包括窗体的设计、动画的创建、事件处理以及用户交互。下面...
在本文中,我们将深入探讨如何使用C#编程语言来创建一个模拟MSN(Microsoft Network)界面的应用程序。MSN曾经是一款流行的即时通讯软件,它的界面设计简洁而直观,深受用户喜爱。通过C#,我们可以利用.NET ...
在这个项目中,我们讨论的是一款用C#编写的仿MSN(Microsoft Messenger)界面的即时通讯(IM)软件源程序。MSN曾是全球流行的即时通讯工具,其简洁易用的界面设计深受用户喜爱。通过学习和分析这个源程序,开发者...
在C#中,WndProc方法用于接收任何发送到该控件的Windows消息。开发人员可以通过重写该方法来截获绘制窗体标题栏和边框的消息,如WM_NCPAINT、WM_NCACTIVATE、WM_NCRBUTTONDOWN等。 WM_NCPAINT和WM_NCACTIVATE消息会...
在本项目中,Ajax可能用于实现实时聊天功能,如发送消息、接收新消息通知和更新聊天界面。 结合这三个技术,我们可以想象"MSN"项目的大致结构: 1. **用户界面**:使用HTML和CSS构建,可能包含多个聊天窗口、联系...
在本教程中,我们将探讨如何使用C#实现类似于MSN(Microsoft Messenger)的消息弹出效果。MSN,虽然已经停用,但其简洁而引人注意的消息通知方式仍然是UI设计的一个参考点。 首先,我们需要了解C#中的Windows Forms...
这里我们将深入探讨如何在C#中实现这样的多消息提示功能。 首先,我们需要理解消息提示的基本结构。这种提示通常包括一个消息窗口,显示发送者和接收者的昵称、消息内容以及一些附加信息,如时间戳。窗口的样式可能...
在IT行业中,C#是一种广泛使用的编程语言,尤其在开发Windows桌面应用方面有着显著的地位。本项目名为"C# 仿 MSN,QQ 弹窗口",其目标是模仿知名的即时通讯软件MSN和QQ的窗口弹出效果。这个项目对于学习C#的用户,...
在实际开发过程中,开发者需要具备一定的C#编程基础,对.NET Framework或者.NET Core有了解,同时也需要对网络通信和XML解析有一定的认识。通过阅读提供的详细例子,可以快速上手并理解如何使用DotMsn库。在调试和...
【C# 模拟MSN气泡提示窗口】是一种在软件开发中实现轻量级通知机制的技术,常用于论坛、OA(办公自动化)等系统中,为用户提供非侵入式的即时消息提醒。MSNBC#气泡提示窗口的设计灵感来源于微软的即时通讯软件MSN,...
因此,在实现这一功能时,我们需要考虑如何布局这些元素,保持视觉的一致性和易读性,同时也要注意与现代UI设计趋势相协调。 在开发过程中,我们可以采用以下步骤: 1. 设计UI界面:确定消息框的样式、颜色、字体等...
在本文中,我们将深入探讨如何使用C# WPF(Windows Presentation Foundation)来创建一个Taskbar Notifier,类似于QQ、MSN和迅雷等应用程序的状态栏消息提示框。这种提示框能够自动展开并随后关闭,为用户提供一种...