using Remontor.Words; using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using static System.Windows.Forms.VisualStyles.VisualStyleElement; namespace Remontor.Setting { partial class SettingWordsControl : UserControl { public delegate void DUpdateTree(); public DUpdateTree UpdateTree; public SettingWordsControl() { InitializeComponent(); UpdateSetting(); } public void UpdateSetting() { if (SGlobalSetting.settingWords != null) { path.Text = SGlobalSetting.settingWords.PathBase; } } private void bt_wordsBilder_Click(object sender, EventArgs e) { BilderWords bilderWords = new BilderWords(); DialogResult result = bilderWords.ShowDialog(); if (result == DialogResult.OK) { UpdateTree(); } } private void bt_path_open_Click(object sender, EventArgs e) { openFileDialog1.ShowDialog(); if(openFileDialog1.FileName != null) { path.Text = openFileDialog1.FileName; } } public bool edited() { return (SGlobalSetting.settingWords.PathBase != path.Text); } public void Save() { if(SGlobalSetting.settingWords.PathBase != path.Text) { SGlobalSetting.settingWords.PathBase = path.Text; } } } }