개선
This commit is contained in:
@@ -132,6 +132,15 @@ namespace UVC.UI.Window
|
||||
treeList.AddItem<TreeListItem>(data);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 메인 트리에 항목들을 추가합니다.
|
||||
/// </summary>
|
||||
/// <param name="dataList">추가 할 데이터들</param>
|
||||
public void AddItems(System.Collections.Generic.IEnumerable<TreeListItemData> dataList)
|
||||
{
|
||||
treeList.AddItems<TreeListItem>(dataList);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 메인 트리에 항목을 특정 인덱스에 삽입합니다.
|
||||
/// </summary>
|
||||
@@ -175,6 +184,15 @@ namespace UVC.UI.Window
|
||||
treeList.SelectItem(name);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 이름으로 아이템 선택 해제
|
||||
/// </summary>
|
||||
/// <param name="name"></param>
|
||||
public void DeselectItem(string name)
|
||||
{
|
||||
treeList.DeselectItem(name);
|
||||
}
|
||||
|
||||
protected void StartLoadingAnimation()
|
||||
{
|
||||
if (loadingImage == null) return;
|
||||
|
||||
Reference in New Issue
Block a user