通过C#进行中英文转换

通过C#进行中英文转换
通过C#进行中英文转换_第1张图片
通过C#进行中英文转换_第2张图片

  1. 编写相应语言的XML文件,添加xml文件
    ChineseSimplified.xml文件内容
<?xml version="1.0" encoding="GB2312" ?>
<Softimite Language="12">
	<Form>
		<Name>LoginForm</Name>
		<Controls>
			<Control name="LoginForm" text="登录"/>
			<Control name="accountLab" text="账户"/>
			<Control name="passwordLab" text="密码"/>
			<Control name="languageLab" text="语言"/>
			<Control name="loginBtn" text="登录"/>
			<Control name="passwordBtn" text="修改密码"/>
		</Controls>
	</Form>
 
	<Form>
		<Name>PasswordForm</Name>
		<Controls>
			<Control name="PasswordForm" text="修改密码"/>
			<Control name="accountLab" text="账户"/>
			<Control name="passwordLab" text="旧密码"/>
			<Control name="newpasswordLab" text="新密码"/>
			<Control name="modifyBtn" text="修改"/>
		</Controls>
	</Form>
</Softimite>

English.xml文件内容

<?xml version="1.0" encoding="utf-8" ?>
<Softimite Language="12">
	<Form>
		<Name>LoginForm</Name>
		<Controls>
			<Control name="LoginForm" text="Login"/>
			<Control name="accountLab" text="Account"/>
			<Control name="passwordLab" text="Password"

你可能感兴趣的:(c#)