目前我获得“属性”项目“没有可访问的setter”。我怎么能修改这个控件以允许我将一个集合绑定到它,并且可能只是将集合中对象的属性设置为项目的text属性?
<AppBarButton x:Name="Button" Icon="Add" Label="stuff">
<AppBarButton.Flyout>
<MenuFlyout>
<MenuFlyoutItem Text="b1" ></MenuFlyoutItem>
<MenuFlyoutItem Text="b2" ></MenuFlyoutItem>
<MenuFlyoutItem Text="b3" ></MenuFlyoutItem>
<MenuFlyoutItem Text="b4" ></MenuFlyoutItem>
<MenuFlyoutItem Text="b5" ></MenuFlyoutItem>
<MenuFlyoutSubItem x:Name="bb1" Items="{Binding MyList}" />
</MenuFlyout>
</AppBarButton.Flyout>
</AppBarButton>
答案 0 :(得分:2)
你不能这样做。如果您查看at documentation,您会看到 Items 只有一个getter,因此无法为其设置集合。您可以获取集合引用,然后例如添加项目,但似乎这一点有效,直到显示弹出按钮。之后没有应用任何更改(虽然我现在没有太多时间玩它)。这是一些代码,我尝试了附加属性的东西:
<StackPanel Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<Button Content="click">
<Button.Flyout>
<MenuFlyout>
<MenuFlyoutItem Text="b1"/>
<MenuFlyoutItem Text="b2"/>
<MenuFlyoutSubItem Name="mysub" local:MenuExtension.MyItems="{Binding Options}" Text="Choosable items"/>
</MenuFlyout>
</Button.Flyout>
</Button>
<Button Content="modify" Click="Button_Click"/>
</StackPanel>
public static class MenuExtension
{
public static List<MenuFlyoutItem> GetMyItems(DependencyObject obj)
{ return (List<MenuFlyoutItem>)obj.GetValue(MyItemsProperty); }
public static void SetMyItems(DependencyObject obj, List<MenuFlyoutItem> value)
{ obj.SetValue(MyItemsProperty, value); }
public static readonly DependencyProperty MyItemsProperty =
DependencyProperty.Register("MyItems", typeof(List<MenuFlyoutItem>), typeof(MenuExtension),
new PropertyMetadata(new List<MenuFlyoutItem>(), (sender, e) =>
{
Debug.WriteLine("Filling collection");
var menu = sender as MenuFlyoutSubItem;
menu.Items.Clear();
foreach (var item in e.NewValue as List<MenuFlyoutItem>) menu.Items.Add(item);
}));
}
public sealed partial class MainPage : Page,INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
public void RaiseProperty(string name) => PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(name));
public List<MenuFlyoutItem> Options { get; set; } = new List<MenuFlyoutItem>
{
new MenuFlyoutItem {Text="Start item" },
new MenuFlyoutItem {Text="Start item" },
new MenuFlyoutItem {Text="Start item" }
};
public MainPage()
{
this.InitializeComponent();
DataContext = this;
}
private void Button_Click(object sender, RoutedEventArgs e)
{
Options = new List<MenuFlyoutItem> { new MenuFlyoutItem { Text = "Modified" } };
RaiseProperty(nameof(Options));
// mysub.Items.Add(new MenuFlyoutItem { Text = "modified" }); // even this cannot be done
}
}
也许你可以玩一些模板,绑定按钮然后交换整个弹出窗口,或尝试不同的东西