Nexus.Client.ModManagement.Scripting.UIUtil.Select C# (CSharp) 메소드

Select() 공개 메소드

Displays a selection form to the user.
public Select ( IList p_lstOptions, string p_strTitle, bool p_booSelectMany ) : string[]
p_lstOptions IList The options from which to select.
p_strTitle string The title of the selection form.
p_booSelectMany bool Whether more than one items can be selected.
리턴 string[]
		public string[] Select(IList<SelectOption> p_lstOptions, string p_strTitle, bool p_booSelectMany)
		{
			string[] strResult = null;
			SyncContext.Send(x => strResult = ShowSelect(p_lstOptions, p_strTitle, p_booSelectMany), null);
			return strResult;
		}