GtaVUsersInfo/Controls/CarPanelMenuStrip.cs

28 lines
579 B
C#
Raw Permalink Normal View History

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace GtaVUsersInfo.Controls
{
public partial class CarPanelMenuStrip : UserControl
{
public ContextMenuStrip Menu
{
get { return myMenuStrip; }
}
public CarPanelMenuStrip(EventHandler add)
{
InitializeComponent();
addNewToolStripMenuItem.Click += add;
}
}
}