How to keep the last used folder and put it in a textbox when a form opens?(表单打开时如何保留最后使用的文件夹并将其放入文本框中?)
问题描述
加载 C# 表单时,我希望在默认登录的用户的文本框中有一个文件夹.
When the C# form is loaded, I want to have a folder in a textbox belonging to the user who is logged on by default.
我有一个输入和输出文件的文本框和按钮,当打开表单时,我希望用户看到他保存上一个输出文件的默认文件夹.
I have textbox and buttons for an input and output file, and when the form is opened I want the user to see the default folder where he saved the previous output file.
我该怎么做?
推荐答案
双击解决方案资源管理器中项目Properties部分的Settings.settings.
Double click on the Settings.settings in the Properties section of the project in the solution explorer.
它会打开包含网格视图的参数向导.
It opens the parameters wizard containing a grid view.
在底部添加一个名为LastPath的参数并将其设置为string类型并选择一个可以为空的默认值.
At bottom, add a parameter named for example LastPath and set it to string type and choose a default value that can be empty.
如果您选择将其设置为空(推荐),请在静态 Program 类中添加这些变量:
If you choose to set it empty (recommended), add these variables in the static Program class:
static string UserDataFolderPath
= Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData)
+ Path.DirectorySeparatorChar
+ AssemblyCompany
+ Path.DirectorySeparatorChar
+ AssemblyTitle
+ Path.DirectorySeparatorChar;
static string UserDocumentsFolderPath
= Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments)
+ Path.DirectorySeparatorChar
+ AssemblyCompany
+ Path.DirectorySeparatorChar
+ AssemblyTitle
+ Path.DirectorySeparatorChar;
还有这些方法:
static public string AssemblyCompany
{
get
{
object[] attributes = Assembly.GetExecutingAssembly()
.GetCustomAttributes(typeof(AssemblyCompanyAttribute), false);
if ( attributes.Length == 0 )
{
return "";
}
return ( (AssemblyCompanyAttribute)attributes[0] ).Company;
}
}
static public string AssemblyTitle
{
get
{
object[] attributes = Assembly.GetExecutingAssembly()
.GetCustomAttributes(typeof(AssemblyTitleAttribute), false);
if ( attributes.Length > 0 )
{
AssemblyTitleAttribute titleAttribute = (AssemblyTitleAttribute)attributes[0];
if ( titleAttribute.Title != "" )
{
return titleAttribute.Title;
}
}
return Path.GetFileNameWithoutExtension(Assembly.GetExecutingAssembly().CodeBase);
}
}
在Main方法的开头添加:
Directory.CreateDirectory(UserDataFolderPath);
Directory.CreateDirectory(UserDocumentsFolderPath);
if ( Properties.Settings.Default.LastPath == "" )
{
Properties.Settings.Default.LastPath = UserDataFolderPath;
Properties.Settings.Default.Save();
}
现在要获取它,您可以在表单的 FormLoad 事件中编写:
Now to get it you can write in the FormLoad event of your form:
textBox1.Text = Properties.Settings.Default.LastPath;
放入FormClosed事件:
Properties.Settings.Default.LastPath = textBox1.Text;
Properties.Settings.Default.Save();
你的 Program.cs 应该是什么:
using System;
using System.IO;
using System.Reflection;
using System.Windows.Forms;
namespace WindowsFormsAppTest
{
static class Program
{
[STAThread]
static void Main()
{
Directory.CreateDirectory(UserDataFolderPath);
Directory.CreateDirectory(UserDocumentsFolderPath);
if ( Properties.Settings.Default.LastPath == "" )
{
Properties.Settings.Default.LastPath = UserDataFolderPath;
Properties.Settings.Default.Save();
}
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new FormTest());
}
static string UserDataFolderPath
= Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData)
+ Path.DirectorySeparatorChar
+ AssemblyCompany
+ Path.DirectorySeparatorChar
+ AssemblyTitle
+ Path.DirectorySeparatorChar;
static string UserDocumentsFolderPath
= Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments)
+ Path.DirectorySeparatorChar
+ AssemblyCompany
+ Path.DirectorySeparatorChar
+ AssemblyTitle
+ Path.DirectorySeparatorChar;
static public string AssemblyCompany
{
get
{
object[] attributes = Assembly.GetExecutingAssembly()
.GetCustomAttributes(typeof(AssemblyCompanyAttribute), false);
if ( attributes.Length == 0 )
{
return "";
}
return ( (AssemblyCompanyAttribute)attributes[0] ).Company;
}
}
static public string AssemblyTitle
{
get
{
object[] attributes = Assembly.GetExecutingAssembly()
.GetCustomAttributes(typeof(AssemblyTitleAttribute), false);
if ( attributes.Length > 0 )
{
AssemblyTitleAttribute titleAttribute = (AssemblyTitleAttribute)attributes[0];
if ( titleAttribute.Title != "" )
{
return titleAttribute.Title;
}
}
return Path.GetFileNameWithoutExtension(Assembly.GetExecutingAssembly().CodeBase);
}
}
}
}
还有你的Form.cs:
using System;
using System.Windows.Forms;
namespace WindowsFormsAppTest
{
public partial class FormTest : Form
{
public FormTest()
{
InitializeComponent();
}
private void FormTest_Load(object sender, EventArgs e)
{
textBox1.Text = Properties.Settings.Default.LastPath;
}
private void FormTest_FormClosed(object sender, FormClosedEventArgs e)
{
Properties.Settings.Default.LastPath = textBox1.Text;
Properties.Settings.Default.Save();
}
}
}
这篇关于表单打开时如何保留最后使用的文件夹并将其放入文本框中?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:表单打开时如何保留最后使用的文件夹并将其放入文本框中?
基础教程推荐
- 获取C#保存对话框的文件路径 2022-01-01
- Mono https webrequest 失败并显示“身份验证或解密失败" 2022-01-01
- 更新 Visual Studio 中的 DataSet 结构以匹配新的 SQL 数据库结构 2022-01-01
- 重新排序 WPF TabControl 中的选项卡 2022-01-01
- 在 VB6 或经典 ASP 中使用 .NET 2022-01-01
- 如果条件可以为空 2022-01-01
- 将数据集转换为列表 2022-01-01
- C# 9 新特性——record的相关总结 2023-04-03
- 从 C# 控制相机设备 2022-01-01
- SonarQube C# 分析失败“不是指针的有效行偏移" 2022-01-01
