ValueLabel.cs 232 B

12345678910111213
  1. using System.Drawing;
  2. using System.Windows.Forms;
  3. namespace UAS_KanBan.CustomControl
  4. {
  5. public partial class ValueLabel : Label
  6. {
  7. public ValueLabel()
  8. {
  9. InitializeComponent();
  10. }
  11. }
  12. }