我有一个WPF GUI,允许用户打开选项菜单。选项菜单在新窗口中打开,并填充复选框。当用户按下“确定”按钮时,窗口关闭。但是,它不记得在打开备份时检查了哪些复选框。如何确保程序能够记住检查了哪些盒子以及哪些盒子没有?
只需指定:我只需要记住在程序运行期间检查了哪些框。整个程序退出后,程序无需记住。
谢谢!
这是我的主窗口Window1.XAML.CS下的代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace CartToolsPrototype1
{
/// <summary>
/// Interaction logic for Window1.xaml
/// </summary>
public partial class Window1 : Window
{
public Window1()
{
InitializeComponent();
}
//Exit
private void Exit_Click(object sender, RoutedEventArgs e)
{
System.Environment.Exit(0);
}
//Options
private void Options_Click(object sender, RoutedEventArgs e)
{
var newWindow = new Options();
newWindow.Show();
}
}
}
这是我的代码Window Options.XAML.CS下的代码。这是基于第一个答案。我已经阅读了您发布的link,这是有道理的。我在我的设置文件中有条件,当用户选中我的复选框时,我会更改这些条件。然后我有一个条件,确定是否根据设置文件检查框,但它似乎没有反映任何变化......
public partial class Options_Window : Window
{
public Options_Window()
{
InitializeComponent();
//Checkbox1
if (Properties.Settings.Default.OptionsBox1 == true)
checkBox1.IsChecked = true;
else
checkBox1.IsChecked = false;
}
//Close Window
private void button1_Click(object sender, RoutedEventArgs e)
{
this.Close();
}
//Ask before downloading... - CHECKED
private void checkBox1_Checked(object sender, RoutedEventArgs e)
{
Properties.Settings.Default.OptionsBox1 = true;
}
//Ask before downloading... - UNCHECKED
private void checkBox1_Unchecked(object sender, RoutedEventArgs e)
{
Properties.Settings.Default.OptionsBox1 = false;
}
答案 0 :(得分:6)
您可以使用Settings在不同的Windows /控件之间共享数据,甚至在关闭/启动应用程序时保存应用程序数据。
.NET Framework允许您创建和访问值 在应用程序执行会话之间持久存这些值是 叫做设置。设置可以表示用户偏好或有价值 应用程序需要使用的信息。例如,你可能 创建一系列存储用户颜色偏好的设置 申请方案。或者您可以存储连接字符串 指定应用程序使用的数据库。设置允许 您要同时保留对应用程序至关重要的信息 在代码之外,并创建存储首选项的配置文件 个人用户。
您可以在任何窗口中保存设置:
Properties.Settings.Default.mySetting = true;
Properties.Settings.Default.Save();
您可以在任何窗口中阅读/使用设置:
this.Property = Properties.Settings.Default.mySetting;
答案 1 :(得分:1)
首先,我们需要一个存储属性的设置对象。请记住正确实施INotifyPropertyChanged
class MySettings : INotifyPropertyChanged
{
public bool IsSettingSet {get;set;}
}
然后在我们的设置窗口中,只需使用绑定将视图控件绑定到Settings对象。
<Window
x:Class="SettingsWindow"
...>
<CheckBox IsChecked="{Binding IsSettingSet}"/>
</Window>
最后在实际打开窗口的地方,您需要将设置对象分配给设置窗口的DataContext。
class MainWindow
{
public MainWindow()
{
InitializeComponent();
}
void OpenSettingsWindow()
{
var dlg = new SettingsWindow();
dlg.DataContext = mGlobalSettings;
dlg.ShowDialog();
}
MySettings mGlobalSettings = new MySettings();
}
现在每次打开窗口时,您的设置都会像上次一样。只要你不关闭应用程序。
答案 2 :(得分:0)
如果它只是在运行时,那么它很容易。您可以使用静态类:
public static class MyState
{
public static bool IsChecked1 { get; set; }
}
或类的单例实例:
public class MyState
{
private static MyState _instance = new MyState();
public static MyState Instance
{
get { return _instance; }
}
private MyState() {}
public bool IsChecked1 { get; set; }
}
当窗口加载时,从MyClass的属性中获取状态。当窗口关闭时,设置MyClass的属性。
在Options.xaml.cs中:
private void Window_Loaded(object sender, RoutedEventArgs e)
{
CheckBox1.IsChecked = MyState.IsChecked1;
}
private void Window_Closed(object sender, EventArgs e)
{
MyState.IsChecked1 = CheckBox1.IsChecked;
}