示例#1
0
        public TableBoolViewModel(LogicalReport report, TableBoolView view)
        {
            _view   = view;
            _report = report;

            CreateGrid();
        }
示例#2
0
 public TableBoolView(LogicalReport report)
 {
     InitializeComponent();
     DataContext = new TableBoolViewModel(report, this);
 }