나는 C1Editor에 대한 도구 모음 단추를 만드는 클래스가 있으며 명령이 빌드되어 있기 때문에 잘 작동합니다. 이 클래스를 사용하여 툴팁 버튼을 만드는 약 다섯 개의 폼이 있습니다. 맞춤 검색 버튼을 추가하고 있는데 클릭 이벤트가 필요합니다. 여기는 내가 잃어버린 부분입니다. 나는 네 도움이 필요해. 클래스 코드는 다음과 같습니다 :프로그래밍 방식으로 도구 상자 단추를 추가하고 클릭 이벤트를 첨부하십시오.
나는 다음과 같은 비트 제거하면public class AlrFrontEndToolStrip : C1EditorToolStripBase
{
protected override void OnInitialize()
{
base.OnInitialize();
AddButton(CommandButton.Copy);
AddButton(CommandButton.Paste);
Items.Add(new ToolStripSeparator());
AddButton(CommandButton.SelectAll);
AddButton(CommandButton.Find);
Items.Add(new ToolStripSeparator());
AddButton(CommandButton.Print);
Items.Add(new ToolStripSeparator());
Items.Add(new ToolStripButton().Text = "View Judgment", Properties.Resources.Find_VS, onClick: EventHandler.CreateDelegate("Push");
}
}
: '온 클릭 : EventHandler.CreateDelegate ("밀어")', 그것은 완벽하게 작동합니다. 그렇다면 어떻게 다양한 형태로 버튼을 클릭 할 수있게 할 수 있으며 각각은 자신의 클릭을 구현할 수 있습니다.
헤이 @ 바인인, 너를 위해이 일을 했니? –