VS.NET 2005 Beta2初体验(4)-Notification控件
今天的主题是Notification,这是Windows CE所特有的一种消息通知方式。消息支持文本和HTML形式,当有消息出现的时候会出现一个气泡式的窗体。在以前的VS.NET 2003里,发送Notification,的主要方式是调用API或者使用OpenNETCF中的相关类。而.NET CF 2.0目前支持了托管方式的Notification。
我们首先在工具栏里找到Notification控件,并将它拖到窗体中,该控件将显示到窗体下面,和菜单控件在一起。
private void button1_Click(object sender, EventArgs e)
{
StringBuilder HTMLString = new StringBuilder();
HTMLString.Append("<html><body>");
HTMLString.Append("Submit data?");
HTMLString.Append("<form method=GET action=notify>");
HTMLString.Append("<input type=submit>");
HTMLString.Append("<input type=button name=cmd:2 value=Cancel>");
HTMLString.Append("</body></h
补充:Web开发 , ASP.Net ,