$99 VS $1000+. UI Control for ASP.NET AJAX(contains chart and gridview).
Data Grid WinForms Control
Create data gird view in C# with modern user interface for your Windows Forms applications
Home > WinForms UI Controls > User Manual > Browse Column in C#

C# Grid Browse Column

The Kettic Data Grid Control uses the Data Grid Column objects to represent columns. The Kettic Data Grid Column is the base class of all types of grid columns, including the Kettic grid browse columns. The Grid Browse Column is a descendant of Grid Column class and descends all features of the parent class. The Grid Column properties provide custom appearance and C# events for building entire browse column in Windows Forms applications.

Generate Grid Browser Column in C#

The Kettic Data Grid Control is able to edit the file paths of the grid browser column by using the property, OpenFileDialog. Moreover, the Grid Browser Column uses the Grid Browser Editor as the default editor of the column in C# gird column. To generate the grid browser column in C# projects and add column to Data Grid Control, we can use the C# code snippet below.

GridBrowseColumn column = new GridBrowseColumn("Browse column");
this.ketticGridView1.Columns.Add(column);

this.ketticGridView1.Rows.Add(@"C:\Products\Sting\office desks");
this.ketticGridView1.Rows.Add(@"C:\Products\Sting\office chairs");
this.ketticGridView1.Rows.Add(@"C:\ Products\Sting\Coffee tables");
this.ketticGridView1.Rows.Add(@"C:\Products\Sting\Computers");
this.ketticGridView1.Rows.Add(@"C:\Products\Sheryl Crow\Screens");
UI Controlsfor Windows Forms
.NET WinForms UI Overview.NET WinForms UI Features.NET WinForms UI GuideC# WinForms UI DesignVB.NET WinForms UI Design
WinForms UI Controls