27 lines
712 B
C#
27 lines
712 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Drawing;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using System.Windows.Forms;
|
|
|
|
namespace AppLauncher.Windows.Forms
|
|
{
|
|
public partial class TilePanel : AUserControl
|
|
{
|
|
public TilePanel() : base()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
[Category("Appearance"), Browsable(true)]
|
|
public string TitleText { get => label1.Text; set => label1.Text = value; }
|
|
|
|
[Category("Appearance"), Browsable(true)]
|
|
public Image IconImage { get => pictureBox1.BackgroundImage; set => pictureBox1.BackgroundImage = value; }
|
|
|
|
}
|
|
} |