本文介绍了IExtenderProvider不能与ToolStripMenuItem一起使用?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试为每个ToolStripMenuItem扩展一个属性,但这似乎不起作用。





I'm trying to extend a property for every ToolStripMenuItem but that doesnt seems to be working.


bool IExtenderProvider.CanExtend(object extendee)
{
    return extendee is ToolStripMenuItem;
}





如果我将其更改为 Control 它适用于控件但不适用于 ToolSripItem



我正在使用VS 2005,是一个问题?



if I change it to Control it works good for Controls but not with ToolSripItem.

I'm using VS 2005, is that a problem ?

推荐答案

[ProvidePropertyAttribute("Property", typeof(Component))]


这篇关于IExtenderProvider不能与ToolStripMenuItem一起使用?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-02 04:38