简体   繁体   English

通用Windows平台UWP默认数据存储

[英]Universal Windows Platform UWP default data stored

I have problem with understand Windows Universal App LifeCycle 我在了解Windows Universal App LifeCycle时遇到问题

I want to know where data from textBox are saved. 我想知道textBox中的数据保存在哪里。

Example: Create new project -> put TextBox into MainPage.xaml. 示例:创建新项目->将TextBox放入MainPage.xaml。 -> run application and fill this textBox -> use suspend ->and when I back to app (resumed method) all data are still in textBox (without write any piece of code). ->运行应用程序并填充此文本框->使用暂停->当我回到应用程序(恢复的方法)时,所有数据仍在文本框中(无需编写任何代码)。

My question is where this data are stored, when they are saved and from where the application know what data i put into textbox. 我的问题是这些数据存储在哪里,何时保存以及应用程序从哪里知道我将哪些数据放入文本框中。

Your app is Suspended in Memory. 您的应用被挂在内存中。 There is no writing to disk, as the app has not been ClosedByUser or Terminated . 没有写入磁盘,因为该应用程序不是ClosedByUserTerminated

Check out this to understand App Lifecyle better. 查看此内容可更好地了解App Lifecyle。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 通用Windows平台(UWP)缺少属性的反射 - Reflection in universal windows platform (UWP) missing properties 通用Windows平台(UWP)条形码扫描仪应用程序 - Universal Windows Platform (UWP) barcode scanner application 如何在Delphi中检测通用Windows平台(UWP) - How to detect Universal Windows Platform (UWP) in Delphi UWP(通用Windows平台)上的套接字通信 - Socket Communication on UWP (Universal Windows Platform) UWP 中图像的橡皮擦功能(通用 Windows 平台) - Eraser functionality for an image in UWP(Universal Windows Platform) x:在UWP中绑定(通用Windows平台) - x:Bind in UWP (Universal Windows Platform) 通用Windows平台(UWP)中的加密/解密存在数据错误(循环冗余校验) - Encryption/Decryption in Universal Windows Platform (UWP) has data error (cyclic redundancy check) 支持两个主窗口的通用Windows平台(UWP)应用 - Universal Windows Platform (UWP) app supporting two main windows 通用Windows平台(UWP)将映像写入磁盘扇区 - Universal Windows Platform (UWP) write image to disk sectors 打印机扩展UI可以使用通用Windows平台(UWP)吗? - Can Printer Extension UI use the Universal Windows Platform (UWP)?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM