Пример #1
0
        public static void Main()
        {
            string file = @"D:\Synos\C_B102.grf";

            byte[]  data  = File.ReadAllBytes(file);
            CFBFile cFile = new CFBFile(data);

            CFBTreeWindow tw = new CFBTreeWindow(cFile);

            tw.ShowDialog();

            Console.ReadLine();
        }
 public CFBTreeWindow(CFBFile file)
 {
     InitializeComponent();
     this.Load(file.RootElement);
 }