0
我很想使用這個,但不能爲我的生活弄清楚如何將項目綁定到它。Prism和AnimatedTabControl
我想看到一個簡單的例子,像
Shell.xaml
<Controls:AnimatedTabControl
x:Name="TestTab"
SelectedIndex="0"
VerticalAlignment="Stretch"
cal:RegionManager.RegionName="{x:Static inf:RegionNames.TestRegion}"
Grid.Row="1"
/>
-
using Microsoft.Practices.Composite.Modularity;
using Microsoft.Practices.Composite.Regions;
namespace HelloWorldModule
{
public class HelloWorldModule : IModule
{
private readonly IRegionManager regionManager;
public HelloWorldModule(IRegionManager regionManager)
{
this.regionManager = regionManager;
}
public void Initialize()
{
regionManager.RegisterViewWithRegion(
RegionNames.SecondaryRegion, typeof(Views.HelloWorldView));
regionManager.RegisterViewWithRegion(
RegionNames.TestRegion, typeof(Views.TestTab));
}
}
}
需要什麼樣的代碼有多個選項卡在TestRegion
的動態變化。 我似乎無法弄清楚如何將任何東西綁定到AnimatedTabControl或甚至常規選項卡控件...