feat: 初始化NewLife Studio项目,完成基础框架与数据管理模块
何炳宏 authored at 2026-05-26 12:09:09
457.00 B
NewLife.Studio
using Avalonia.Controls;

namespace NewLife.Studio.App.Controls;

public partial class StatusBar : UserControl
{
    public StatusBar()
    {
        InitializeComponent();
    }

    public void SetConnection(string? text)
    {
        ConnectionText.Text = text ?? "";
    }

    public void SetModule(string? text)
    {
        ModuleText.Text = text ?? "";
    }

    public void SetTask(string? text)
    {
        TaskText.Text = text ?? "";
    }
}