37 lines
890 B
C#
37 lines
890 B
C#
|
|
using System;
|
|||
|
|
using System.Collections.Generic;
|
|||
|
|
using System.ComponentModel;
|
|||
|
|
using System.Drawing;
|
|||
|
|
using System.Data;
|
|||
|
|
using System.Linq;
|
|||
|
|
using System.Text;
|
|||
|
|
using System.Windows.Forms;
|
|||
|
|
|
|||
|
|
namespace 软件系统客户端模版.UIControls
|
|||
|
|
{
|
|||
|
|
public partial class RenderMain : UserControl
|
|||
|
|
{
|
|||
|
|
public RenderMain()
|
|||
|
|
{
|
|||
|
|
InitializeComponent();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
private void label1_Click(object sender, EventArgs e)
|
|||
|
|
{
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
|
|||
|
|
{
|
|||
|
|
// 中文
|
|||
|
|
CommonLibrary.UserLocalization.SettingLocalization("Chinese");
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
private void linkLabel2_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
|
|||
|
|
{
|
|||
|
|
// 英文
|
|||
|
|
CommonLibrary.UserLocalization.SettingLocalization("English");
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|