本文介绍了如何在菜单项之间增加空间的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在动态创建Menuitems.
I am dynamically creating Menuitems.
<asp:Menu ID="menuNumeric" runat="server" CssClass="pagerFont" Orientation="Horizontal" OnMenuItemClick="menuNumeric_Click" Visible="true">
//code file
protected void grVwProductionOrderSearch_OnDataBound(object sender, EventArgs e)
{
Menu menuNumeric = (Menu)PagerPO.FindControl("menuNumeric");
menuNumeric.Items.Clear();
int startIndex = ((PagerCurrentIndex / PagerDisplayCount) * PagerDisplayCount) + 1;
int maxIndex = startIndex + PagerDisplayCount;
for (int i = startIndex; i < maxIndex; i++)
{
MenuItem item = new MenuItem();
item.Text = " " + i.ToString() + " ";
item.Value = i.ToString();
if (grVwProductionOrderSearch.PageIndex == i)
{
item.Selected = true;
PagerCurrentIndex = i;
}
menuNumeric.Items.Add(item);
}
}
菜单项之间没有空格
输出:12345678910
如何在菜单项之间添加空格
预期输出:1 2 3 4 5 6 7 8 9 10
谢谢
There is no space between menuitems
output: 12345678910
How to add space between menuitems
expected output: 1 2 3 4 5 6 7 8 9 10
Thank you
推荐答案
这篇关于如何在菜单项之间增加空间的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!