FrmMsg.cs
738 Bytes
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace SunVoteARSPPT
{
public partial class FrmMsg : Form
{
public FrmMsg()
{
InitializeComponent();
}
public void ShowMsg(string msg)
{
//FrmMsg frm = new FrmMsg();
lblMsg.Text = msg;
//frm.ShowDialog();
}
private void FrmMsg_Load(object sender, EventArgs e)
{
btnOK.Text = GlobalInfo.SysLanguage.LPT.ReadString("FrmSystemSet", "btnOK", "OK");
this.Text = GlobalInfo.GetAppTitle();
}
}
}