You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
1.0 KiB
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using POSV.Component;
namespace POSV.Tabs
{
[ToolboxItem(true)]
public partial class SettingMenuItem : AbstractTabItem
{
public SettingMenuItem()
{
InitializeComponent();
this.BackColor = Color.Transparent;
}
private void OnSettingActionTouchClick(object sender , EventArgs e)
{
var current = sender as TouchLabelExt;
var action = SettingAction.None;
Enum.TryParse<SettingAction>(current.Tag != null ? current.Tag.ToString() : "None" , out action);
switch (action)
{
case SettingAction.:
{
}
break;
}
}
}
public enum SettingAction
{
None = -1,
= 10,
}
}