我正在开发一个WPF应用程序,我正在使用不同类型的菜单栏...
Home/Account/Profile"
这些不仅仅是标签,我想要的是,当我点击上面导航栏中的特定项目时,我应该重定向到该页面(如网页中的导航栏)。
我没有使用XAML
来执行此操作,只使用纯粹的c#
public class Breadcrumbs : StackPanel
{
Label lab;
public Breadcrumbs()
{
Width = 700;
Height = 30;
Background = Brushes.White;
this.Orientation = Orientation.Horizontal;
}
static int i = 0;
public void addBreadcrumbs(List<string> newlist)
{
string[] newLabel = newlist.ToArray();
for(int j=0;j<newLabel.Length;j++)
{
lab = new Label();
lab.FontSize = 15;
if (!(newLabel.Length - 1 == i))
{
lab.Content = newLabel[j] + " /";
}
else
{
lab.Content = newLabel[j];
}
if (newLabel.Length - 1 == i)
{
lab.Foreground = new SolidColorBrush(Color.FromRgb(55,55,55));
}
else
{
lab.Foreground = new SolidColorBrush(Color.FromRgb(66,139,202));
}
this.Children.Add(lab);
Console.WriteLine(lab.Content);
i++;
}//for loop end here
}//addBreadcrums function end here
}//class breadcrums end here
答案 0 :(得分:2)
WPF中内置了痕迹导航功能,无需自行滚动:
http://msdn.microsoft.com/en-us/library/ms750478(v=vs.110).aspx