🙂 İNSANLARIN EN HAYIRLISI INSANLARA FAYDALI OLANDIR 🙂

Ramazan HABER / C# RMOS / toastNotificationsManager1 kullanımı

1-) C# RMOS - toastNotificationsManager1 kullanımı

kaynak :
https://documentation.devexpress.com/WindowsForms/17020/Controls-and-Libraries/Messages-Notifications-and-Dialogs/Toast-Notification-Manager

 



 

ÇALIŞTIRMAK İÇİN :

 

 private void button1_Click(object sender, EventArgs e)

        {

 

            toastNotificationsManager1.ShowNotification(toastNotificationsManager1.Notifications[0]);

        }

 

 

 public static void toastMesaj(string icerik)

        {

            Program.main.toastNotificationsManager1.Notifications[0].Header = "RMOS ACENTEX";

            Program.main.toastNotificationsManager1.Notifications[0].Body = icerik;

            Program.main.toastNotificationsManager1.ShowNotification(Program.main.toastNotificationsManager1.Notifications[0]);

        }

 

 

 

public static void loadingBasla()

        {

            Cursor.Current = Cursors.WaitCursor;

        }

 

        public static void loadingKapat()

        {

            Cursor.Current = Cursors.Default;

        }

 

 2021 Ocak 18 Pazartesi
 596