public InjectionOptionsForm(ref DataStore Storage)
        {
            InitializeComponent();

            _Storage = Storage;
            LoadValuesFromStorage();
            string[] UAChoices = { "Absinthe", "Firefox", "Galeon", "GoogleBot", "Internet Explorer", "Konqueror", "Links", "Mozilla", "Netscape", "Opera", "Safari", "Other" };

            cboUserAgent.Items.AddRange(UAChoices);
        }
示例#2
0
 public Absinthe()
 {
     InitializeComponent();
     _AbsintheState = new DataStore();
     _AbsintheState.UserStatus += new UserEvents.UserStatusEventHandler(UserStatus);
 }