本文介绍了如何覆盖c#.net中控件的内置方法的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,
我正在使用c#.net Windows应用程序,并且在一项要求中,我需要更改内置c#.net控件的方法的参数,关于这一点,任何人都可以帮助我...
请参阅自定义工具提示下面的CodeLine-1,其方法名为"show",此处将仅使用控件作为显示工具提示的引用,我需要更改该方法,例如codeLine-2

CodeLine-1:CustomTooltip.Show(SomeText,control1);
codeLine-2:CustomTooltip.Show(SomeText,SomeText);
任何人都可以帮助我达到目标

我不希望与我需要的任何控件相关的工具提示与某些文本相关.

HI TO ALL,
i am working with c#.net windows application and in one of requrement i need to chage the parameters of a method of the inbuild c#.net control can any one pls help me regarding this...
see the CodeLine-1 below the custom tooltip have method called "show" here it will take only controls as the references to show the tooltip i need to change the method some thing like codeLine-2

CodeLine-1:CustomTooltip.Show(SomeText, control1);
codeLine-2:CustomTooltip.Show(SomeText, SomeText);
any one pls help me how achive it

I dont want the tooltip associated with any control i need it is associated with some text

推荐答案



这篇关于如何覆盖c#.net中控件的内置方法的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-11 22:52