gpt4 book ai didi

c# - 读取另一页上的变量集

转载 作者:太空宇宙 更新时间:2023-11-03 11:30:07 25 4
gpt4 key购买 nike

我正在构建一个 Windows Phone 应用程序,我需要一个设置页面。我想出了如何设置设置,但现在我需要知道如何从主页读取它们。

因此,我需要从 MainPage.xaml.cs 检查 Settings.cs 上的 ExitAlert 是真还是假,但我不知道该怎么做。我敢肯定这很简单。

谢谢。

最佳答案

通常在 Windows 中,临时设置(对于特定实例)存储在“PhoneApplicationService.Current.State”中永久设置将存储在“System.IO.IsolatedStorage.IsolatedStorageSettings.ApplicationSettings”

根据您的查询

您可以将值存储在设置页面中,如下所示

if(PhoneApplicationService.Current.State.Contains("ExitAlert"))
PhoneApplicationService.Current.State["ExitAlert"] = value;
else
PhoneApplicationService.Current.State.Add("ExitAlert", value);

您可以按如下方式从主页访问该值

if(PhoneApplicationService.Current.State.Contains("ExitAlert"))
value = (bool)PhoneApplicationService.Current.State["ExitAlert"];

if(value == true)
Messagebox.Show("Exit alert is set");

希望它能解决您的问题。

关于c# - 读取另一页上的变量集,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8089758/

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