gpt4 book ai didi

c# - 将参数或参数传递给 Uwp 中的后台任务

转载 作者:太空狗 更新时间:2023-10-29 22:30:03 26 4
gpt4 key购买 nike

我正在创建一个 uwp 应用程序,我想在其中从用户的文本框中获取一些数据,然后将其传递给后台任务。但是,当我尝试将项目引用添加到后台任务时,出现循环引用错误。那么有什么方法可以传递参数,可能是 run 函数的重载或其他任何东西。提前致谢。

最佳答案

Romasz 已经完美地解释了它,但在您的情况下,您可以通过执行以下步骤从文本框中获取用户数据:

1.在 MainPage.xaml.cs(或您的 xaml 页面)中声明它

var localSettings = Windows.Storage.ApplicationData.Current.LocalSettings;
localSettings.Values["user"] = User.Text;

2.现在使用这些获取BackgroundTask.cs中的数据

var localSettings = Windows.Storage.ApplicationData.Current.LocalSettings;
string user = localSettings.Values["user"].ToString();

这里变量 user 有你想要从主页获得的 texbox 数据。

注意:我假设您已将文本框命名为“User”

关于c# - 将参数或参数传递给 Uwp 中的后台任务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40523558/

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