我正在使用以下方法签名的框架中工作
public ImageLinkButton AddToolBarButton(string commandName, string text, string toolTip, string imageUrl, string confirmMessage, bool defineID = false)
我发现我需要用一个额外的 bool 参数来重载它
public ImageLinkButton AddToolBarButton(string commandName, string text, string toolTip, string imageUrl, string confirmMessage, bool causesValidation, bool defineID = false)
但是,在使用中我看不到如何确保实际调用了哪个方法,因为调用
MyWhatsit.AddToolBarButton("cmdname", "text", "toolTip", "URL", "confirm", true);
可以调用任何一个(假设我直截了当)。
我很确定我做错了什么,但我看不出是什么!
谢谢
爱德华