FineUI/FineUI.Examples/tabstrip/tabstrip.aspx.cs
三生石上 8e116609c6 v4.2.0
2015-05-19 14:45:47 +08:00

37 lines
856 B
C#

using System;
using System.Collections.Generic;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using System.Text;
namespace FineUI.Examples.tabstrip
{
public partial class tabstrip : PageBase
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
Alert.ShowInTop("你点击了位于第二个标签中的一个按钮!");
}
protected void Button3_Click(object sender, EventArgs e)
{
int nextIndex = TabStrip1.ActiveTabIndex + 1;
if (nextIndex >= TabStrip1.Tabs.Count)
{
nextIndex = 0;
}
TabStrip1.ActiveTabIndex = nextIndex;
}
}
}