コード例 #1
0
 protected LoadedCollectorsForm()
     : base()
 {
     // do not use! for designer only!
     // Init panel before ApplyResources
     Panel = new GraphPanel();
     InitializeComponent();
 }
コード例 #2
0
        public LoadedCollectorsForm(Graph graph, string fileName, bool hint)
            : base(graph, hint)
        {
            // Init panel before ApplyResources
            Panel = new GraphPanel();
            InitializeComponent();
            // TODO: different for precise & scan
            Panel.Init(graph);

            _fileName = fileName;
            Text = DisplayedFileName;
        }