21 lines
395 B
C#
21 lines
395 B
C#
using System.Windows.Forms;
|
|
|
|
namespace OwnChar.App.Desktop.UI.MainTabs.Controls;
|
|
|
|
public partial class GroupListControl : UserControl
|
|
{
|
|
public GroupListControl()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
|
|
private void radMenuItem1_Click(object sender, System.EventArgs e)
|
|
{
|
|
|
|
}
|
|
|
|
// Auflistung der Gruppen
|
|
// Hinzufügen
|
|
// Löschen + Umbenennen (Wenn Admin/Mod)
|
|
}
|