Пример #1
0
        private async void OnLoadFromDatabaseClick(object sender, EventArgs e)
        {
            fileName = SelectFileForm.StartForResult();
            if (!String.IsNullOrEmpty(fileName))
            {
                string result = await Global.Database.GetFileContentByName(fileName);

                textContainer.Text = result.Decompress();
            }
        }