私のアプリケーションでは、実行時にアプリケーション バーを追加したいと考えています。アプリケーション バー名と画像 URI を含むリストがあります。リストに従ってアプリケーション バーを追加する必要があります。有効な値の範囲」。これに対する解決策を教えてもらえますか? 以下は私のコードです。
public void createObjectsForApplicationbar(List<AppBarDetails> appbarList)
{
int i = 0;
foreach (Others menus in appbarList)
{
UpdateAppbarButton(i, menus.menu_image, menus.name, true, ApplicationBarIconButton_Click);
i++;
}
ShowButtons(menuNames1);
}
private void UpdateAppbarButton(int index, string uriString, string text, bool visibility, EventHandler handler)
{
ApplicationBarIconButton button1 = null;
this.ApplicationBar = new ApplicationBar();
this.ApplicationBar.IsVisible = true;
this.ApplicationBar.Opacity = 1;
this.ApplicationBar.IsMenuEnabled = true;
if (this.ApplicationBar.Buttons.Count > index)
{
button1 = this.ApplicationBar.Buttons[index] as ApplicationBarIconButton;
}
if (button1 != null)
{
{
this.ApplicationBar.Buttons.Remove(button1);
}
}
if (visibility == true)
{
button1 = new ApplicationBarIconButton(new Uri(uriString, UriKind.RelativeOrAbsolute));
button1.Text = text;
button1.Click += handler;
this.ApplicationBar.Buttons.Insert(index, button1);// here i got the exception "Specified argument was out of the range of valid values when the value of i=1"
}
}