我一直在尝试将单个 WP7 应用程序页面分成两个单独的页面,以便我可以将功能保留在一个页面中,而将视图保留在另一个页面中。基本上,我正在创建一个选项卡式网络浏览器,其中我有不同的选项卡,可以根据用户请求查看,并且只有当前单击的选项卡是视图中显示的选项卡。到目前为止,我有一个解决方案,它可以在一个页面中工作,但我想将它分成一个 TabsPage(它将控制选项卡实例)和一个 MainPage(它将向用户呈现当前选择的选项卡以供显示)。我不确定如何正确分隔这两个页面,以便我可以完成此功能。我所拥有的如下(到目前为止有效)
主页.xaml
<Grid x:Name="LayoutRoot" Background="Transparent">
<Grid.RowDefinitions>
<RowDefinition Height="Auto"/>
<RowDefinition Height="*"/>
</Grid.RowDefinitions>
<TextBox x:Name="UrlTextBox" KeyDown="UrlTextBox_KeyDown" InputScope="url"/>
<Grid x:Name="BrowserHost" Grid.Row="1" />
<!--<my:FullWebBrowser Name="TheBrowser" Grid.Row="1"/>-->
</Grid>
<phone:PhoneApplicationPage.ApplicationBar>
<shell:ApplicationBar>
<shell:ApplicationBarIconButton x:Name="Tabs" IconUri="/Images/appbar.tab.rest.png" Text="tabs" Click="TabsPage_Click"/>
<shell:ApplicationBarIconButton IconUri="/Images/appbar.next.rest.png" IsEnabled="True" Text="forward" x:Name="ForwardBtn" Click="ForwardBtn_Click"/>
<shell:ApplicationBar.MenuItems>
<shell:ApplicationBarMenuItem Text="1" Click="TabMenuItem_Click" />
<shell:ApplicationBarMenuItem Text="2" Click="TabMenuItem_Click" />
<shell:ApplicationBarMenuItem Text="3" Click="TabMenuItem_Click" />
<shell:ApplicationBarMenuItem Text="4" Click="TabMenuItem_Click" />
</shell:ApplicationBar.MenuItems>
</shell:ApplicationBar>
</phone:PhoneApplicationPage.ApplicationBar>
MainPage.xaml.cs
private const int NumTabs = 4;
private int currentIndex;
private string[] urls = new string[NumTabs];
////private WebBrowser[] browsers = new WebBrowser[NumTabs];
private FullWebBrowser[] browsers = new FullWebBrowser[NumTabs];
// Constructor
public MainPage()
{
InitializeComponent();
ShowTab(0);
}
//protected override void OnNavigatedTo(NavigationEventArgs e)
//{
// base.OnNavigatedTo(e);
//}
private void ShowTab(int index)
{
this.currentIndex = index;
UrlTextBox.Text = this.urls[this.currentIndex] ?? "";
if (this.browsers[this.currentIndex] == null)
{
//WebBrowser browser = new WebBrowser();
FullWebBrowser browser = new FullWebBrowser();
this.browsers[this.currentIndex] = browser;
BrowserHost.Children.Add(browser);
}
for (int i = 0; i < NumTabs; i++)
{
if (this.browsers[i] != null)
{
this.browsers[i].Visibility = i == this.currentIndex ? Visibility.Visible : Visibility.Collapsed;
}
}
}
private void UrlTextBox_KeyDown(object sender, KeyEventArgs e)
{
if (e.Key == Key.Enter)
{
Uri url;
//string _url;
if (Uri.TryCreate(UrlTextBox.Text, UriKind.Absolute, out url))
{
this.urls[this.currentIndex] = UrlTextBox.Text;
//_url = url.ToString();
string _url = url.ToString();
//this.browsers[this.currentIndex].Navigate(url);
this.browsers[this.currentIndex].Navigate(_url);
}
else
MessageBox.Show("Invalid url");
}
}
private void TabMenuItem_Click(object sender, EventArgs e)
{
int index = Int32.Parse(((ApplicationBarMenuItem)sender).Text) - 1;
ShowTab(index);
}
//**********************************************************************
private void TabsPage_Click(object sender, EventArgs e)
{
this.NavigationService.Navigate(new Uri("/TabsPage.xaml", UriKind.Relative));
}
注意:我正在使用一个名为 TheWebBrowser 的网络浏览器控件。任何有关如何正确地将 MainPage 分隔为 TabsPage 的帮助将不胜感激!我已经为此工作了一段时间,似乎无法在页面之间正确传递数据(即搜索栏和要在 MainPage 上查看的当前 webbrowser 实例)。