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.
28 lines
671 B
C#
28 lines
671 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Diagnostics;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Windows.Forms;
|
|
|
|
namespace Mesnac.Controls.Default
|
|
{
|
|
public partial class ToolStripPanel : ToolStripDropDown
|
|
{
|
|
public ToolStripPanel()
|
|
{
|
|
InitializeComponent();
|
|
//Items.Add(mcsButton);
|
|
mcsButton.Click += new EventHandler(mcsButton_Click);
|
|
}
|
|
|
|
void mcsButton_Click(object sender, EventArgs e)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
private MCToolStripButton mcsButton = new MCToolStripButton();
|
|
}
|
|
}
|