Hallettim arkadaşlar, yanlış araca bakıyormuşum. NotifyIcon eklemem yetiyormuş
    Private Sub NotifyIcon1_MouseDoubleClick(ByVal sender As System.Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles NotifyIcon1.MouseDoubleClick
        Me.Show()
    End Sub
    Private Sub Form1_Move(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Move
        If Me.WindowState = FormWindowState.Minimized Then
            Me.Hide()
            NotifyIcon1.ShowBalloonTip(3000, "Başlık", "Deneme Yazısı ", ToolTipIcon.Info)
        End If
    End Sub