public JpkEntry(JpkFile parentFile)
     : this()
 {
     this.ParentFile = parentFile;
 }
 public JpkEntry(JpkFile parentFile)
     : this()
 {
     this.ParentFile = parentFile;
 }
        private void ReadJpk()
        {
            file = new JpkFile();
            file.Read(File.Open(fileName, FileMode.Open, FileAccess.Read, FileShare.Read));
            this.listView.SetObjects(file.Entries);

            this.Text = EgoJpkArchiver.Properties.Resources.AppTitleShort + " " +
                EgoJpkArchiver.Properties.Resources.AppVersionShort + " - " +
                Path.GetFileName(fileName);
        }
Beispiel #4
0
 public JpkEntry(JpkFile parentFile)
 {
     this.ParentFile = parentFile;
     this.Name       = string.Empty;
     this.Data       = Array.Empty <byte>();
 }