码迷,mamicode.com
首页 > 其他好文 > 详细

02对话框显示一会自动消失

时间:2020-03-18 09:15:05      阅读:61      评论:0      收藏:0      [点我收藏+]

标签:component   pre   http   class   tar   消失   cli   rgs   ring   

01 添加引用

 [DllImport("user32.dll")]
        public static extern int MessageBoxTimeoutA(IntPtr hWnd, string msg, string Caps, int type, int Id, int time);   //引用DLL

02 调用代码

 MessageBoxTimeoutA((IntPtr)0, "3秒后自动关闭", "消息框", 64, 0, 2000);    // 直接调用  3秒后自动关闭 

03 typede 类型值

技术图片

 

 04 返回值

技术图片

 05 现在的问题是 如何倒计时?(以后再写)

06实际案例

 public partial class MainWindow : Window
    {
        [DllImport("user32.dll")]
        public static extern int MessageBoxTimeoutA(IntPtr hWnd, string msg, string Caps, int type, int Id, int time);   //引用DLL
        public MainWindow()
        {
            InitializeComponent();
        }

        private void Button_Click(object sender, RoutedEventArgs e)
        {
            MessageBoxTimeoutA((IntPtr)0, "3秒后自动关闭", "消息框", 64, 0, 2000);    // 直接调用  3秒后自动关闭 

        }
    }

 

02对话框显示一会自动消失

标签:component   pre   http   class   tar   消失   cli   rgs   ring   

原文地址:https://www.cnblogs.com/Record-experience/p/12515221.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!