1
私はこのようになりますクラスを持っている:UltraTreeでどのようにノードを並べ替えるのですか?
public class GeneralStatusInfo
{
public List<string> List_BLNumber { get; set; }
public List<POInfo> List_PONumbers { get; set; }
public List<string> List_Pickup { get; set; }
public List<string> List_Origin { get; set; }
public List<string> List_Destination { get; set; }
public List<string> List_NotifyName { get; set; }
public List<AppmntInformation> List_Appointments { get; set; }
}
私はこのようなデータバインドするとき:
List<GeneralStatusInfo> statusBind = new List<GeneralStatusInfo>();
statusBind.Add(status);
utGeneralStatusInfo.DataSource = statusBind;
SetupTree(status);
それは異なる順序で私の親ノードを置く:
Appointment
P/O Number
B/L Number
Origin
Pickup
Notify
Payment
Destination
を
ノードの並び順を変更して、クラス内に表示される順序と同じ順序で表示するにはどうすればよいですか?