Answer the question
In order to leave comments, you need to log in
How to call a window for a user control in the designer, similar to add column for Datagridview?
There is a user control. for the most part, it delegates the behavior of the DataGridView. The Columns property sticks out. It all looks like this
public partial class ControlList : UserControl
{
[
Editor( typeof(System.ComponentModel.Design.DesignerCollection), typeof(System.Drawing.Design.UITypeEditor)),
DesignerSerializationVisibility(DesignerSerializationVisibility.Content),
MergableProperty(false)
]
public DataGridViewColumnCollection Columns { get { return datagGridView.Columns; } }
}
this.dataGridViewColumnId = new System.Windows.Forms.DataGridViewColumn();
Answer the question
In order to leave comments, you need to log in
SELECT * FROM tbl_scan_instance WHERE guid IN
(SELECT scan_guid FROM tbl_scan_investigation_relationships WHERE investigation_id = xxx);
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question