簡體   English   中英

具有圖像並自動關閉的C#FORM

[英]C# FORM with image and auto close

我有一個問題,我制作了一個帶有背景img的新表格,所有我需要的東西以及它的工作方式都與我想要的一樣,但是我還需要在5或10秒后自動關閉它。

我整天都在Google上搜索……但是沒有一個很好的教程。 我使用Visual Studio 2013。

你們可以幫我嗎...我現在很絕望...自嘗試以來已經快10個小時了。 你是我最后的希望。 謝謝

this.close()沒有做到,否則我弄錯了,但我對此表示懷疑。 Application.Exit故障計時器給出錯誤...

//form
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 Cerum_HS
{
    public partial class CERUM_HS : Form
    {
        public CERUM_HS()
        {
            InitializeComponent();
            Rectangle r = Screen.PrimaryScreen.WorkingArea;
            this.StartPosition = FormStartPosition.Manual;
            this.Location = new Point(Screen.PrimaryScreen.WorkingArea.Width - this.Width, Screen.PrimaryScreen.WorkingArea.Height - this.Height);
        }
    }
}


//main.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Timers;
//using System.Windows.Forms;

namespace Cerum_HS
{
    static class Program
    {
        /// <summary>
        /// The main entry point for the application.
        /// </summary>


        private static System.Timers.Timer aTimer;

        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new CERUM_HS());

            aTimer = new System.Timers.Timer();
            aTimer.Interval = 10;

            aTimer = new System.Timers.Timer(10);

            aTimer.Elapsed += OnTimedEvent;

            aTimer.AutoReset = false;

            aTimer.Enabled = true;
        }

        private static void OnTimedEvent(Object source, System.Timers.ElapsedEventArgs e)
        {
            //Console.WriteLine("The Elapsed event was raised at {0}", e.SignalTime);
            Application.Exit();
            //this.close();
        }
    }
}

由於我的評論似乎有幫助,因此我認為我將其寫下來作為答案。

public partial class CERUM_HS : 
{
    // here is the timer for the automatic closing
    private static System.Timers.Timer aTimer;

    public CERUM_HS()
    {
        InitializeComponent();
        Rectangle r = Screen.PrimaryScreen.WorkingArea;
        this.StartPosition = FormStartPosition.Manual;
        this.Location = new Point(Screen.PrimaryScreen.WorkingArea.Width - this.Width, Screen.PrimaryScreen.WorkingArea.Height - this.Height);
    }

    private void Form_Load(object sender, System.EventArgs e)
    {
        // start here the timer when the form is loaded
        aTimer = new System.Timers.Timer();
        aTimer.Interval = 10;

        aTimer = new System.Timers.Timer(10);

        aTimer.Elapsed += OnTimedEvent;

        aTimer.AutoReset = false;

        aTimer.Enabled = true;
    }

    private static void OnTimedEvent(Object source, System.Timers.ElapsedEventArgs e)
    {
        // Close the Application when this event is fired
        Application.Exit();
    }

}

Bogdan請評論一下此實施最終是否對您有效。

我將在您的窗體上設置一個PictureBox和計時器(設置為5000毫秒),單擊Tick事件,然后使用以下代碼:

namespace Image
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
            // set picture box to image of interest
            // size and position form appropriately
        }

        private void timer1_Tick(object sender, EventArgs e)
        {
            timer1.Enabled = false;
            this.Close();
        }
    }
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM