UWP 在我的透视视图中添加窗格
UWP Add pane in my pivot view
我从 UWP 开发开始,我尝试重现我在一个商业应用程序上看到的东西。
我的商业应用模型管理费用
在空白矩形下,我有一个列表视图,我自己付费。
我有我认为“费用报告”和“不一致”的数据透视表
但是如果我点击“新建费用报告”,我会看到一个新窗格
我的可视化工具箱中的这个窗格是什么?我必须在我的 XAML 中的什么地方添加此窗格?在我的枢轴应答器之前 ?
窗格是 SettingsPane witch isn't a standard control or style and it shows a SettingsFlyout。
Windows 8.1有一个SettingsFlyout which has built-in functionality to embed in a SettingsPane. But since Windows 10, there doesn't have the SettingsPane. Instead of using a SettingsPane, integrate settings options into the app experience is recommended in UWP. For more info, see Guidelines for app settings.
有关使用 SettingsPane 的更多信息和详细步骤,请参阅快速入门:Add app settings, Quickstart: Add app help and the App settings sample。
我从 UWP 开发开始,我尝试重现我在一个商业应用程序上看到的东西。 我的商业应用模型管理费用
在空白矩形下,我有一个列表视图,我自己付费。 我有我认为“费用报告”和“不一致”的数据透视表
但是如果我点击“新建费用报告”,我会看到一个新窗格
我的可视化工具箱中的这个窗格是什么?我必须在我的 XAML 中的什么地方添加此窗格?在我的枢轴应答器之前 ?
窗格是 SettingsPane witch isn't a standard control or style and it shows a SettingsFlyout。
Windows 8.1有一个SettingsFlyout which has built-in functionality to embed in a SettingsPane. But since Windows 10, there doesn't have the SettingsPane. Instead of using a SettingsPane, integrate settings options into the app experience is recommended in UWP. For more info, see Guidelines for app settings.
有关使用 SettingsPane 的更多信息和详细步骤,请参阅快速入门:Add app settings, Quickstart: Add app help and the App settings sample。