Guest User

Untitled

a guest
Feb 19th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Collections.ObjectModel;
  4.  
  5. namespace MalestromCommon
  6. {
  7. public class LauncherSettings
  8. {
  9. public ObservableCollection<string> ClassNames = new ObservableCollection<string>();
  10. public ObservableCollection<string> ProcessNames = new ObservableCollection<string>();
  11. public ObservableCollection<string> FileDistributionMirrors = new ObservableCollection<string>();
  12. public ObservableCollection<GameFile> GameFiles = new ObservableCollection<GameFile>();
  13. public bool LauncherOnline { get; set; }
  14. public string Message { get; set; }
  15. }
  16. }
  17.  
  18.  
  19.  
  20. In my main...
  21.  
  22. private LauncherSettings _launcherSettings = new LauncherSettings();
  23.  
  24.  
  25. listUrls.DataSource = _launcherSettings.FileDistributionMirrors;
Add Comment
Please, Sign In to add comment