关于winform中国际化问题
如何对winform中自己在代码中写的文字实现国际化,例如
this.fileListDataTable = new DataTable();
fileListDataTable.Columns.Add("是否检测", typeof(bool));
fileListDataTable.Columns.Add("文件类型", typeof(Image));
fileListDataTable.Columns.Add("文件名", typeof(string));
中我想将“是否检测”、“文件类型”、“文件名”也能国际化为英文,该如何去做呢,求大神指点,最好有源码!
------解决方案--------------------放入资源字符串,这里从中加载。
也可以在设计的时候添加好Column直接绑定属性。
------解决方案--------------------请参考:winform国际化