mirror of
https://github.com/riegera2412/UVtools.git
synced 2026-07-08 17:42:31 +02:00
20 lines
402 B
C#
20 lines
402 B
C#
using System.ComponentModel;
|
|
using System.Windows.Forms;
|
|
|
|
namespace UVtools.GUI.Controls
|
|
{
|
|
public partial class CtrlDescriptionPanel : UserControl
|
|
{
|
|
public string Description
|
|
{
|
|
get => lbDescription.Text;
|
|
set => lbDescription.Text = value;
|
|
}
|
|
|
|
public CtrlDescriptionPanel()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
}
|
|
}
|