ResourceHelper.cs
上传用户:szlfmled
上传日期:2020-11-22
资源大小:978k
文件大小:1k
- using System;
- using System.Drawing;
- using System.Reflection;
- using System.Resources;
- using System.Windows.Forms;
- namespace WeifenLuo.WinFormsUI.Docking
- {
- internal static class ResourceHelper
- {
- private static ResourceManager _resourceManager = null;
- private static ResourceManager ResourceManager
- {
- get
- {
- if (_resourceManager == null)
- _resourceManager = new ResourceManager("WeifenLuo.WinFormsUI.Docking.Strings", typeof(ResourceHelper).Assembly);
- return _resourceManager;
- }
- }
- public static string GetString(string name)
- {
- return ResourceManager.GetString(name);
- }
- }
- }