示例#1
0
 public void SetSettings(int first, int second, MainWindow f)
 {
     m_min = first;
     m_max = second;
     m_form = f;
 }
示例#2
0
 public void SetSettings(int first, int second, string path, MainWindow f)
 {
     m_min = first;
     m_max = second;
     m_title = path;
     m_form = f;
 }
示例#3
0
 public Backend(MainWindow form)
 {
     m_form = form;
     // TODO - Replace this lib with SharpCompress
     SevenZipBase.SetLibraryPath(@"7z.dll");
 }