2025-01-07 11:23:10 +08:00
|
|
|
|
using AxibugEmuOnline.Client.ClientCore;
|
2024-12-11 21:21:27 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace AxibugEmuOnline.Client
|
|
|
|
|
{
|
|
|
|
|
public class BackgroundListMenuItem : VirtualSubMenuItem
|
|
|
|
|
{
|
2025-01-07 11:23:10 +08:00
|
|
|
|
protected override void GetVirtualListDatas(VirtualListDataHandle callback)
|
2024-12-11 21:21:27 +08:00
|
|
|
|
{
|
|
|
|
|
List<object> list = new List<object>()
|
|
|
|
|
{
|
|
|
|
|
App.settings.BgColor,
|
|
|
|
|
};
|
2025-01-07 11:23:10 +08:00
|
|
|
|
callback.Invoke(list, 0);
|
2024-12-11 21:21:27 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|