lu
2025-04-19 b084bd77d01a94c8f0a2d20c86a1f45ba7c8a23c
DevApp/Gs.DevApp/XtraForm1.cs
@@ -1,19 +1,5 @@
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 DevExpress.Utils;
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
{
@@ -22,7 +8,7 @@
        public XtraForm1()
        {
            InitializeComponent();
        }
        private void simpleButton1_Click(object sender, EventArgs e)
@@ -30,10 +16,18 @@
            //toastNotificationsManager1 = new ToastNotificationsManager();
            //VanishingMessage vm = new VanishingMessage(System.Drawing.Color.OrangeRed,  "操作成春树暮云顶戴槈");
            //vm.Show();
            ToolTipControllerShowEventArgs aa = new ToolTipControllerShowEventArgs();
            aa.AllowHtmlText = DefaultBoolean.True;
            aa.Title = "详情"; //HTML, 粗体
            aa.ToolTip = "你好爱你的克格勃"; //断行
            aa.ShowBeak = true;
            aa.Rounded = true; ////圆角
            aa.RoundRadius = 7; //圆角率
            aa.ToolTipType = ToolTipType.SuperTip; //超级样式,可多行或显示图标
            aa.ToolTipType = ToolTipType.Standard;//标准样式,可显示鸟嘴。
            aa.IconType = ToolTipIconType.Information; //消息图标
            aa.IconSize = ToolTipIconSize.Small; //大图标
            Toast vm = new Toast(System.Drawing.Color.DodgerBlue, "操作成春树暮云顶戴槈");
            vm.Show();
        }
    }
}