Exemple #1
0
        public void DoProgress(string str, Addon addon,Form f)
        {
            m_vList = new List<KeyValuePair<string, Addon>>();
             
            m_vList.Add(new KeyValuePair<string, Addon>(str, addon));

            m_Progress = new AddonProgress(richTextBox1);
            this.Show(f);

        }
Exemple #2
0
 public void DoProgress(List<KeyValuePair<string, Addon>> vList, Form f)
 {
     m_vList = vList;
     m_Progress = new AddonProgress(richTextBox1);
     this.Show(f);
 }