Join the social network of Tech Nerds, increase skill rank, get work, manage projects...
 
Node is saved as draft in My Content >> Draft
  • Notification in Right-Bottom of windows form in WPF

    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 0
    • 196
    Comment on it

    Notification in Right-Bottom of windows form in WPF

    Please download the "Hardcodet.Wpf.TaskbarNotification.dll" and add reference in your WPF project

    Codes :

                System.Windows.Controls.ContextMenu _menu = new System.Windows.Controls.ContextMenu();
                        _menu.Items.Clear();
                        System.Windows.Controls.MenuItem item = new System.Windows.Controls.MenuItem();
                        item.Items.Clear();
                        item.Header = "Open";
                        item.Click += new RoutedEventHandler(item_Click);
                        _menu.Items.Add(item);
    
                        taskbarIcon1.ToolTipText="Application is running ...";
                        taskbarIcon1.ToolTip="Hello Tooltip Text";
                        taskbarIcon1.MenuActivation = Hardcodet.Wpf.TaskbarNotification.PopupActivationMode.All;
                        taskbarIcon1.PopupActivation = Hardcodet.Wpf.TaskbarNotification.PopupActivationMode.All;
                        taskbarIcon1.Icon = Properties.Resources.mypcoptomizer;
    
                        taskbarIcon1.ContextMenu = _menu;
                        Logic.IsNotify = 1;
                        taskbarIcon1.HideBalloonTip();
                        taskbarIcon1.CloseBalloon();
                        taskbarIcon1.ShowBalloonTip("Header Hello ", "Application is still running ...", Hardcodet.Wpf.TaskbarNotification.BalloonIcon.Info);
    
    Pop up alert in wpf application

 0 Comment(s)

Sign In
                           OR                           
                           OR                           
Register

Sign up using

                           OR                           
Forgot Password
Fill out the form below and instructions to reset your password will be emailed to you:
Reset Password
Fill out the form below and reset your password: