示例#1
0
        public void Trigger(string html, int width)
        {
            if (screenshot != null)
            {
                return;
            }

            screenshot = new FormNotificationScreenshotable(Callback, owner, plugins, html, width);
            screenshot.Show();
            timeout.Start();

                        #if GEN_SCREENSHOT_FRAMES
            StartDebugger();
                        #endif

                        #if !NO_HIDE_SCREENSHOTS
            owner.IsWaiting = true;
                        #endif
        }
示例#2
0
 private void disposer_Tick(object sender, EventArgs e)
 {
     disposer.Stop();
     screenshot.Dispose();
     screenshot = null;
 }