public DbNotifyer(NotifyData data)
        {
            m_Data = data;

            m_tbNotify = new TaskbarIcon();
            m_tbNotify.Icon = Resources.Database;
            m_tbNotify.ToolTipText = data.Title;

            SLLogEvents.ShowBallonTipp += OnShowLogBallonTipp;
        }
 public void InitNotifyIcon(NotifyData notifyData)
 {
     SLNotify.NotifyIcon = new DbNotifyer.DbNotifyer(notifyData);
 }