1234567891011121314151617181920212223242526 |
- using Tofly.CoreUI.Win.Control;
- using System.Data;
- namespace Tofly.SearchUI.Win
- {
- public partial class RasterDataGrid : UserControlClass
- {
- public RasterDataGrid()
- {
- InitializeComponent();
- }
- public override object DataSource
- {
- get { return this.gridControl1.DataSource; }
- set
- {
- if (value is DataTable)
- {
- this.gridControl1.DataSource = value;
- }
- }
- }
- }
- }
|