当前位置: 首页>>代码示例>>C#>>正文


C# UIPopupList.Clear方法代码示例

本文整理汇总了C#中UIPopupList.Clear方法的典型用法代码示例。如果您正苦于以下问题:C# UIPopupList.Clear方法的具体用法?C# UIPopupList.Clear怎么用?C# UIPopupList.Clear使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在UIPopupList的用法示例。


在下文中一共展示了UIPopupList.Clear方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: Start

	// Use this for initialization
	void Start () {
		popList = GetComponent<UIPopupList>();
		if(popList == null)
			return;
		
		popList.Clear();
		List<DataTable> tableList = ConstDataManager.Instance.ListTables();
		foreach(DataTable table in tableList)
		{
			popList.AddItem(table.Name);
		}
	}
开发者ID:ivanchan2,项目名称:SRW_Project,代码行数:13,代码来源:ConstDataTest.cs

示例2: Start

	private UISlider changVolume;       //调解音量

	
	void Start()
	{
		selectMusic = transform.FindChild("SelectMusic").GetComponent<UIPopupList>();
		selectMusic.Clear();
		AudioClip[] bgMusics = Resources.LoadAll<AudioClip>("BgMusic");
		for (int i = 0; i < bgMusics.Length; i++)
		{
			selectMusic.AddItem(bgMusics[i].name);
		}
		EventDelegate.Add(selectMusic.onChange, OnMusicChange);
		changVolume = transform.FindChild("VolumeSolider").GetComponent<UISlider>();
		EventDelegate.Add(changVolume.onChange, OnChangeVolume);
	}
开发者ID:AhrenLi,项目名称:TypeWrite,代码行数:16,代码来源:SetManager.cs

示例3: Start

	private UIToggle isContinue;		//是否继续上次游戏

	void Start()
	{
		nameInput = transform.FindChild("NameInput/Label").GetComponent<UILabel>();
		//下拉菜单
		selectPattern = transform.FindChild("SelcetStyle").GetComponent<UIPopupList>();
		selectPattern.Clear();
		string[] patterns = System.Enum.GetNames(typeof(GamePattern));
		for (int i = 0; i < patterns.Length; i++)
		{
			selectPattern.AddItem(patterns[i]);
		}
		//当下拉菜单值发生变化时,通知OnPatternChange方法
		EventDelegate.Add(selectPattern.onChange, OnPatternChange);
		//单选框
		isContinue = transform.FindChild("Continue").GetComponent<UIToggle>();
		//当单选框值发生变化时,通知OnIsContinue方法
		EventDelegate.Add(isContinue.onChange, OnIsContinue);
	}
开发者ID:AhrenLi,项目名称:TypeWrite,代码行数:20,代码来源:LoginManager.cs


注:本文中的UIPopupList.Clear方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。