using DPumpHydr.WinFrmUI.RLT.Child.Crown;
|
using DPumpHydr.WinFrmUI.RLT.Docking.Crown;
|
|
namespace DPumpHydr.WinFrmUI.Volute
|
{
|
public partial class LogListDockPanel : CrownToolWindow
|
{
|
|
|
public LogListDockPanel()
|
{
|
InitializeComponent();
|
this.DefaultDockArea = RLT.Enum.Crown.DockArea.Bottom;
|
this.DockText = "日志";
|
this.SerializationKey = "LogListDockPanel";
|
|
// Build dummy list data
|
//for (int i = 0; i < 10; i++)
|
//{
|
// CrownListItem item = new($"List item #{i}");
|
// lstConsole.Items.Add(item);
|
//}
|
}
|
|
|
}
|
}
|