Ejemplo n.º 1
0
        private void BuildWebCooperatorPage()
        {
            // Get a refreshed list of the cooperators for the cooperator table...
            RefreshWebCooperatorList();

            // Now bind it to the DGV on the first tabpage...
            if (_webCooperator != null)
            {
                // Bind the DGV to the binding source...
                ux_datagridviewWebCooperator.DataSource = _webCooperatorBindingSource;
                // Build the DGV using the new table and bind it to the DGV's binding source (this happens in the Build method)...
                _sharedUtils.BuildReadOnlyDataGridView(ux_datagridviewWebCooperator, _webCooperator);
            }
        }