コード例 #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);
 }