删除Windows应用商店应用中右上角的设置图标

时间:2016-07-14 05:42:05

标签: c# xaml windows-store-apps winrt-xaml windows-store

我正在使用Windows 8.1 metro应用,此应用包含应用菜单右上方带有标签的settingsshare图标。任何人都可以帮助我们隐藏应用中的settingsshare图标。

Screenshot

1 个答案:

答案 0 :(得分:0)

按钮显示的唯一方法是因为您已注册设置超级按钮。

您应用的初始代码中的某个地方(例如在app.xaml.cs或您的主窗口中)是这样的:

SettingsPane settingsPane = SettingsPane.GetForCurrentView();

如果您不想要魅力,可以删除此代码。

有关如何实现设置魅力的更具体示例,请访问:http://mariusbancila.ro/blog/2013/11/13/working-with-the-settings-charm-for-windows-8-1-store-applications/