将Windows窗体属性绑定到C#中的ApplicationSettings的最佳方式?

前端之家收集整理的这篇文章主要介绍了将Windows窗体属性绑定到C#中的ApplicationSettings的最佳方式?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在需要严重重新分解的桌面应用程序中,我有几个代码块,如下所示:
private void LoadSettings()
{
    WindowState = Properties.Settings.Default.WindowState;
    Location = Properties.Settings.Default.WindowLocation;
    ...
}

private void SaveSettings()
{
    Properties.Settings.Default.WindowState = WindowState;
    Properties.Settings.Default.WindowLocation = Location;
    ...
}

什么是替代这个的最佳方法?项目施加的限制:

> Visual Studio 2005
> C#/ .NET 2.0
> Windows窗体

更新

感谢Tundey,看起来像去的路.对于后代,我还发现了两个有用的教程:“Windows Forms User Settings in C#”“Exploring Secrets of Persistent Application Settings”.

我曾问过关于使用这种技术来绑定表单Size here的后续问题.我将它们分开来帮助搜索类似问题的人们.

如果您在设计器中打开Windows窗体,请查看属性框.第一个项目应该是“(ApplicationSetting)”.那就是“(PropertyBinding)”.那就是你会找到完全符合你想要的选择.
原文链接:https://www.f2er.com/windows/371144.html

猜你在找的Windows相关文章