微软的Menu控件中,为什么ScrollUpImageUrl和ScrollDownImageUrl所指示滚动图片总是不显示?包括“帮助文档”中的示例程序也是!
关于“帮助文档”中Menu.ScrollDownImageUrl 属性的示例程序如下:
<%@ Page Language="C#" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Menu Example</title>
</head>
<body>
<form id="form1" runat="server">
<h3>Menu Example</h3>
<asp:menu id="NavigationMenu"
staticdisplaylevels="2"
staticsubmenuindent="10"
orientation="Vertical"
ScrollDownImageUrl="Images\ScrollDownImage.jpg"
ScrollDownText="Down"
ScrollUpImageUrl="Images\ScrollUpImage.jpg"
ScrollUpText="Up"
runat="server">
<dynamicmenustyle Height="50"/>
<items>
<asp:menuitem text="Home">
<asp:menuitem text="Category 1">
<asp:menuitem text="Item 1"/>
<asp:menuitem text="Item 2"/>
<asp:menuitem text="Item 3"/>
<asp:menuitem text="Item 4"/>
<asp:menuitem text="Item 5"/>
<asp:menuitem text="Item 6"/>
<asp:menuitem text="Item 7"/>
<asp:menuitem text="Item 8"/>
<asp:menuitem text="Item 9"/>
<asp:menuitem text="Item 10"/>
</asp:menuitem>
</asp:menuitem>
</items>
</asp:menu>
</form>
</body>
</html>
我对ScrollDownImageUrl的理解是:
当菜单项列表超过指定高度不能完全显示出来的时候,在菜单底部将会出现“ScrollDownImageUrl”所指的滚动图标,然后鼠标放上去,该菜单列表将会向下滚动。
反正我理解的效果其实就和VS工具中,调试断点的代码的时候对某个对象的查看那样。
不知道是我的理解有偏差,还是什么问题?
谢谢!
--------------------编程问答-------------------- ding!!!!!!!!!!!!!!!!!!!!!
补充:.NET技术 , ASP.NET