How to know in that moment a tablestyles joins to my inherited DataGrid?

  • Thread starter Carlos Durán Urenda
  • Start date
C

Carlos Durán Urenda

Hi

I need to know in that moment a tablestyles joins to my inherited DataGrid
control

Tnks
 
C

Chris, Master of All Things Insignificant

From: "Chris, Master of All Things Insignificant" <chris@No_Spam_Please.com>
Subject: Re: sorting multiple arrays
Date: Friday, February 18, 2005 10:09 AM

AFIAK, Use these two items to get the event that fires when a table is
added/removed

AddHandler DataGrid1.TableStyles.CollectionChanged, AddressOf
TableStyles_CollectionChanged

Public Sub TableStyles_CollectionChanged(ByVal sender As Object, ByVal e As
System.ComponentModel.CollectionChangeEventArgs)

End Sub

Chris
 
C

Carlos Durán Urenda

Tnks Chris
It Works Fine

CD

Chris said:
From: "Chris, Master of All Things Insignificant"
<chris@No_Spam_Please.com>
Subject: Re: sorting multiple arrays
Date: Friday, February 18, 2005 10:09 AM

AFIAK, Use these two items to get the event that fires when a table is
added/removed

AddHandler DataGrid1.TableStyles.CollectionChanged, AddressOf
TableStyles_CollectionChanged

Public Sub TableStyles_CollectionChanged(ByVal sender As Object, ByVal e
As System.ComponentModel.CollectionChangeEventArgs)

End Sub

Chris
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top