博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

Fuck

Posted on 2007-03-24 15:25  BugSlayer  阅读(169)  评论(0)    收藏  举报
微软的这个控件notifyIcon
Text 属性的长度限制为64.
靠,怎么连个说明都没有
害得老子找了半天的错误

public void set_Text(string value)
{
if (value == null)
{
value = "";
}
if ((value != null) && !value.Equals(this.text))
{
if ((value != null) && (value.Length > 0x3f))
{
throw new ArgumentException(SR.GetString("TrayIcon_TextTooLong"));
}
this.text = value;
if (this.added)
{
this.UpdateIcon(true);
}
}
}