lu
2025-04-03 9e861a3ab67506b8498a79575b97ffd6390c3d61
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
using DevExpress.Internal.WinApi;
using DevExpress.XtraBars.ToastNotifications;
using DevExpress.XtraEditors;
using DevExpress.XtraTreeList;
using Gs.DevApp.Entity;
using Gs.DevApp.ToolBox;
using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
 
namespace Gs.DevApp
{
    public partial class XtraForm1 : DevExpress.XtraEditors.XtraForm
    {
        public XtraForm1()
        {
            InitializeComponent();
          
        }
 
        private void simpleButton1_Click(object sender, EventArgs e)
        {
            //toastNotificationsManager1 = new ToastNotificationsManager();
            //VanishingMessage vm = new VanishingMessage(System.Drawing.Color.OrangeRed,  "操作成春树暮云顶戴槈", 1);
            //vm.Show();
 
            VanishingMessage vm = new VanishingMessage(System.Drawing.Color.DodgerBlue, "操作成春树暮云顶戴槈", 1);
            vm.Show();
            
        }
    }
}