问题描述
朋友您好,
我在signUp页面的控件上使用工具提示...
现在我的客户问我.请在页面上显示一个按钮.
与我一起帮助/帮助.
如果用户单击帮助,则会在控件上显示工具提示
当他按下帮助
然后工具提示帮助下车.
下次我的用户进入其他屏幕时.
我需要记住最后一次登录时间.
他选择了哪个选项.
因为我也在其他页面上使用了工具提示.
如果我的用户是第一次选择帮助".
那么我需要记住,下一次我将为他提供帮助选项
直到他按下帮助键为止.
请向我保证正确的方向
问候,
Rana Rumeel
Friends Hi,
I am using tool tip on my signUp page''s controls...
now my client ask to me.that please show one button on the page.
with me help on/ help off.
if user click on help on then it show the tool tip on controls
and when he press off help
then the tool tip help get off.
and next time when my user come on other screen.
i need to get remember that at last login time.
which option he choosed.
because i am using tool tip on my other pages also.
if my user first time select help on.
then i need to get remember and for next time i on the help option for him
till that time when he press help off.
please guaid me in right direction
regards,
Rana Rumeel
推荐答案
if(ShowFlag)
{
SetTootips();
}
您的SetTooltips应该是这样的
Your SetTooltips should be like this
private void SetTootips()
{
TextBox1.ToolTip = "Blablabla";
TextBox2.ToolTip = "Blablabla";
TextBox3.ToolTip = "Blablabla";
Button1.ToolTip = "Blablabla";
Button2.ToolTip = "Blablabla";
Image1.ToolTip = "Blablabla";
}
作为UI的建议,您可以在母版页上使用链接按钮,以便用户可以随时打开和关闭此选项.
As an UI suggestion, you can use a link button on your master page, so that user can set this option on and off at any time.
这篇关于我如何使用按钮的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!