private void AppendNotify(string msg) { var item = NotifyItem.New(msg); item.Width = pnHistory.Width - 40; AppendItem(item); }
public static NotifyItem New(string msg) { var item = new NotifyItem { lbText = { Text = msg } }; return(item); }