Как ссылаться на панель приложений Windows Phone с другой страницы XAML?
У меня возникают проблемы при попытке ссылки на ApplicationBar, определенный на странице xaml (ViewFilesPage.xaml) в функции внутри класса FileTypes.cs, все из одного проекта.
Код для панели приложений из ViewFilesPage.xaml:
<phone:PhoneApplicationPage.ApplicationBar>
<shell:ApplicationBar IsVisible="True">
<shell:ApplicationBarIconButton IconUri="Graphics/ApplicationBar/NewFile.png" Click="NewFile" Text="New File" />
<shell:ApplicationBarIconButton IconUri="Graphics/ApplicationBar/NewFolder.png" Click="NewFolder" Text="New Folder" />
<shell:ApplicationBarIconButton IconUri="Graphics/ApplicationBar/Delete.png" Click="DeleteFile" Text="Delete File" />
<shell:ApplicationBarIconButton IconUri="Graphics/ApplicationBar/OpenFile.png" Click="OpenFile" Text="Open File" />
<shell:ApplicationBar.MenuItems>
<shell:ApplicationBarMenuItem x:Name="CutFileButton" IsEnabled="True" Click="CutFile" Text="Cut" />
<shell:ApplicationBarMenuItem x:Name="CopyFileButton" IsEnabled="True" Click="CopyFile" Text="Copy" />
<shell:ApplicationBarMenuItem x:Name="PasteFileButton" IsEnabled="True" Click="PasteFile" Text="Paste" />
</shell:ApplicationBar.MenuItems>
</shell:ApplicationBar>
</phone:PhoneApplicationPage.ApplicationBar>
Код функции C# в FileTypes.cs:
public static StackPanel ShowFiles(string Path)
{
string[] FileNames = isoStore.GetFileNames(Path + "*");
string[] DirectoryNames = isoStore.GetDirectoryNames(Path + "*");
int NumberOfFiles = FileNames.Length, NumberOfDirectories = DirectoryNames.Length, i;
StackPanel FilesStackPanel = new StackPanel();
FilesStackPanel.Orientation = System.Windows.Controls.Orientation.Vertical;
FilesStackPanel.Margin = FilesMenuMargin;
if (NumberOfFiles + NumberOfDirectories == 0)
{
TextBlock Message = new TextBlock();
if (ViewFilesPage.ApplicationBar.Buttons.Count > 2)
{
ViewFilesPage.ApplicationBar.Buttons.RemoveAt(2);
ViewFilesPage.ApplicationBar.Buttons.RemoveAt(2);
}
Message.Text = "Empty directory";
FilesStackPanel.Children.Add(Message);
}
else
{
for (i = 0; i < NumberOfDirectories; i++)
{
if (DirectoryNames[i] != "" && DirectoryNames[i] != "RecycleBin")
{
FilesStackPanel.Children.Add(WriteFileLines(Path, DirectoryNames[i], true));
FilesStackPanel.Children.Add(ShowFiles(Path + DirectoryNames[i] + "/"));
}
}
for (i = 0; i < NumberOfFiles; i++)
{
FilesStackPanel.Children.Add(WriteFileLines(Path, FileNames[i], false));
}
}
return FilesStackPanel;
}
И вместо ViewFilesPage.ApplicationBar мне нужна рабочая ссылка на ApplicationBar, чтобы я мог изменить количество кнопок.