示例#1
0
 public Form1()
 {
     InitializeComponent();
     lstKeywords = ReadWriteToFile.ReadFileKeywords(fileName, filePath);
     SetWallpaper();
     CheckIfScheduled();
 }
示例#2
0
 private void btnSaveKeywords_Click(object sender, EventArgs e)
 {
     lstKeywords = KeywordAnalyzer.Analyze(txtBxKeywords.Text);
     //MessageBox.Show(lstKeywords[0]); - FÜR DEBUGGING
     ReadWriteToFile.WriteListToFile(lstKeywords, fileName, filePath);
 }