FrmSplash.cs 898 字节
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Drawing.Drawing2D;
using System.Collections;

namespace App
{
    public partial class FrmSplash : FrmBase
    {
        

        public FrmSplash()
        {
            InitializeComponent();
            GetCurrLanguage();
            this.userControl11.Start();
        }

        public int ShowTextId
        {
            set
            {
                label1.Text = getMsg("msg-" + value.ToString());
            }
        }

        public int CountDown
        {
            set
            {
                label2.Text = value.ToString()+"s";
            }
        }

        private void FrmSplash_Load(object sender, EventArgs e)
        {
            this.ControlBox = false;
        }
        
    }
}