예제 #1
0
 public Control MakeStatisticsPanel()
 {
     _statisticsSubpanel = new VmStatisticsSubpanel();
     return _statisticsSubpanel;
 }
예제 #2
0
        public Control MakeDisplayArea()
        {
            JwVerticalDistributedLayout v = new JwVerticalDistributedLayout();
            v.ControlWidth.BeFill();

            v.Add( MakeScanBoxArea() );

            _statisticsSubpanel = new VmStatisticsSubpanel(true);
            v.Add( _statisticsSubpanel );

            _nestStatisticsSubpanel = new VmNestStatisticsSubpanel(true);
            v.Add( _nestStatisticsSubpanel );

            return v;
        }