gpt4 book ai didi

xaml - 使用 c# 创建菜单弹出

转载 作者:行者123 更新时间:2023-12-01 06:47:42 25 4
gpt4 key购买 nike

我想使用 C# 创建菜单弹出。我试过这个

List<string> l = new List<string>();
l.Add("Rotate");
l.Add("Scale");
l.Add("Bring to Front");
l.Add("Send to Back");
MenuFlyout m = new MenuFlyout();
MenuFlyoutItem mn = l;
m.Items.Add(mn);

报错,怎么办?

最佳答案

此代码有效:

MenuFlyout m = new MenuFlyout();
MenuFlyoutItem mn = new MenuFlyoutItem();
mn.Text = "Item 1";
m.Items.Add(mn);
m.ShowAt((FrameworkElement)sender);

关于xaml - 使用 c# 创建菜单弹出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23839339/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com