System.Windows.Forms.ToolStripManager.LoadSettings C# (CSharp) Method

LoadSettings() private method

private LoadSettings ( Form targetForm, string key ) : void
targetForm Form
key string
return void
		public static void LoadSettings (Form targetForm, string key)
		{
			if (targetForm == null)
				throw new ArgumentNullException ("targetForm");
			if (string.IsNullOrEmpty (key))
				throw new ArgumentNullException ("key");
		}
		

Same methods

ToolStripManager::LoadSettings ( Form targetForm ) : void