• 【万里征程——Windows App开发】如何在多个页面间读取/保存文件【草稿】


    首先在第二个页面中

    static public  StorageFolder  folder = Windows.Storage.ApplicationData.Current.LocalFolder;
    StorageFile file = await folder.CreateFileAsync("New Document.txt", CreationCollisionOption.ReplaceExisting);
    
    await FileIO.WriteTextAsync(file, "Write text to file4.");
    if (this.Frame != null)
    {
        this.Frame.Navigate(typeof(MainPage));
    }

    在主页面中:

     private async void LoadSettings()
            {
                StorageFile file = await AddProject.folder.GetFileAsync("New Document.txt");
                tBlockProjectName.Text = await FileIO.ReadTextAsync(file);
            }

    在主页面的MainPage中:

       LoadSettings();

    在主页面的OnNavigationTo中:

      protected override void OnNavigatedTo(NavigationEventArgs e)
            {
                LoadSettings()
                // TODO: Prepare page for display here.
    
                // TODO: If your application contains multiple pages, ensure that you are
                // handling the hardware Back button by registering for the
                // Windows.Phone.UI.Input.HardwareButtons.BackPressed event.
                // If you are using the NavigationHelper provided by some templates,
                // this event is handled for you.
            }

    版权声明:本文为 NoMasp柯于旺 原创文章,如需转载请联系本人。

  • 相关阅读:
    说文解字 —— 拆字
    4K 对齐与固态硬盘检测工具
    硬盘分区(主分区、扩展分区、逻辑分区)
    python+caffe训练自己的图片数据流程
    亲和数(220/284)
    浅谈多进程多线程的选择
    Linux下的多线程编程
    LINUX-进程的概念
    Linux终端那件事儿
    Linux的终端类型
  • 原文地址:https://www.cnblogs.com/NoMasp/p/4785997.html
Copyright © 2020-2023  润新知