如何读取.resx 中的内容
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("Icon1")));
form1为窗体类名...
如何读取.resx 中的内容
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("Icon1")));
form1为窗体类名...
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。