Advertisement
Guest User

Untitled

a guest
May 27th, 2017
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. void ReadConfig()
  2. {
  3. TextBlock block = TextBlockUtils.LoadFromRealFile(Application.StartupPath + @"\" + configFile);
  4. if (block == null) return;
  5.  
  6. TextBlock formBlock = block.FindChild("form");
  7. if (formBlock != null)
  8. {
  9. this.Width = int.Parse(formBlock.GetAttribute("width"));
  10. this.Height = int.Parse(formBlock.GetAttribute("height"));
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement