public static bool NactiNastaveni() { mw.tbPrikaz.Visibility = Visibility.Hidden; try { Directory.CreateDirectory(Window1.appdata); } catch { } try { using (StreamReader sr = new StreamReader(mw.prog_nastaveni)) { string vc = sr.ReadLine(); mw.vychozi_cesta = vc == "" ? Window1.profil : vc; mw.richTextBox1.FontFamily = new FontFamily(sr.ReadLine()); mw.richTextBox1.FontSize = Funkce.ynt(sr.ReadLine(), 14); mw.richTextBox1.FontWeight = sr.ReadLine() == "Bold" ? FontWeights.Bold : FontWeights.Normal; mw.richTextBox1.FontStyle = sr.ReadLine() == "Italic" ? FontStyles.Italic : FontStyles.Normal; mw.kodovani = Funkce.ynt(sr.ReadLine(), mw.kodovani); mw.historie = Funkce.ynt(sr.ReadLine(), 20); string[] bpoz = sr.ReadLine().Split(','); string[] bpis = sr.ReadLine().Split(','); mw.cesta_zapis = sr.ReadLine(); mw.menuZapis.IsChecked = sr.ReadLine() == "True" ? true : false; mw.menuPremazavat.IsChecked = sr.ReadLine() == "True" ? true : false; if (sr.ReadLine() == "False") { Funkce.ZobrazitPruzkumnik(false); } if (sr.ReadLine() == "False") { Funkce.ZobrazitSoubory(false); } mw.Width = Funkce.ynt(sr.ReadLine(), 500); mw.Height = Funkce.ynt(sr.ReadLine(), 500); if (sr.ReadLine() == "max") { mw.WindowState = WindowState.Maximized; } mw.richTextBox1.Foreground = new SolidColorBrush(Color.FromArgb( (byte)Funkce.ynt(bpis[0], 255), (byte)Funkce.ynt(bpis[1]), (byte)Funkce.ynt(bpis[2]), (byte)Funkce.ynt(bpis[3]))); mw.richTextBox1.Background = new SolidColorBrush(Color.FromArgb( (byte)Funkce.ynt(bpoz[0], 255), (byte)Funkce.ynt(bpoz[1], 255), (byte)Funkce.ynt(bpoz[2], 255), (byte)Funkce.ynt(bpoz[3], 255))); } Funkce.CD(mw.vychozi_cesta); } catch { return(false); } return(true); }
void mCesty_Click(object sender, RoutedEventArgs e) { Funkce.ZobrazitSoubory(true); lvSoubory.Visibility = Visibility.Hidden; tbVPolozky.Visibility = Visibility.Visible; tbVPolozky.Text = ""; foreach (string prog in seznam_programu) { tbVPolozky.Text += prog + "\r\n"; } tVSeznam.Content = "Uložit"; menuSoubory.IsChecked = true; Funkce.ZobrazitPruzkumnik(true); }
void mSL_Zobrazovat_S_Click(object sender, RoutedEventArgs e) { Funkce.ZobrazitSoubory(mSL_Zobrazovat_S.IsChecked); }
void m2Nezobrazovat_S_Click(object sender, RoutedEventArgs e) { Funkce.ZobrazitSoubory(false); }
void mSoubory_Click(object sender, RoutedEventArgs e) { Funkce.ZobrazitSoubory(menuSoubory.IsChecked); }