Exemplo n.º 1
0
		public HexEditView(OpenedFile file)
		{
			hexEditContainer = new HexEditContainer();
			hexEditContainer.hexEditControl.DocumentChanged += new EventHandler(DocumentChanged);
			
			this.Files.Add(file);
			
			file.ForceInitializeView(this);
		}
Exemplo n.º 2
0
        public HexEditView(OpenedFile file)
        {
            hexEditContainer = new HexEditContainer();
            hexEditContainer.hexEditControl.DocumentChanged += new EventHandler(DocumentChanged);

            this.Files.Add(file);

            file.ForceInitializeView(this);
        }
Exemplo n.º 3
0
		public HexEditView(OpenedFile file)
		{
			hexEditContainer = new HexEditContainer();
			hexEditContainer.hexEditControl.DocumentChanged += new EventHandler(DocumentChanged);
			
			this.Files.Add(file);
			
			file.ForceInitializeView(this);
			
			SD.AnalyticsMonitor.TrackFeature(typeof(HexEditView));
		}
Exemplo n.º 4
0
        public HexEditView(OpenedFile file)
        {
            hexEditContainer = new HexEditContainer();
            hexEditContainer.hexEditControl.DocumentChanged += new EventHandler(DocumentChanged);

            this.Files.Add(file);

            file.ForceInitializeView(this);

            AnalyticsMonitorService.TrackFeature(typeof(HexEditView));
        }
Exemplo n.º 5
0
        public HexEditView(OpenedFile file)
        {
            hexEditContainer = new HexEditContainer();
            hexEditContainer.hexEditControl.DocumentChanged            += DocumentChanged;
            hexEditContainer.hexEditControl.Selection.SelectionChanged += SelectionChanged;

            this.Files.Add(file);

            file.ForceInitializeView(this);

            SD.AnalyticsMonitor.TrackFeature(typeof(HexEditView));
        }